HomeSort by relevance Sort by last modified time
    Searched defs:COND (Results 1 - 12 of 12) sorted by null

  /external/openssl/crypto/des/
speed.c 220 #define COND(d) (count != (d))
223 #define COND(c) (run)
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++)
des_opts.c 405 for (count=0,run=1; COND(cb); count++) \
469 #define COND(d) (count != (d))
472 #define COND(c) (run)
  /external/openssl/crypto/rc2/
rc2speed.c 211 #define COND(d) (count != (d))
214 #define COND(c) (run)
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/rc4/
rc4speed.c 210 #define COND(d) (count != (d))
213 #define COND(c) (run)
221 for (count=0,run=1; COND(ca); count+=4)
239 for (count=0,run=1; COND(cc); count++)
  /external/clang/include/clang/AST/
StmtCXX.h 129 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END };
131 // SubExprs[COND] and SubExprs[INC] are expressions.
138 Expr *Cond, Expr *Inc, DeclStmt *LoopVar, Stmt *Body,
152 Expr *getCond() { return cast_or_null<Expr>(SubExprs[COND]); }
164 return cast_or_null<Expr>(SubExprs[COND]);
177 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt*>(E); }
Stmt.h 708 enum { VAR, COND, THEN, ELSE, END_EXPR };
715 IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
738 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
739 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
745 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
776 enum { VAR, COND, BODY, END_EXPR };
788 SwitchStmt(ASTContext &C, VarDecl *Var, Expr *cond);
811 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
815 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);}
816 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E);
    [all...]
Expr.h     [all...]
  /external/valgrind/unittest/
posix_tests.cc 31 with any other library that supports threads, locks, cond vars, etc.
56 static int COND = 0;
65 // 3. while(COND != 2) /-------- c. CV.Signal()
78 COND++;
84 COND = 0;
90 while(COND != 2) {
racecheck_unittest.cc 31 with any other library that supports threads, locks, cond vars, etc.
78 static int COND = 0;
123 // 1. COND = 0
127 // c. COND = 1
129 // 4. while(COND) / e. MU.Unlock()
140 COND = 1;
148 COND = 0;
151 while(COND != 1)
172 // 1. COND = 0
176 // c. COND =
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
cpp.c 335 COND, LOGOR, LOGAND, OR, XOR, AND, EQUAL, RELATION, SHIFT, ADD, MUL, UNARY,
    [all...]
  /external/openssl/apps/
speed.c     [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 33 // with any other library that supports threads, locks, cond vars, etc.
128 int COND = 0;
361 // 1. COND = 0
365 // c. COND = 1
367 // 4. while(COND) / e. MU.Unlock()
378 COND = 1;
386 COND = 0;
389 while(COND != 1)
410 // 1. COND = 0
414 // c. COND =
    [all...]

Completed in 535 milliseconds