Searched refs:COND (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/opus/src/silk/
H A Dtypedef.h57 # define silk_assert(COND) _ASSERTE(COND)
72 # define silk_assert(COND) {if (!(COND)) {silk_fatal("assertion failed: " #COND);}}
74 # define silk_assert(COND)
/external/libopus/silk/
H A Dtypedef.h57 # define silk_assert(COND) _ASSERTE(COND)
72 # define silk_assert(COND) {if (!(COND)) {silk_fatal("assertion failed: " #COND);}}
74 # define silk_assert(COND)
/external/skia/include/gpu/
H A DGrConfig.h155 #define GR_ALWAYSASSERT(COND) \
157 if (!(COND)) { \
158 GrPrintf("%s %s failed\n", GR_FILE_AND_LINE_STR, #COND); \
169 #define GR_DEBUGASSERT(COND) GR_ALWAYSASSERT(COND)
171 #define GR_DEBUGASSERT(COND)
178 #define GrAlwaysAssert(COND) GR_ALWAYSASSERT(COND)
/external/chromium_org/third_party/skia/include/gpu/
H A DGrConfig.h159 #define GR_ALWAYSASSERT(COND) \
161 if (!(COND)) { \
162 GrPrintf("%s %s failed\n", GR_FILE_AND_LINE_STR, #COND); \
173 #define GR_DEBUGASSERT(COND) GR_ALWAYSASSERT(COND)
175 #define GR_DEBUGASSERT(COND)
182 #define GrAlwaysAssert(COND) GR_ALWAYSASSERT(COND)
/external/openssl/crypto/rc2/
H A Drc2speed.c211 #define COND(d) (count != (d)) macro
214 #define COND(c) (run) macro
222 for (count=0,run=1; COND(ca); count+=4)
240 for (count=0,run=1; COND(cb); count+=4)
262 for (count=0,run=1; COND(cc); count++)
/external/openssl/crypto/des/
H A Dspeed.c220 #define COND(d) (count != (d)) macro
223 #define COND(c) (run) macro
231 for (count=0,run=1; COND(ca); count++)
244 for (count=0,run=1; COND(cb); count++)
263 for (count=0,run=1; COND(cc); count++)
280 for (count=0,run=1; COND(cd); count++)
299 for (count=0,run=1; COND(ce); count++)
H A Ddes_opts.c405 for (count=0,run=1; COND(cb); count++) \
469 #define COND(d) (count != (d)) macro
472 #define COND(c) (run) macro
/external/openssl/crypto/rc4/
H A Drc4speed.c210 #define COND(d) (count != (d)) macro
213 #define COND(c) (run) macro
221 for (count=0,run=1; COND(ca); count+=4)
239 for (count=0,run=1; COND(cc); count++)
/external/openssl/apps/
H A Dspeed.c1488 #define COND(d) (count < (d)) macro
1495 #define COND(c) (run && count<0x7fffffff) macro
1509 for (count=0,run=1; COND(c[D_MD2][j]); count++)
1523 for (count=0,run=1; COND(c[D_MDC2][j]); count++)
1538 for (count=0,run=1; COND(c[D_MD4][j]); count++)
1553 for (count=0,run=1; COND(c[D_MD5][j]); count++)
1574 for (count=0,run=1; COND(c[D_HMAC][j]); count++)
1593 for (count=0,run=1; COND(c[D_SHA1][j]); count++)
1607 for (count=0,run=1; COND(c[D_SHA256][j]); count++)
1622 for (count=0,run=1; COND(
[all...]
/external/clang/include/clang/AST/
H A DStmtCXX.h129 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END }; enumerator in enum:clang::CXXForRangeStmt::__anon17527
131 // SubExprs[COND] and SubExprs[INC] are expressions.
154 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); }
166 return cast_or_null<Expr>(SubExprs[COND]);
179 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
H A DStmt.h868 enum { VAR, COND, THEN, ELSE, END_EXPR }; enumerator in enum:clang::IfStmt::__anon17520
899 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
900 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
906 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
937 enum { VAR, COND, BODY, END_EXPR }; enumerator in enum:clang::SwitchStmt::__anon17521
972 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
976 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);}
977 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
1030 enum { VAR, COND, BODY, END_EXPR }; enumerator in enum:clang::WhileStmt::__anon17522
1057 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
1085 enum { BODY, COND, END_EXPR }; enumerator in enum:clang::DoStmt::__anon17523
1136 enum { INIT, CONDVAR, COND, INC, BODY, END_EXPR }; enumerator in enum:clang::ForStmt::__anon17524
[all...]
H A DExpr.h3183 enum { COND, LHS, RHS, END_EXPR }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::ConditionalOperator::__anon17505
3205 SubExprs[COND] = cond;
3216 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); }
3253 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::BinaryConditionalOperator::__anon17506
3279 SubExprs[COND] = cond;
3299 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); }
3559 enum { COND, LHS, RHS, END_EXPR }; enumerator in enum:clang::StringLiteral::OffsetOfExpr::ChooseExpr::__anon17507
3576 SubExprs[COND] = cond;
3603 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); }
3604 void setCond(Expr *E) { SubExprs[COND]
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp128 int COND = 0; variable
363 // 1. COND = 0
367 // c. COND = 1
369 // 4. while(COND) / e. MU.Unlock()
380 COND = 1;
388 COND = 0;
391 while(COND != 1)
412 // 1. COND = 0
416 // c. COND = 1
418 // 3. MU.LockWhen(COND
591 bool COND = 0; member in namespace:test07
2101 int COND = 0; member in namespace:test42
2492 int COND = 0; member in namespace:test51
2567 int COND = 0; member in namespace:test52
3289 int COND = 0; member in namespace:test68
3341 int COND = 0; member in namespace:test69
4578 int COND = 0; member in namespace:test94
4631 int COND = 0; member in namespace:test95
5320 bool COND = false; member in namespace:test111
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
H A Dp_compiler.h317 * Basically, use COND to dimension an array. If COND is false/zero the
320 #define STATIC_ASSERT(COND) \
322 typedef int static_assertion_failed[(!!(COND))*2-1]; \
/external/mesa3d/src/gallium/include/pipe/
H A Dp_compiler.h317 * Basically, use COND to dimension an array. If COND is false/zero the
320 #define STATIC_ASSERT(COND) \
322 typedef int static_assertion_failed[(!!(COND))*2-1]; \
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dcompiler.h313 * Basically, use COND to dimension an array. If COND is false/zero the
316 #define STATIC_ASSERT(COND) \
318 typedef int static_assertion_failed[(!!(COND))*2-1]; \
/external/mesa3d/src/mesa/main/
H A Dcompiler.h313 * Basically, use COND to dimension an array. If COND is false/zero the
316 #define STATIC_ASSERT(COND) \
318 typedef int static_assertion_failed[(!!(COND))*2-1]; \
/external/chromium_org/third_party/skia/platform_tools/android/tests/expectations/
H A DAndroid.mk88 ifeq ($(COND), true)
/external/nanopb-c/
H A Dpb.h115 #define STATIC_ASSERT(COND,MSG) typedef char STATIC_ASSERT_MSG(MSG, __LINE__, __COUNTER__)[(COND)?1:-1];
/external/skia/platform_tools/android/tests/expectations/
H A DAndroid.mk82 ifeq ($(COND), true)
/external/eigen/test/
H A Dpacketmath.cpp87 #define CHECK_CWISE1_IF(COND, REFOP, POP) if(COND) { \
88 packet_helper<COND,Packet> h; \
/external/clang/lib/AST/
H A DStmt.cpp795 SubExprs[COND] = Cond;
827 SubExprs[COND] = cond;
858 SubExprs[COND] = Cond;
886 SubExprs[COND] = cond;
919 SubExprs[COND] = cond;
/external/valgrind/main/VEX/priv/
H A Dhost_mips_defs.h153 #define COND() hregMIPS_COND() macro
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dtest_util_lite.cc41 #define EXPECT_FALSE(COND) GOOGLE_CHECK(!(COND))
/external/protobuf/src/google/protobuf/
H A Dtest_util_lite.cc41 #define EXPECT_FALSE(COND) GOOGLE_CHECK(!(COND))

Completed in 1082 milliseconds

12