HomeSort by relevance Sort by last modified time
    Searched refs:hashval (Results 1 - 19 of 19) sorted by null

  /external/srec/srec/crec/
astar_pphash.c 78 unsigned int hashval; local
80 hashval = parp->token_index;
82 hashval = 0;
83 hashval = (hashval << 10) + parp->word;
87 hashval = hashval * 64 + parp->word + hashval % 65536;
89 return hashval;
  /external/elfutils/lib/
dynamicsizehash.c 76 if (htab->table[idx].hashval != 0)
80 if (htab->table[idx].hashval == hval
95 if (htab->table[idx].hashval == hval
99 while (htab->table[idx].hashval);
109 if (htab->table[idx].hashval == 0)
127 htab->table[idx].hashval = hval;
168 insert_entry_2 (htab, first->hashval,
169 lookup (htab, first->hashval, first->data),
178 insert_entry_2 (htab, runp->hashval,
179 lookup (htab, runp->hashval, runp->data), runp->data)
    [all...]
dynamicsizehash.h 81 unsigned long int hashval; \
  /external/webkit/Tools/android/flex-2.5.4a/
sym.c 160 register int hashval; local
163 hashval = 0;
168 hashval = (hashval << 1) + (unsigned char) str[locstr++];
169 hashval %= hash_size;
172 return hashval;
dfa.c 244 * hashval is the hash value for the dfa corresponding to the state set.
251 int numstates = *ns_addr, nacc, hashval, transsym, nfaccnum; local
291 hashval += state; \
309 nacc = stkend = hashval = 0;
322 hashval += ns;
360 *hv_addr = hashval;
398 int sym, hashval, numstates, dsize; local
567 nset = epsclosure( nset, &numstates, accset, &nacc, &hashval );
569 if ( snstods( nset, numstates, accset, nacc, hashval, &ds ) )
622 accset, &nacc, &hashval );
    [all...]
  /external/oprofile/daemon/
opd_sfile.h 39 unsigned long hashval; member in struct:sfile
opd_sfile.c 171 sf->hashval = hash;
320 hash = last->hashval & (CG_HASH_SIZE - 1);
opd_ibs.c 780 hash = last->hashval & (CG_HASH_SIZE - 1);
  /system/core/sh/
alias.c 267 unsigned int hashval; local
269 hashval = *p << 4;
271 hashval+= *p++;
272 return &atab[hashval % ATABSIZE];
exec.c 819 int hashval; local
825 hashval = *p << 4;
827 hashval += *p++;
828 hashval &= 0x7FFF;
829 pp = &cmdtable[hashval % CMDTABLESIZE];
  /ndk/sources/host-tools/nawk-20071023/
tran.c 240 unsigned hashval; local
242 for (hashval = 0; *s != '\0'; s++)
243 hashval = (*s + 31 * hashval);
244 return hashval % n;
  /external/opencv/cxcore/src/
cxpersistence.cpp 429 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...]
cxarray.cpp 799 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 & (newsize - 1)
896 unsigned hashval = 0; local
    [all...]
cxcopy.cpp 329 int tabidx = node->hashval & (dst1->hashsize - 1);
    [all...]
  /external/grub/stage2/
xfs.h 299 xfs_dahash_t hashval; /* hash value for this descendant */ member in struct:xfs_da_intnode::xfs_da_node_entry
  /external/opencv/cv/src/
cvhistogram.cpp 531 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 0, 0, &node1->hashval );
548 if( !cvPtrND( mat1, CV_NODE_IDX(mat2,node2), 0, 0, &node2->hashval ))
564 0, 0, &node1->hashval );
594 0, 0, &node1->hashval );
615 0, 0, &node1->hashval );
    [all...]
  /external/kernel-headers/original/linux/
fs.h     [all...]
  /external/opencv/cxcore/include/
cxtypes.h 773 unsigned hashval; member in struct:CvSparseNode
1703 unsigned hashval; member in struct:CvStringHashNode
    [all...]
  /external/elfutils/src/
elflint.c 2885 GElf_Word hashval = elf_hash (verstr); local
3021 GElf_Word hashval = elf_hash (name); local
    [all...]

Completed in 388 milliseconds