Home
last modified time | relevance | path

Searched refs:hashtablesize (Results 1 – 25 of 33) sorted by relevance

12

/dports/biology/vsearch/vsearch-2.17.1/src/
H A Dderep.cc265 uint64_t hashtablesize = 2 * alloc_clusters; in derep() local
266 uint64_t hash_mask = hashtablesize - 1; in derep()
269 memset(hashtable, 0, sizeof(bucket) * hashtablesize); in derep()
389 hashtablesize = 2 * alloc_clusters; in derep()
390 hash_mask = hashtablesize - 1; in derep()
832 int64_t hashtablesize = 1; in derep_prefix() local
834 while (3 * dbsequencecount > 2 * hashtablesize) in derep_prefix()
836 hashtablesize <<= 1; in derep_prefix()
839 int hash_mask = hashtablesize - 1; in derep_prefix()
844 memset(hashtable, 0, sizeof(bucket) * hashtablesize); in derep_prefix()
[all …]
/dports/sysutils/cfengine317/cfengine-3.17.0/tests/acceptance/02_classes/01_basic/
H A D027.c43 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
59 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine/cfengine-3.19.0/tests/acceptance/02_classes/01_basic/
H A D027.c43 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
59 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine316/cfengine-3.16.0/tests/acceptance/02_classes/01_basic/
H A D027.c43 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
59 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine-devel/core-d08ae9eff/tests/acceptance/02_classes/01_basic/
H A D027.c43 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
59 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine318/cfengine-3.18.1/tests/acceptance/02_classes/01_basic/
H A D027.c43 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
59 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine319/cfengine-3.19.0/tests/acceptance/02_classes/01_basic/
H A D027.c43 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
59 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine317/cfengine-3.17.0/tests/acceptance/02_classes/01_basic/staging/
H A D028.c49 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
65 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine316/cfengine-3.16.0/tests/acceptance/02_classes/01_basic/staging/
H A D028.c49 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
65 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine-devel/core-d08ae9eff/tests/acceptance/02_classes/01_basic/staging/
H A D028.c49 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
65 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine/cfengine-3.19.0/tests/acceptance/02_classes/01_basic/staging/
H A D028.c49 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
65 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine318/cfengine-3.18.1/tests/acceptance/02_classes/01_basic/staging/
H A D028.c49 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
65 return (h & (hashtablesize - 1)); in OatHash()
/dports/sysutils/cfengine319/cfengine-3.19.0/tests/acceptance/02_classes/01_basic/staging/
H A D028.c49 unsigned int hashtablesize = SPLAY_PSEUDO_RANDOM_CONSTANT; in OatHash() local
65 return (h & (hashtablesize - 1)); in OatHash()
/dports/cad/electric/electric-7.00/src/db/
H A Ddbcreate.c1745 REGISTER INTBIG i, j, numportprotos, hashtablesize; in db_buildportprotohashtable() local
1763 hashtablesize = pickprime(numportprotos * 4); in db_buildportprotohashtable()
1766 cell->portprotohashtable = (PORTPROTO **)emalloc(hashtablesize * (sizeof (PORTPROTO *)), in db_buildportprotohashtable()
1769 for(i=0; i<hashtablesize; i++) in db_buildportprotohashtable()
1771 cell->portprotohashtablesize = hashtablesize; in db_buildportprotohashtable()
1776 i = db_namehash(pp->protoname) % hashtablesize; in db_buildportprotohashtable()
1777 for(j=1; j<=hashtablesize; j += 2) in db_buildportprotohashtable()
1785 if (i >= hashtablesize) i -= hashtablesize; in db_buildportprotohashtable()
H A Ddbnoproto.c697 REGISTER INTBIG i, j, numnodeprotos, hashtablesize; in db_buildnodeprotohashtable() local
716 hashtablesize = pickprime(numnodeprotos * 4); in db_buildnodeprotohashtable()
719 …lib->nodeprotohashtable = (NODEPROTO **)emalloc(hashtablesize * (sizeof (NODEPROTO *)), lib->clust… in db_buildnodeprotohashtable()
721 lib->nodeprotoviewhashtable = (VIEW **)emalloc(hashtablesize * (sizeof (VIEW *)), lib->cluster); in db_buildnodeprotohashtable()
723 for(i=0; i<hashtablesize; i++) in db_buildnodeprotohashtable()
725 lib->nodeprotohashtablesize = hashtablesize; in db_buildnodeprotohashtable()
732 i = abs(i) % hashtablesize; in db_buildnodeprotohashtable()
733 for(j=1; j<=hashtablesize; j += 2) in db_buildnodeprotohashtable()
742 if (i >= hashtablesize) i -= hashtablesize; in db_buildnodeprotohashtable()
/dports/math/SCIP/scip-7.0.3/src/scip/
H A Dsepa_rapidlearning.c477 int hashtablesize; in setupAndSolveSubscipRapidlearning() local
481 hashtablesize = (int) SCIPgetNConflictConssApplied(subscip); in setupAndSolveSubscipRapidlearning()
482 assert(hashtablesize < INT_MAX/5); in setupAndSolveSubscipRapidlearning()
485 SCIP_CALL( SCIPhashmapCreate(&consmap, SCIPblkmem(scip), hashtablesize) ); in setupAndSolveSubscipRapidlearning()
H A Dimplics.c1766 int hashtablesize; in SCIPcliquetableCreate() local
1773 hashtablesize = HASHTABLE_CLIQUETABLE_SIZE; in SCIPcliquetableCreate()
1774hashtablesize = MAX(hashtablesize, (set->misc_usesmalltables ? SCIP_HASHSIZE_CLIQUES_SMALL : SCIP_… in SCIPcliquetableCreate()
1775 SCIP_CALL( SCIPhashtableCreate(&((*cliquetable)->hashtable), blkmem, hashtablesize, in SCIPcliquetableCreate()
H A Dcons_and.c3362 int hashtablesize; in detectRedundantConstraints() local
3369 hashtablesize = nconss; in detectRedundantConstraints()
3370 hashtablesize = MAX(hashtablesize, HASHSIZE_ANDCONS); in detectRedundantConstraints()
3371 SCIP_CALL( SCIPhashtableCreate(&hashtable, blkmem, hashtablesize, in detectRedundantConstraints()
H A Dcons_logicor.c1947 int hashtablesize; in detectRedundantConstraints() local
1954 hashtablesize = nconss; in detectRedundantConstraints()
1955 hashtablesize = MAX(hashtablesize, HASHSIZE_LOGICORCONS); in detectRedundantConstraints()
1956 SCIP_CALL( SCIPhashtableCreate(&hashtable, blkmem, hashtablesize, in detectRedundantConstraints()
H A Dcons_xor.c3665 int hashtablesize; in detectRedundantConstraints() local
3672 hashtablesize = nconss; in detectRedundantConstraints()
3673 hashtablesize = MAX(hashtablesize, HASHSIZE_XORCONS); in detectRedundantConstraints()
3675 SCIP_CALL( SCIPhashtableCreate(&hashtable, blkmem, hashtablesize, in detectRedundantConstraints()
/dports/cad/electric/electric-7.00/src/sim/
H A Dsimverilog.c2268 hashtablesize = 1; in sim_verparsefile()
2499 hashtablesize = pickprime(numsignals*2); in sim_verparsefile()
2502 for(i=0; i<hashtablesize; i++) verhash[i] = NOVERSIGNAL; in sim_verparsefile()
2509 for(i=0; i<hashtablesize; i++) in sim_verparsefile()
2523 if (hashcode >= hashtablesize) hashcode = 0; in sim_verparsefile()
2546 hashcode = sim_vergetsignalhash(symname) % hashtablesize; in sim_verparsefile()
2548 for(i=0; i<hashtablesize; i++) in sim_verparsefile()
2554 if (hashcode >= hashtablesize) hashcode = 0; in sim_verparsefile()
2594 hashcode = sim_vergetsignalhash(symname) % hashtablesize; in sim_verparsefile()
2596 for(i=0; i<hashtablesize; i++) in sim_verparsefile()
[all …]
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/map/
H A DBaseHashMap.java164 int hashtablesize = (int) (initialCapacity * loadFactor);
166 if (hashtablesize < 3) {
167 hashtablesize = 3;
170 hashIndex = new HashIndex(hashtablesize, initialCapacity, true);
/dports/devel/fpc-fcl-base/fpc-3.2.2/packages/fcl-base/src/
H A Dgettext.pp183 EndianFixHashTable(hashtable,hashtablesize);
/dports/lang/fpc-source/fpc-3.2.2/packages/fcl-base/src/
H A Dgettext.pp183 EndianFixHashTable(hashtable,hashtablesize);
/dports/lang/fpc/fpc-3.2.2/packages/fcl-base/src/
H A Dgettext.pp183 EndianFixHashTable(hashtable,hashtablesize);

12