/system/core/libcutils/include/cutils/ |
D | compiler.h | 25 # 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
|
D | fs.h | 30 #define TEMP_FAILURE_RETRY(exp) ({ \ argument 31 typeof (exp) _rc; \ 33 _rc = (exp); \
|
/system/core/libcutils/include_vndk/cutils/ |
D | compiler.h | 25 # 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
|
D | fs.h | 30 #define TEMP_FAILURE_RETRY(exp) ({ \ argument 31 typeof (exp) _rc; \ 33 _rc = (exp); \
|
/system/media/audio_utils/ |
D | minifloat.c | 43 int exp; in gain_from_float() local 44 float r = frexpf(v, &exp); in gain_from_float() 45 if ((exp += EXCESS) > EXPONENT_MAX) { in gain_from_float() 48 if (-exp >= MANTISSA_BITS) { in gain_from_float() 52 return exp > 0 ? (exp << MANTISSA_BITS) | (mantissa & ~HIDDEN_BIT) : in gain_from_float() 53 (mantissa >> (1 - exp)) & MANTISSA_MAX; in gain_from_float()
|
/system/core/base/include/android-base/ |
D | macros.h | 25 #define TEMP_FAILURE_RETRY(exp) \ argument 27 decltype(exp) _rc; \ 29 _rc = (exp); \ 120 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true )) argument 121 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false )) argument
|
/system/update_engine/scripts/update_payload/ |
D | format_utils.py | 84 exp, magnitude = 0, 1 85 while exp < len(suffixes): 89 exp += 1 92 if exp != 0: 97 return '%d%s %s' % (whole, '.%d' % frac if frac else '', suffixes[exp - 1])
|
/system/core/libpixelflinger/ |
D | fixed.cpp | 96 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/core/liblog/ |
D | log_portability.h | 74 #define TEMP_FAILURE_RETRY(exp) \ argument 76 __typeof__(exp) _rc; \ 78 _rc = (exp); \
|
/system/core/libutils/include/utils/ |
D | Compat.h | 73 #define TEMP_FAILURE_RETRY(exp) ({ \ argument 74 typeof (exp) _rc; \ 76 _rc = (exp); \
|
D | FastStrcmp.h | 24 #define __predict_true(exp) __builtin_expect((exp) != 0, 1) argument
|
/system/libfmq/ |
D | FmqInternal.cpp | 24 void check(bool exp) { in check() argument 25 CHECK(exp); in check()
|
/system/core/libcutils/ |
D | android_get_control_file.cpp | 45 #define TEMP_FAILURE_RETRY(exp) (exp) // KISS implementation argument
|
D | sockets_unix.cpp | 36 #define TEMP_FAILURE_RETRY(exp) (exp) // KISS implementation argument
|
/system/core/liblog/include_vndk/log/ |
D | log_radio.h | 42 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) argument
|
D | log_system.h | 40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) argument
|
D | log_main.h | 57 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) argument
|
/system/core/liblog/include/log/ |
D | log_system.h | 40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) argument
|
D | log_radio.h | 42 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) argument
|
D | log_main.h | 57 #define __predict_false(exp) __builtin_expect((exp) != 0, 0) argument
|
/system/core/libpixelflinger/include/private/pixelflinger/ |
D | ggl_fixed.h | 813 int32_t exp = 31; in gglClz() 814 if (x & 0xFFFF0000) { exp -=16; x >>= 16; } in gglClz() 815 if (x & 0x0000ff00) { exp -= 8; x >>= 8; } in gglClz() 816 if (x & 0x000000f0) { exp -= 4; x >>= 4; } in gglClz() 817 if (x & 0x0000000c) { exp -= 2; x >>= 2; } in gglClz() 818 if (x & 0x00000002) { exp -= 1; } in gglClz() 819 return exp; in gglClz()
|
/system/update_engine/update_manager/ |
D | real_updater_provider_unittest.cc | 68 Time::Exploded exp; in RoundedToSecond() local 69 time.LocalExplode(&exp); in RoundedToSecond() 70 exp.millisecond = 0; in RoundedToSecond() 72 ignore_result(Time::FromLocalExploded(exp, &rounded_time)); in RoundedToSecond()
|
D | chromeos_policy.cc | 723 int exp = min(update_state.num_failures, in UpdateBackoffAndDownloadUrl() local 726 1 << exp, in UpdateBackoffAndDownloadUrl()
|
/system/core/liblog/tests/ |
D | liblog_benchmark.cpp | 41 #define LOG_FAILURE_RETRY(exp) \ argument 43 typeof(exp) _rc; \ 45 _rc = (exp); \
|
/system/chre/external/kiss_fft/ |
D | kissfft.hh | 16 dst[i] = exp( std::complex<T_scalar>(0,i*phinc) ); in fill_twiddles()
|