HomeSort by relevance Sort by last modified time
    Searched refs:COND (Results 1 - 25 of 38) sorted by null

1 2

  /external/skia/include/gpu/
GrConfig.h 256 #define GR_ALWAYSASSERT(COND) \
258 if (!(COND)) { \
259 GrPrintf("%s %s failed\n", GR_FILE_AND_LINE_STR, #COND); \
270 #define GR_DEBUGASSERT(COND) GR_ALWAYSASSERT(COND)
272 #define GR_DEBUGASSERT(COND)
279 #define GrAssert(COND) GR_DEBUGASSERT(COND)
280 #define GrAlwaysAssert(COND) GR_ALWAYSASSERT(COND)
    [all...]
  /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/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/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++)
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Debug.h 76 #define OMX_ASSERT(COND) ((!(COND))?OMX_FATALPRINT(0,"OMX_ASSERT("#COND")"),abort():0)
78 #define OMX_ASSERT(COND)
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_Debug.h 101 #define OMX_ASSERT(COND) ((!(COND))?OMX_FATALPRINT(0,"OMX_ASSERT("#COND")"),abort():0)
103 #define OMX_ASSERT(COND)
  /external/openssl/apps/
speed.c     [all...]
  /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,
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); }
Stmt.h 852 enum { VAR, COND, THEN, ELSE, END_EXPR };
859 IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
882 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
883 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E); }
889 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]); }
920 enum { VAR, COND, BODY, END_EXPR };
932 SwitchStmt(ASTContext &C, VarDecl *Var, Expr *cond);
955 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
959 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);}
960 void setCond(Expr *E) { SubExprs[COND] = reinterpret_cast<Stmt *>(E);
    [all...]
Expr.h     [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;
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 =
    [all...]
  /external/valgrind/unittest/
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...]
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) {
  /external/clang/lib/AST/
Stmt.cpp 799 Expr *Cond, Expr *Inc, DeclStmt *LoopVar,
805 SubExprs[COND] = reinterpret_cast<Stmt*>(Cond);
832 IfStmt::IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
837 SubExprs[COND] = reinterpret_cast<Stmt*>(cond);
861 ForStmt::ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar,
868 SubExprs[COND] = reinterpret_cast<Stmt*>(Cond);
892 SwitchStmt::SwitchStmt(ASTContext &C, VarDecl *Var, Expr *cond)
    [all...]
  /external/eigen/test/
packetmath.cpp 67 template<bool Cond,typename Packet>
87 #define CHECK_CWISE1_IF(COND, REFOP, POP) if(COND) { \
88 packet_helper<COND,Packet> h; \
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
rtl.def     [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
rtl.def     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
rtl.def     [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
rtl.def     [all...]
  /external/valgrind/main/VEX/priv/
host_mips_defs.h 144 #define COND() hregMIPS_COND()
463 MIPSCondCode cond; member in struct:__anon16233::__anon16234::__anon16239
485 If cond is != Mcc_ALWAYS, src is checked.
488 MIPSCondCode cond; member in struct:__anon16233::__anon16234::__anon16242
499 MIPSCondCode cond; /* can be MIPScc_AL */ member in struct:__anon16233::__anon16234::__anon16243
507 MIPSCondCode cond; /* can be MIPScc_AL */ member in struct:__anon16233::__anon16234::__anon16244
514 MIPSCondCode cond; /* can be MIPScc_AL */ member in struct:__anon16233::__anon16234::__anon16245
608 MIPSCondCode cond; member in struct:__anon16233::__anon16234::__anon16260
657 MIPSCondCode cond, Bool toFastEP);
659 MIPSCondCode cond);
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
arm.h 615 #define ARM_EXPAND_ALIGNMENT(COND, EXP, ALIGN) \
616 (((COND) && ((ALIGN) < BITS_PER_WORD) \
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
arm.h 615 #define ARM_EXPAND_ALIGNMENT(COND, EXP, ALIGN) \
616 (((COND) && ((ALIGN) < BITS_PER_WORD) \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/config/arm/
arm.h 615 #define ARM_EXPAND_ALIGNMENT(COND, EXP, ALIGN) \
616 (((COND) && ((ALIGN) < BITS_PER_WORD) \
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/config/arm/
arm.h 615 #define ARM_EXPAND_ALIGNMENT(COND, EXP, ALIGN) \
616 (((COND) && ((ALIGN) < BITS_PER_WORD) \
    [all...]

Completed in 1313 milliseconds

1 2