HomeSort by relevance Sort by last modified time
    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 334 PHashTableArgs hashArgs;
351 hashArgs.capacity = num_words + num_words_to_add + 10;
352 if(hashArgs.capacity%2==0) hashArgs.capacity += 1;
353 hashArgs.compFunction = HashCmpWord; // PHASH_TABLE_DEFAULT_COMP_FUNCTION;
354 hashArgs.hashFunction = HashGetCode; // PHASH_TABLE_DEFAULT_HASH_FUNCTION;
355 hashArgs.maxLoadFactor = PHASH_TABLE_DEFAULT_MAX_LOAD_FACTOR;
356 CHKLOG(rc, PHashTableCreate(&hashArgs, L("srec.graph.wordmap.wordIDForWord.wordmap_create()"), &Interface->wordIDForWord));
    [all...]

Completed in 93 milliseconds