Home
last modified time | relevance | path

Searched defs:SETBIT (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/usr.bin/yacc/
H A Ddefs.h66 #define SETBIT(r, n) ((r)[(n)>>5]|=((unsigned)1<<((n)&31))) macro
/openbsd-src/lib/libc/db/hash/
H A Dhash.h152 #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP))) macro
/openbsd-src/gnu/usr.bin/perl/cpan/Digest-SHA/src/
H A Dsha.c218 #define SETBIT(s, pos) s[(pos) >> 3] |= (UCHR) (0x01 << (7 - (pos) % 8)) macro