HomeSort by relevance Sort by last modified time
    Searched refs:SETBIT (Results 1 - 10 of 10) sorted by null

  /external/clang/test/Sema/Inputs/
conversion.h 4 #define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); } while(0)
  /external/vboot_reference/firmware/2lib/
2nvstorage.c 164 #define SETBIT(offs, mask) \
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_DEV, VB2_NV_DEV_FLAG_SIGNED_ONLY)
    [all...]
  /external/libavc/encoder/
ih264e_cabac.h 72 #define SETBIT(a, i) ((a) |= (1 << (i)))
ih264e_cabac_encode.c     [all...]
  /external/libmpeg2/decoder/
impeg2d_api.h 56 #define SETBIT(a,i) ((a) |= (1 << i))
  /external/clang/test/Sema/
conversion.c 379 SETBIT(bitset, 0);
382 SETBIT(bitset, y);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
celib.h 14 #define SETBIT(pb,i) ((pb)[(i) / 8] |= (1 << ((i) % 8)))
  /external/pcre/dist2/src/
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)))
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1885 milliseconds