Searched refs:SETBIT (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/byacc/ |
H A D | closure.c | 40 SETBIT(row, symbol); in set_EFF() 91 SETBIT(rrow, rule); in set_first_derives()
|
H A D | lalr.c | 311 SETBIT(rowp, symbol); in initialize_F() 336 SETBIT(F, 0); in initialize_F()
|
H A D | defs.h | 72 #define SETBIT(r, n) ((r)[(n)/BITS_PER_WORD]|=((unsigned)1<<((n)&(BITS_PER_WORD-1)))) macro
|
/freebsd/sys/kern/ |
H A D | tty_inq.c | 71 #define SETBIT(tib,boff) \ macro 278 SETBIT(tib, offset); in ttyinq_set_quotes()
|
/freebsd/lib/libc/db/hash/ |
H A D | hash.h | 150 #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP))) macro
|
H A D | hash_page.c | 630 SETBIT(ip, 0); in __ibitmap() 755 SETBIT(freep, free_bit); in overflow_page() 768 SETBIT(freep, bit); in overflow_page()
|
/freebsd/crypto/openssl/crypto/ |
H A D | mem_sec.c | 293 # define SETBIT(t, b) (t[(b) >> 3] |= (ONE << ((b) & 7))) macro 371 SETBIT(table, bit); in sh_setbit()
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 54107 #define SETBIT(V,I) V[I>>3] |= (1<<(I&7)) 54183 SETBIT(pV, (i+1));
|