Searched refs:exp (Results 1 - 25 of 38) sorted by relevance

12

/system/core/include/cutils/
H A Dcompiler.h25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
H A Dfs.h30 #define TEMP_FAILURE_RETRY(exp) ({ \
31 typeof (exp) _rc; \
33 _rc = (exp); \
/system/core/libcutils/include/cutils/
H A Dcompiler.h25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
H A Dfs.h30 #define TEMP_FAILURE_RETRY(exp) ({ \
31 typeof (exp) _rc; \
33 _rc = (exp); \
/system/core/libcutils/include_vndk/cutils/
H A Dcompiler.h25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
H A Dfs.h30 #define TEMP_FAILURE_RETRY(exp) ({ \
31 typeof (exp) _rc; \
33 _rc = (exp); \
/system/libfmq/
H A DFmqInternal.cpp24 void check(bool exp) { argument
25 CHECK(exp);
/system/media/audio_utils/
H A Dminifloat.c43 int exp; local
44 float r = frexpf(v, &exp);
45 if ((exp += EXCESS) > EXPONENT_MAX) {
48 if (-exp >= MANTISSA_BITS) {
52 return exp > 0 ? (exp << MANTISSA_BITS) | (mantissa & ~HIDDEN_BIT) :
53 (mantissa >> (1 - exp)) & MANTISSA_MAX;
/system/update_engine/scripts/update_payload/
H A Dformat_utils.py84 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/base/include/android-base/
H A Dmacros.h25 #define TEMP_FAILURE_RETRY(exp) \
27 decltype(exp) _rc; \
29 _rc = (exp); \
120 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
121 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
/system/core/liblog/
H A Dlog_portability.h74 #define TEMP_FAILURE_RETRY(exp) \
76 __typeof__(exp) _rc; \
78 _rc = (exp); \
/system/core/include/utils/
H A DCompat.h73 #define TEMP_FAILURE_RETRY(exp) ({ \
74 typeof (exp) _rc; \
76 _rc = (exp); \
H A DFastStrcmp.h24 #define __predict_true(exp) __builtin_expect((exp) != 0, 1)
/system/core/libutils/include/utils/
H A DCompat.h73 #define TEMP_FAILURE_RETRY(exp) ({ \
74 typeof (exp) _rc; \
76 _rc = (exp); \
H A DFastStrcmp.h24 #define __predict_true(exp) __builtin_expect((exp) != 0, 1)
/system/core/libpixelflinger/
H A Dfixed.cpp96 const int32_t exp = lz - 16; local
97 if (exp <= 0) x >>= -exp>>1;
98 else x <<= (exp>>1) + (exp & 1);
99 if (exp & 1) {
143 // = 2^(y*log2(x*(2^exp)*(2^-exp))))
144 // = 2^(y*(log2(X)-exp))
145 // = 2^(log2(X)*y - y*exp)
148 int32_t exp = gglClz(x) - 16; local
164 p >>= exp; local
[all...]
/system/core/include/log/
H A Dlog_radio.h42 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
H A Dlog_system.h40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
H A Dlog_main.h56 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
/system/core/libcutils/
H A Dandroid_get_control_file.cpp44 #define TEMP_FAILURE_RETRY(exp) (exp) // KISS implementation
H A Dsockets_unix.cpp35 #define TEMP_FAILURE_RETRY(exp) (exp) // KISS implementation
/system/core/liblog/include/log/
H A Dlog_radio.h42 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
H A Dlog_system.h40 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
/system/core/liblog/include_vndk/log/
H A Dlog_radio.h42 #define __predict_false(exp) __builtin_expect((exp) != 0, 0)
/system/nfc/halimpl/pn54x/self-test/
H A DphNxpNciHal_SelfTest.c31 typedef uint8_t (*st_validator_t)(nci_data_t* exp,
65 static uint8_t st_validator_testEquals(nci_data_t* exp,
67 static uint8_t st_validator_null(nci_data_t* exp, phTmlNfc_TransactInfo_t* act);
68 static uint8_t st_validator_testSWP1_vltg(nci_data_t* exp,
70 static uint8_t st_validator_testAntenna_Txldo(nci_data_t* exp,
72 static uint8_t st_validator_testAntenna_AgcVal(nci_data_t* exp,
75 nci_data_t* exp, phTmlNfc_TransactInfo_t* act);
77 nci_data_t* exp, phTmlNfc_TransactInfo_t* act);
609 static uint8_t st_validator_testEquals(nci_data_t* exp,
624 static uint8_t st_validator_null(nci_data_t* exp, argument
640 st_validator_testSWP1_vltg(nci_data_t* exp, phTmlNfc_TransactInfo_t* act) argument
668 st_validator_testAntenna_Txldo(nci_data_t* exp, phTmlNfc_TransactInfo_t* act) argument
742 st_validator_testAntenna_AgcVal(nci_data_t* exp, phTmlNfc_TransactInfo_t* act) argument
789 st_validator_testAntenna_AgcVal_FixedNfcLd( nci_data_t* exp, phTmlNfc_TransactInfo_t* act) argument
845 st_validator_testAntenna_AgcVal_Differential( nci_data_t* exp, phTmlNfc_TransactInfo_t* act) argument
913 st_validator_testEquals(nci_data_t* exp, phTmlNfc_TransactInfo_t* act) argument
[all...]

Completed in 1762 milliseconds

12