/device/generic/vulkan-cereal/fake-android-guest/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
|
/device/generic/vulkan-cereal/base/ |
D | Tracing.cpp | 50 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument 51 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument 53 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) argument 54 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 )) argument
|
D | Lock.h | 317 # define SEQLOCK_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument 318 # define SEQLOCK_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument 320 # define SEQLOCK_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) argument 321 # define SEQLOCK_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 )) argument
|
/device/generic/vulkan-cereal/third-party/perfetto-tracing-only/ |
D | perfetto-sdk-tracing-only.cpp | 22 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument 23 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument 25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) argument 26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 )) argument
|
D | perfetto-tracing-only.cpp | 148 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument 149 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument 151 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) argument 152 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 )) argument
|
/device/generic/vulkan-cereal/include/glm/detail/ |
D | func_common.inl | 748 GLM_FUNC_QUALIFIER genType frexp(genType x, int & exp) 756 GLM_FUNC_QUALIFIER tvec1<T, P> frexp(tvec1<T, P> const & x, tvec1<int, P> & exp) 764 GLM_FUNC_QUALIFIER tvec2<T, P> frexp(tvec2<T, P> const & x, tvec2<int, P> & exp) 774 GLM_FUNC_QUALIFIER tvec3<T, P> frexp(tvec3<T, P> const & x, tvec3<int, P> & exp) 785 GLM_FUNC_QUALIFIER tvec4<T, P> frexp(tvec4<T, P> const & x, tvec4<int, P> & exp) 797 GLM_FUNC_QUALIFIER genType ldexp(genType const & x, int const & exp) 805 GLM_FUNC_QUALIFIER tvec1<T, P> ldexp(tvec1<T, P> const & x, tvec1<int, P> const & exp) 814 GLM_FUNC_QUALIFIER tvec2<T, P> ldexp(tvec2<T, P> const & x, tvec2<int, P> const & exp) 824 GLM_FUNC_QUALIFIER tvec3<T, P> ldexp(tvec3<T, P> const & x, tvec3<int, P> const & exp) 835 GLM_FUNC_QUALIFIER tvec4<T, P> ldexp(tvec4<T, P> const & x, tvec4<int, P> const & exp)
|
D | func_exponential.inl | 78 GLM_FUNC_QUALIFIER vecType<T, P> exp(vecType<T, P> const & x) function
|
/device/generic/goldfish-opengl/shared/qemupipe/include/ |
D | qemu_pipe_bp.h | 40 #define QEMU_PIPE_RETRY(exp) ({ \ argument
|
/device/google/contexthub/firmware/lib/libm/ |
D | wf_exp.c | 96 double exp(double x) in exp() function
|
/device/generic/vulkan-cereal/third-party/googletest/googlemock/src/ |
D | gmock-spec-builders.cc | 118 ExpectationBase* exp = expectations.back(); in RetireAllPreRequisites() local 140 const ExpectationBase* exp = expectations.back(); in AllPrerequisitesAreSatisfied() local 160 const ExpectationBase* exp = expectations.back(); in FindUnsatisfiedPrerequisites() local 505 Expectation UntypedFunctionMockerBase::GetHandleOf(ExpectationBase* exp) { in GetHandleOf()
|
/device/generic/vulkan-cereal/fake-android-guest/utils/ |
D | FastStrcmp.h | 24 #define __predict_true(exp) __builtin_expect((exp) != 0, 1) argument
|
D | Compat.h | 73 #define TEMP_FAILURE_RETRY(exp) ({ \ argument
|
/device/generic/vulkan-cereal/third-party/angle/src/compiler/translator/tree_ops/ |
D | RemovePow.cpp | 71 TIntermTyped *exp = CreateBuiltInFunctionCallNode("exp2", expArgs, *mSymbolTable, 100); in visitAggregate() local
|
/device/generic/vulkan-cereal/third-party/angle/src/tests/gl_tests/ |
D | DXTSRGBCompressedTextureTest.cpp | 77 GLColor exp = reinterpret_cast<const GLColor *>(test.expected)[y * test.width + x]; in runTestChecks() local
|
/device/generic/vulkan-cereal/fake-android-guest/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
|
/device/generic/vulkan-cereal/third-party/angle/src/tests/compiler_tests/ |
D | RemovePow_test.cpp | 85 TIntermUnary *exp = node->getAsUnaryNode(); in IsPowWorkaround() local
|
/device/generic/vulkan-cereal/stream-servers/glestranslator/GLcommon/ |
D | ShareGroup.cpp | 319 #define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) argument 320 #define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) argument
|
/device/generic/vulkan-cereal/third-party/googletest/googlemock/include/gmock/ |
D | gmock-spec-builders.h | 597 ExpectationSet(internal::ExpectationBase& exp) { // NOLINT in ExpectationSet() 1704 TypedExpectation<F>* exp = this->FindMatchingExpectationLocked(args); in UntypedFindMatchingExpectation() local 1740 TypedExpectation<F>* const exp = in FindMatchingExpectationLocked() local
|
/device/google/cuttlefish/host/libs/web/ |
D | credential_source.cc | 252 auto exp = time + minutes(30); in CreateJwt() local
|
/device/generic/vulkan-cereal/include/glm/gtx/ |
D | quaternion.inl | 46 GLM_FUNC_QUALIFIER tquat<T, P> exp(tquat<T, P> const& q) function
|
/device/google/cuttlefish/common/libs/net/ |
D | netlink_request_test.cpp | 53 const uint8_t* exp, const uint8_t* act, size_t length) { in Compare()
|
/device/generic/vulkan-cereal/protocols/vulkan/xml/cereal/common/ |
D | vulkantypes.py | 462 def parse_one(exp): argument
|
/device/generic/vulkan-cereal/third-party/angle/src/common/ |
D | mathutil.h | 759 inline float Ldexp(float x, int exp) in Ldexp()
|