Searched refs:expr (Results 1 - 8 of 8) sorted by relevance

/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
H A Dperf38 expr $2 / 2
41 expr $2 \* 2
43 expr $2
90 6) VDsize=$(expr $6 \* $7 \* 2)
92 13|14) VDsize=$(expr $9 \* $10 \* 2)
94 15) VDsize=$(expr $5 \* $6 \* 2)
104 size=$(expr $4 \* $5 \* 2)
132 size=$(expr $width \* $height \* 2)
142 size=$(expr $4 \* $5 \* 2)
173 size=$(expr
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
H A Donyxd_int.h139 #define CHECK_MEM_ERROR(lval,expr) do {\
140 lval = (expr); \
147 #define CHECK_MEM_ERROR(lval,expr) do {\
148 lval = (expr); \
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_common.h68 #define CHECK_MEM_ERROR(cm, lval, expr) do { \
69 lval = (expr); \
76 #define CHECK_MEM_ERROR(cm, lval, expr) do { \
77 lval = (expr); \
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmdefs.h37 #define STATIC_ASSERT(expr) { \
39 typedef enum { _STATIC_ASSERT_NOT_CONSTANT = (expr) } _static_assert_e; \
41 typedef char STATIC_ASSERT_FAIL[(expr) ? 1 : -1]; \
/hardware/ti/omap3/dspbridge/inc/
H A Dgt.h103 GT_assert(struct GT_Mask mask, Int expr) argument
247 #define GT_assert( mask, expr )
256 #define GT_assert( mask, expr ) \
257 (!(expr) ? \
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Donyx_int.h713 #define CHECK_MEM_ERROR(lval,expr) do {\
714 lval = (expr); \
721 #define CHECK_MEM_ERROR(lval,expr) do {\
722 lval = (expr); \
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc2824 AssertionResult HRESULTFailureHelper(const char* expr, argument
2859 << "Expected: " << expr << " " << expected << ".\n"
2865 AssertionResult IsHRESULTSuccess(const char* expr, long hr) { // NOLINT argument
2869 return HRESULTFailureHelper(expr, "succeeds", hr);
2872 AssertionResult IsHRESULTFailure(const char* expr, long hr) { // NOLINT argument
2876 return HRESULTFailureHelper(expr, "fails", hr);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h1922 #define GTEST_COMPILE_ASSERT_(expr, msg) \
1923 typedef ::testing::internal::CompileAssert<(static_cast<bool>(expr))> \
1924 msg[static_cast<bool>(expr) ? 1 : -1] GTEST_ATTRIBUTE_UNUSED_
1933 // #define GTEST_COMPILE_ASSERT_(expr, msg) typedef char msg[(expr) ? 1 : -1]
1944 // - By using the type CompileAssert<(bool(expr))>, we ensures that
1945 // expr is a compile-time constant. (Template arguments must be
1948 // - The outter parentheses in CompileAssert<(bool(expr))> are necessary
1951 // CompileAssert<bool(expr)>
1960 // - The array size is (bool(expr)
[all...]

Completed in 460 milliseconds