Searched refs:TESTBIT (Results 1 – 4 of 4) sorted by relevance
| /freebsd/crypto/openssl/crypto/ |
| H A D | mem_sec.c | 312 #define TESTBIT(t, b) (t[(b) >> 3] & (ONE << ((b) & 7))) macro 347 if (TESTBIT(sh.bittable, bit)) in sh_getlist() 363 return TESTBIT(table, bit); in sh_testbit() 374 OPENSSL_assert(TESTBIT(table, bit)); in sh_clearbit() 386 OPENSSL_assert(!TESTBIT(table, bit)); in sh_setbit() 621 if (TESTBIT(sh.bittable, bit) && !TESTBIT(sh.bitmalloc, bit)) in sh_find_my_buddy()
|
| /freebsd/contrib/lua/src/ |
| H A D | lgc.h | 80 #define TESTBIT 7 macro
|
| H A D | ltests.c | 539 assert(!testbit(o->marked, TESTBIT)); in checkgraylist() 541 l_setbit(o->marked, TESTBIT); /* mark that object is in a gray list */ in checkgraylist() 591 assert(testbit(o->marked, TESTBIT)); in incifingray() 592 resetbit(o->marked, TESTBIT); /* prepare for next cycle */ in incifingray()
|
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 55060 #define TESTBIT(V,I) (V[I>>3]&(1<<(I&7)))!=0 macro 55153 if( (TESTBIT(pV,i))!=sqlite3BitvecTest(pBitvec,i) ){
|