OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashval
(Results
1 - 12
of
12
) 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
;
/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];
var.c
799
unsigned int
hashval
;
local
804
hashval
= 0;
806
hashval
= 2 *
hashval
+ (unsigned char)*p++;
811
vpp = &vartab[
hashval
% VTABSIZE];
/external/oprofile/daemon/
opd_sfile.h
39
unsigned long
hashval
;
member in struct:sfile
/external/smack/src/org/xbill/DNS/
EDNSOption.java
207
int
hashval
= 0;
local
209
hashval
+= ((
hashval
<< 3) + (array[i] & 0xFF));
210
return
hashval
;
/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/
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
...]
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
...]
/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/elfutils/src/
elflint.c
2885
GElf_Word
hashval
= elf_hash (verstr);
local
3021
GElf_Word
hashval
= elf_hash (name);
local
[
all
...]
/external/opencv/cxcore/include/
cxtypes.h
773
unsigned
hashval
;
member in struct:CvSparseNode
1703
unsigned
hashval
;
member in struct:CvStringHashNode
[
all
...]
Completed in 1078 milliseconds