Home
last modified time | relevance | path

Searched refs:COND (Results 1 – 21 of 21) sorted by relevance

/external/skia/include/gpu/
DGrConfig.h247 #define GR_ALWAYSASSERT(COND) \ argument
249 if (!(COND)) { \
250 GrPrintf("%s %s failed\n", GR_FILE_AND_LINE_STR, #COND); \
261 #define GR_DEBUGASSERT(COND) GR_ALWAYSASSERT(COND) argument
263 #define GR_DEBUGASSERT(COND) argument
270 #define GrAssert(COND) GR_DEBUGASSERT(COND) argument
271 #define GrAlwaysAssert(COND) GR_ALWAYSASSERT(COND) argument
/external/openssl/crypto/des/
Dspeed.c220 #define COND(d) (count != (d)) in main() macro
223 #define COND(c) (run) in main() macro
231 for (count=0,run=1; COND(ca); count++) in main()
244 for (count=0,run=1; COND(cb); count++) in main()
263 for (count=0,run=1; COND(cc); count++) in main()
280 for (count=0,run=1; COND(cd); count++) in main()
299 for (count=0,run=1; COND(ce); count++) in main()
Ddes_opts.c405 for (count=0,run=1; COND(cb); count++) \
469 #define COND(d) (count != (d)) in main() macro
472 #define COND(c) (run) in main() macro
/external/openssl/crypto/rc2/
Drc2speed.c211 #define COND(d) (count != (d)) in main() macro
214 #define COND(c) (run) in main() macro
222 for (count=0,run=1; COND(ca); count+=4) in main()
240 for (count=0,run=1; COND(cb); count+=4) in main()
262 for (count=0,run=1; COND(cc); count++) in main()
/external/valgrind/main/drd/tests/
Dtsan_unittest.cpp128 int COND = 0; variable
380 COND = 1; in Waker()
388 COND = 0; in Waiter()
391 while(COND != 1) in Waiter()
428 COND = 1; // We are done! Tell the Waiter. in Waker()
434 COND = 0; in Waiter()
436 MU.LockWhen(Condition(&ArgIsOne, &COND)); // calls ANNOTATE_CONDVAR_WAIT in Waiter()
508 COND = 1; in Waker()
516 COND = 0; in Waiter()
520 while(COND != 1) in Waiter()
[all …]
/external/valgrind/unittest/
Dracecheck_unittest.cc78 static int COND = 0; variable
140 COND = 1; in Waker()
148 COND = 0; in Waiter()
151 while(COND != 1) in Waiter()
188 COND = 1; // We are done! Tell the Waiter. in Waker()
194 COND = 0; in Waiter()
196 MU.LockWhen(Condition(&ArgIsOne, &COND)); // calls ANNOTATE_CONDVAR_WAIT in Waiter()
268 COND = 1; in Waker()
276 while(COND != 1) in Waiter()
283 COND = 0; in Run()
[all …]
Dposix_tests.cc56 static int COND = 0; variable
78 COND++; in Worker()
84 COND = 0; in Parent()
90 while(COND != 2) { in Parent()
/external/openssl/apps/
Dspeed.c1488 #define COND(d) (count < (d)) in MAIN() macro
1495 #define COND(c) (run && count<0x7fffffff) in MAIN() macro
1509 for (count=0,run=1; COND(c[D_MD2][j]); count++) in MAIN()
1523 for (count=0,run=1; COND(c[D_MDC2][j]); count++) in MAIN()
1538 for (count=0,run=1; COND(c[D_MD4][j]); count++) in MAIN()
1553 for (count=0,run=1; COND(c[D_MD5][j]); count++) in MAIN()
1574 for (count=0,run=1; COND(c[D_HMAC][j]); count++) in MAIN()
1593 for (count=0,run=1; COND(c[D_SHA1][j]); count++) in MAIN()
1607 for (count=0,run=1; COND(c[D_SHA256][j]); count++) in MAIN()
1622 for (count=0,run=1; COND(c[D_SHA512][j]); count++) in MAIN()
[all …]
/external/openssl/crypto/rc4/
Drc4speed.c210 #define COND(d) (count != (d)) in main() macro
213 #define COND(c) (run) in main() macro
221 for (count=0,run=1; COND(ca); count+=4) in main()
239 for (count=0,run=1; COND(cc); count++) in main()
/external/clang/include/clang/AST/
DStmt.h847 enum { VAR, COND, THEN, ELSE, END_EXPR }; enumerator
877 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond()
878 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); } in setCond()
884 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); } in getCond()
915 enum { VAR, COND, BODY, END_EXPR }; enumerator
950 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond()
954 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);} in getCond()
955 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); } in setCond()
1010 enum { VAR, COND, BODY, END_EXPR }; enumerator
1037 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); } in getCond()
[all …]
DStmtCXX.h130 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END }; enumerator
155 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); } in getCond()
167 return cast_or_null<Expr>(SubExprs[COND]); in getCond()
180 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); } in setCond()
DExpr.h3008 enum { COND, LHS, RHS, END_EXPR }; enumerator
3030 SubExprs[COND] = cond; in ConditionalOperator()
3041 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
3075 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS }; enumerator
3101 SubExprs[COND] = cond; in BinaryConditionalOperator()
3121 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
3329 enum { COND, LHS, RHS, END_EXPR }; enumerator
3344 SubExprs[COND] = cond; in ChooseExpr()
3362 Expr *getCond() const { return cast<Expr>(SubExprs[COND]); } in getCond()
3363 void setCond(Expr *E) { SubExprs[COND] = E; } in setCond()
/external/clang/test/CodeGenObjCXX/
Darc.mm59 // CHECK: [[COND:%.*]] = alloca i32
68 // CHECK-NEXT: [[T0:%.*]] = load i32* [[COND]]
87 // CHECK: [[T0:%.*]] = load i32* [[COND]]
/external/eigen/test/
Dpacketmath.cpp87 #define CHECK_CWISE1_IF(COND, REFOP, POP) if(COND) { \ argument
88 packet_helper<COND,Packet> h; \
/external/clang/lib/AST/
DStmt.cpp817 SubExprs[COND] = reinterpret_cast<Stmt*>(Cond); in CXXForRangeStmt()
849 SubExprs[COND] = reinterpret_cast<Stmt*>(cond); in IfStmt()
880 SubExprs[COND] = reinterpret_cast<Stmt*>(Cond); in ForStmt()
908 SubExprs[COND] = reinterpret_cast<Stmt*>(cond); in SwitchStmt()
941 SubExprs[COND] = reinterpret_cast<Stmt*>(cond); in WhileStmt()
/external/llvm/test/Transforms/InstCombine/
Dcast.ll33 %COND = icmp slt i32 %A, %B ; <i1> [#uses=1]
35 %c = zext i1 %COND to i8 ; <i8> [#uses=1]
39 ; CHECK: %COND = icmp slt i32 %A, %B
40 ; CHECK: %result = zext i1 %COND to i32
/external/clang/test/CodeGenObjC/
Darc.m574 // CHECK: [[COND:%.*]] = alloca i8,
580 // CHECK-NEXT: [[T0:%.*]] = load i8* [[COND]]
953 // CHECK: [[COND:%.*]] = alloca i32
962 // CHECK-NEXT: [[T0:%.*]] = load i32* [[COND]]
981 // CHECK: [[T0:%.*]] = load i32* [[COND]]
1431 // CHECK: [[COND:%.*]] = phi i1 [ false, {{%.*}} ], [ [[T2]], {{%.*}} ]
1437 // CHECK: br i1 [[COND]]
/external/bison/data/m4sugar/
Dm4sugar.m4291 # m4_ifval(COND, [IF-TRUE], [IF-FALSE])
293 # If COND is not the empty string, expand IF-TRUE, otherwise IF-FALSE.
309 # m4_ifvaln(COND, [IF-TRUE], [IF-FALSE])
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
Dcpp.c335 COND, LOGOR, LOGAND, OR, XOR, AND, EQUAL, RELATION, SHIFT, ADD, MUL, UNARY, enumerator
/external/protobuf/src/google/protobuf/
Dtest_util_lite.cc41 #define EXPECT_FALSE(COND) GOOGLE_CHECK(!(COND)) argument
/external/clang/lib/Serialization/
DASTReaderStmt.cpp578 E->SubExprs[ConditionalOperator::COND] = Reader.ReadSubExpr(); in VisitConditionalOperator()
590 E->SubExprs[BinaryConditionalOperator::COND] = Reader.ReadSubExpr(); in VisitBinaryConditionalOperator()