Searched refs:exp (Results 1 – 9 of 9) sorted by relevance
25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) argument29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 )) argument
29 #define TEMP_FAILURE_RETRY(exp) ({ \ argument30 typeof (exp) _rc; \32 _rc = (exp); \
96 const int32_t exp = lz - 16; in gglSqrtRecipx() local97 if (exp <= 0) x >>= -exp>>1; in gglSqrtRecipx()98 else x <<= (exp>>1) + (exp & 1); in gglSqrtRecipx()99 if (exp & 1) { in gglSqrtRecipx()148 int32_t exp = gglClz(x) - 16; in gglPowx() local149 GGLfixed f = x << exp; in gglPowx()155 p = gglMulAddx(p, y, y*exp); in gglPowx()156 exp = gglFixedToIntFloor(p); in gglPowx()157 if (exp < 31) { in gglPowx()164 p >>= exp; in gglPowx()
55 using ::exp;
76 exp: expr {179 printf("%d\n", exp(argv[1]));
57 expcmd exp let
1565 printf("%d\n", exp(argv[1]));
505 int32_t exp = 31; in gglClz()506 if (x & 0xFFFF0000) { exp -=16; x >>= 16; } in gglClz()507 if (x & 0x0000ff00) { exp -= 8; x >>= 8; } in gglClz()508 if (x & 0x000000f0) { exp -= 4; x >>= 4; } in gglClz()509 if (x & 0x0000000c) { exp -= 2; x >>= 2; } in gglClz()510 if (x & 0x00000002) { exp -= 1; } in gglClz()511 return exp; in gglClz()
37 #define TEST_INT_EQ(cond,exp) \ argument40 int _exp = (exp); \