Home
last modified time | relevance | path

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

/third_party/mtdev/src/
Dcommon.h52 #define SETBIT(m, x) (m |= BITMASK(x)) macro
/third_party/openssl/crypto/
Dmem_sec.c265 # define SETBIT(t, b) (t[(b) >> 3] |= (ONE << ((b) & 7))) macro
/third_party/mingw-w64/mingw-w64-headers/include/
Dcelib.h14 #define SETBIT(pb,i) ((pb)[(i) / 8] |= (1 << ((i) % 8))) macro
/third_party/glib/glib/pcre/
Dpcre_compile.c74 #define SETBIT(a,b) a[b/8] |= (1 << (b%8)) macro
/third_party/pcre2/pcre2/src/
Dpcre2_compile.c386 #define SETBIT(a,b) a[(b)/8] = (uint8_t)(a[(b)/8] | (1u << ((b)&7))) macro