Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 9 of 9) sorted by relevance

/system/core/include/cutils/
Dcompiler.h25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) argument
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 )) argument
Dfs.h29 #define TEMP_FAILURE_RETRY(exp) ({ \ argument
30 typeof (exp) _rc; \
32 _rc = (exp); \
/system/core/libpixelflinger/
Dfixed.cpp96 const int32_t exp = lz - 16; in gglSqrtRecipx() local
97 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() local
149 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()
/system/extras/tests/bionic/libstdc++/
Dtest_cmath.cpp55 using ::exp;
/system/core/sh/
Darith.y76 exp: expr {
179 printf("%d\n", exp(argv[1]));
Dbuiltins.def57 expcmd exp let
Darith.c1565 printf("%d\n", exp(argv[1]));
/system/core/include/private/pixelflinger/
Dggl_fixed.h505 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()
/system/extras/tests/bionic/libc/common/
Dtest_cpu_set.c37 #define TEST_INT_EQ(cond,exp) \ argument
40 int _exp = (exp); \