Home
last modified time | relevance | path

Searched refs:s_BigPrimes (Results 1 – 2 of 2) sorted by relevance

/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/misc/vec/
H A DvecInt.h1497 static unsigned s_BigPrimes[4] = {12582917, 25165843, 50331653, 100663319}; in Vec_IntUniqueHashKeyDebug() local
1501 Key += (unsigned)pStr[c] * s_BigPrimes[c & 3]; in Vec_IntUniqueHashKeyDebug()
1532 static unsigned s_BigPrimes[4] = {12582917, 25165843, 50331653, 100663319}; in Vec_IntUniqueHashKey2() local
1535 Key += (unsigned)pStr[c] * s_BigPrimes[c & 3]; in Vec_IntUniqueHashKey2()
1541 static unsigned s_BigPrimes[16] = in Vec_IntUniqueHashKey() local
1553 Key += s_BigPrimes2[(2*c)&15] * s_BigPrimes[(unsigned)pStr[c] & 15] + in Vec_IntUniqueHashKey()
1554 s_BigPrimes2[(2*c+1)&15] * s_BigPrimes[(unsigned)pStr[c] >> 4]; in Vec_IntUniqueHashKey()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/base/abci/
H A DabcNpn.c73 …static unsigned s_BigPrimes[7] = {12582917, 25165843, 50331653, 100663319, 201326611, 402653189, 8… in Abc_TruthHashKey() local
77 Key += pFunc[w] * s_BigPrimes[w % 7]; in Abc_TruthHashKey()