HomeSort by relevance Sort by last modified time
    Searched refs:discardChance (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
test_pcache.c 37 unsigned discardChance; /* Chance of discarding on an unpin (0-100) */
293 ** discardChance setting. If discardChance is 0, the random discard
294 ** never happens. If discardChance is 100, it always happens.
297 && (100-testpcacheGlobal.discardChance) <= (testpcacheRandom(p)%100)
414 ** When installing, discardChance is a number between 0 and 100 that
421 unsigned discardChance, /* 0-100. Chance to discard on unpin */
443 assert( discardChance<=100 );
444 testpcacheGlobal.discardChance = discardChance;
    [all...]
test_malloc.c 975 int discardChance = 0;
981 "INSTALLFLAG DISCARDCHANCE PRNGSEEED HIGHSTRESS");
985 if( objc>=3 && Tcl_GetIntFromObj(interp, objv[2], &discardChance) ){
994 if( discardChance<0 || discardChance>100 ){
999 installTestPCache(installFlag, (unsigned)discardChance, (unsigned)prngSeed,
    [all...]

Completed in 127 milliseconds