OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hashArgs
(Results
1 - 3
of
3
) sorted by null
/external/srec/shared/src/
HashMapImpl.c
29
static ESR_ReturnCode HashMapCreate_Internal(PHashTableArgs *
hashArgs
,
41
if ((rc = PHashTableCreate(
hashArgs
, MTAG, &impl->table)) != ESR_SUCCESS)
71
PHashTableArgs
hashArgs
;
72
hashArgs
.capacity = nbBins;
73
hashArgs
.maxLoadFactor = PHASH_TABLE_DEFAULT_MAX_LOAD_FACTOR;
74
hashArgs
.hashFunction = PHASH_TABLE_DEFAULT_HASH_FUNCTION;
75
hashArgs
.compFunction = PHASH_TABLE_DEFAULT_COMP_FUNCTION;
76
return HashMapCreate_Internal(&
hashArgs
, self);
/external/srec/seti/sltsEngine/src/
run_seq_lts.c
146
PHashTableArgs
hashArgs
;
148
hashArgs
.capacity = 63;
149
hashArgs
.compFunction = HashCmpWord; // PHASH_TABLE_DEFAULT_COMP_FUNCTION;
150
hashArgs
.hashFunction = HashGetCode; // PHASH_TABLE_DEFAULT_HASH_FUNCTION;
151
hashArgs
.maxLoadFactor = PHASH_TABLE_DEFAULT_MAX_LOAD_FACTOR;
152
rc = PHashTableCreate( &
hashArgs
, hashName, &table);
[
all
...]
/external/srec/srec/crec/
srec_context.c
335
PHashTableArgs
hashArgs
;
352
hashArgs
.capacity = num_words + num_words_to_add + 10;
353
if(
hashArgs
.capacity%2==0)
hashArgs
.capacity += 1;
354
hashArgs
.compFunction = HashCmpWord; // PHASH_TABLE_DEFAULT_COMP_FUNCTION;
355
hashArgs
.hashFunction = HashGetCode; // PHASH_TABLE_DEFAULT_HASH_FUNCTION;
356
hashArgs
.maxLoadFactor = PHASH_TABLE_DEFAULT_MAX_LOAD_FACTOR;
357
CHKLOG(rc, PHashTableCreate(&
hashArgs
, L("srec.graph.wordmap.wordIDForWord.wordmap_create()"), &Interface->wordIDForWord));
[
all
...]
Completed in 341 milliseconds