Searched defs:hashval (Results 1 - 9 of 9) sorted by relevance

/external/zopfli/src/zopfli/
H A Dhash.h32 int* hashval; /* Index to hash value at this index. */ member in struct:ZopfliHash
/external/e2fsprogs/debugfs/
H A Dhtree.c175 unsigned int hashval, block; local
177 hashval = ext2fs_le32_to_cpu(ent[i].hash);
180 i ? hashval : 0, block);
/external/kmod/shared/
H A Dhash.c149 unsigned int hashval = hash_superfast(key, keylen); local
150 unsigned int pos = hashval & (hash->n_buckets - 1);
192 unsigned int hashval = hash_superfast(key, keylen); local
193 unsigned int pos = hashval & (hash->n_buckets - 1);
237 unsigned int hashval = hash_superfast(key, keylen); local
238 unsigned int pos = hashval & (hash->n_buckets - 1);
255 unsigned int hashval = hash_superfast(key, keylen); local
256 unsigned int pos = hashval & (hash->n_buckets - 1);
/external/opencv/cxcore/src/
H A Dcxarray.cpp799 unsigned hashval = 0; local
810 hashval = hashval*ICV_SPARSE_MAT_HASH_MULTIPLIER + t;
815 hashval = *precalc_hashval;
818 tabidx = hashval & (mat->hashsize - 1);
819 hashval &= INT_MAX;
824 if( node->hashval == hashval )
857 int newidx = node->hashval & (newsize - 1);
866 tabidx = hashval
896 unsigned hashval = 0; local
[all...]
H A Dcxpersistence.cpp429 unsigned hashval = 0; local
439 hashval = hashval*CV_HASHVAL_SCALE + (unsigned char)str[i];
443 hashval = hashval*CV_HASHVAL_SCALE + (unsigned char)str[i];
445 hashval &= INT_MAX;
448 i = (int)(hashval & (tab_size - 1));
450 i = (int)(hashval % tab_size);
454 if( node->hashval == hashval
566 unsigned hashval = 0; local
[all...]
/external/elfutils/src/
H A Delflint.c3133 GElf_Word hashval = elf_hash (verstr); local
3134 if (hashval != aux->vna_hash)
3138 cnt, (int) hashval, (int) aux->vna_hash);
3284 GElf_Word hashval = elf_hash (name); local
3285 if (def->vd_hash != hashval)
3288 idx, section_name (ebl, idx), cnt, (int) hashval,
/external/syslinux/core/fs/xfs/
H A Dxfs.h591 uint32_t hashval; /* hash value of name */ member in struct:xfs_dir2_leaf_entry
612 uint32_t hashval; /* hash value for this descendant */ member in struct:xfs_da_intnode::xfs_da_node_entry
/external/opencv/cxcore/include/
H A Dcxtypes.h773 unsigned hashval; member in struct:CvSparseNode
1703 unsigned hashval; member in struct:CvStringHashNode
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp1415 static void updateHashChain(Hash* hash, size_t wpos, int hashval) argument
1417 hash->val[wpos] = hashval;
1418 if(hash->head[hashval] != -1) hash->chain[wpos] = hash->head[hashval];
1419 hash->head[hashval] = wpos;
1447 unsigned hashval; local
1462 hashval = getHash(in, insize, pos);
1463 updateHashChain(hash, wpos, hashval);
1465 if(usezeros && hashval == 0)
1480 prevpos = hash->head[hashval];
[all...]

Completed in 703 milliseconds