Searched defs:SETBIT (Results 1 - 7 of 7) sorted by relevance
/external/clang/test/Sema/Inputs/ |
H A D | conversion.h | 4 #define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0) macro
|
/external/libmpeg2/decoder/ |
H A D | impeg2d_api.h | 56 #define SETBIT(a,i) ((a) |= (1 << i)) macro
|
/external/libavc/encoder/ |
H A D | ih264e_cabac.h | 72 #define SETBIT(a, i) ((a) |= (1 << (i))) macro
|
/external/vboot_reference/firmware/2lib/ |
H A D | 2nvstorage.c | 164 #define SETBIT(offs, mask) \ macro 183 SETBIT(VB2_NV_OFFS_HEADER, VB2_NV_HEADER_FW_SETTINGS_RESET); 187 SETBIT(VB2_NV_OFFS_HEADER, VB2_NV_HEADER_KERNEL_SETTINGS_RESET); 191 SETBIT(VB2_NV_OFFS_BOOT, VB2_NV_BOOT_DEBUG_RESET); 195 SETBIT(VB2_NV_OFFS_BOOT2, VB2_NV_BOOT2_TRY_NEXT); 208 SETBIT(VB2_NV_OFFS_BOOT2, VB2_NV_BOOT2_TRIED); 221 SETBIT(VB2_NV_OFFS_BOOT2, VB2_NV_BOOT2_PREV_TRIED); 264 SETBIT(VB2_NV_OFFS_DEV, VB2_NV_DEV_FLAG_USB); 268 SETBIT(VB2_NV_OFFS_DEV, VB2_NV_DEV_FLAG_LEGACY); 272 SETBIT(VB2_NV_OFFS_DE 305 #undef SETBIT macro [all...] |
/external/pcre/dist2/src/ |
H A D | pcre2_compile.c | 156 #define SETBIT(a,b) a[(b)/8] |= (uint8_t)(1 << ((b)&7)) 161 #define SETBIT(a,b) a[(b)/8] = (uint8_t)(a[(b)/8] | (1 << ((b)&7))) macro 2852 SETBIT(classbits, cb->fcc[c]); 2869 SETBIT(classbits, c);
|
/external/sqlite/dist/orig/ |
H A D | sqlite3.c | 44122 #define SETBIT macro [all...] |
/external/sqlite/dist/ |
H A D | sqlite3.c | 44122 #define SETBIT macro [all...] |
Completed in 836 milliseconds