Home | History | Annotate | Download | only in src

Lines Matching refs:keycount

206   const int keycount = 1 << windowbits;
209 hashes.resize(keycount);
215 printf("Keyset 'Windowed' - %3d-bit key, %3d-bit window - %d tests, %d keys per test\n",keybits,windowbits,testcount,keycount);
223 for(int i = 0; i < keycount; i++)
250 bool CyclicKeyTest ( pfHash hash, int cycleLen, int cycleReps, const int keycount, bool drawDiagram )
252 printf("Keyset 'Cyclic' - %d cycles of %d bytes - %d keys\n",cycleReps,cycleLen,keycount);
257 hashes.resize(keycount);
266 for(int i = 0; i < keycount; i++)
328 const int keycount = (int)pow(double(corecount),double(corelen));
332 printf("]%s\" - %d keys\n",suffix,keycount);
344 hashes.resize(keycount);
346 for(int i = 0; i < keycount; i++)
379 int keycount = 64*1024;
381 printf("Keyset 'Zeroes' - %d keys\n",keycount);
383 unsigned char * nullblock = new unsigned char[keycount];
384 memset(nullblock,0,keycount);
390 hashes.resize(keycount);
392 for(int i = 0; i < keycount; i++)
412 bool SeedTest ( pfHash hash, int keycount, bool drawDiagram )
414 printf("Keyset 'Seed' - %d keys\n",keycount);
423 hashes.resize(keycount);
425 for(int i = 0; i < keycount; i++)