Home
last modified time | relevance | path

Searched refs:SETBIT (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/byacc/
H A Dclosure.c40 SETBIT(row, symbol); in set_EFF()
91 SETBIT(rrow, rule); in set_first_derives()
H A Dlalr.c311 SETBIT(rowp, symbol); in initialize_F()
336 SETBIT(F, 0); in initialize_F()
H A Ddefs.h72 #define SETBIT(r, n) ((r)[(n)/BITS_PER_WORD]|=((unsigned)1<<((n)&(BITS_PER_WORD-1)))) macro
/freebsd/sys/kern/
H A Dtty_inq.c71 #define SETBIT(tib,boff) \ macro
278 SETBIT(tib, offset); in ttyinq_set_quotes()
/freebsd/lib/libc/db/hash/
H A Dhash.h150 #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP))) macro
H A Dhash_page.c630 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 Dmem_sec.c293 # define SETBIT(t, b) (t[(b) >> 3] |= (ONE << ((b) & 7))) macro
371 SETBIT(table, bit); in sh_setbit()
/freebsd/contrib/sqlite3/
H A Dsqlite3.c54107 #define SETBIT(V,I) V[I>>3] |= (1<<(I&7))
54183 SETBIT(pV, (i+1));