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

  /external/clang/test/Sema/
constant-builtins-2.c 114 #define BITSIZE(x) (sizeof(x) * 8)
115 char clz1[__builtin_clz(1) == BITSIZE(int) - 1 ? 1 : -1];
116 char clz2[__builtin_clz(7) == BITSIZE(int) - 3 ? 1 : -1];
117 char clz3[__builtin_clz(1 << (BITSIZE(int) - 1)) == 0 ? 1 : -1];
119 char clz5[__builtin_clzl(0xFL) == BITSIZE(long) - 4 ? 1 : -1];
120 char clz6[__builtin_clzll(0xFFLL) == BITSIZE(long long) - 8 ? 1 : -1];
121 char clz7[__builtin_clzs(0x1) == BITSIZE(short) - 1 ? 1 : -1];
122 char clz8[__builtin_clzs(0xf) == BITSIZE(short) - 4 ? 1 : -1];
123 char clz9[__builtin_clzs(0xfff) == BITSIZE(short) - 12 ? 1 : -1];
127 char ctz3[__builtin_ctz(1 << (BITSIZE(int) - 1)) == BITSIZE(int) - 1 ? 1 : -1]
    [all...]
  /external/syslinux/gpxe/src/util/
nrv2b.c 68 #ifndef BITSIZE
69 #define BITSIZE 32
812 static int bbConfig(struct ucl_compress *c, int endian, int bitsize)
820 if (bitsize != -1)
822 if (bitsize != 8 && bitsize != 16 && bitsize != 32 && bitsize != 64)
824 c->bb_c_s = bitsize;
825 c->bb_c_s8 = bitsize / 8
    [all...]

Completed in 142 milliseconds