Searched refs:hashArgs (Results 1 - 4 of 4) sorted by relevance

/external/srec/shared/src/
H A DHashMapImpl.c29 static ESR_ReturnCode HashMapCreate_Internal(PHashTableArgs *hashArgs, argument
41 if ((rc = PHashTableCreate(hashArgs, MTAG, &impl->table)) != ESR_SUCCESS)
71 PHashTableArgs hashArgs; local
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/portable/include/
H A Dphashtable.h124 * @param hashArgs Specifies the arguments controlling the hashtable. If
137 * @return ESR_INVALID_ARGUMENT if hashArgs, or hashTable is null or
138 * hashArgs->maxLoadFactor <= 0; ESR_OUT_OF_MEMORY if system is out of memory
140 PORTABLE_API ESR_ReturnCode PHashTableCreate(PHashTableArgs *hashArgs,
/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c146 PHashTableArgs hashArgs; local
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);
/external/srec/srec/crec/
H A Dsrec_context.c335 PHashTableArgs hashArgs; local
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));
2856 PHashTableArgs hashArgs; local
2857 hashArgs
[all...]

Completed in 112 milliseconds