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

1 2

  /external/chromium_org/third_party/opus/src/silk/
typedef.h 57 # 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/
typedef.h 57 # define silk_assert(COND) _ASSERTE(COND)
72 # define silk_assert(COND) {if (!(COND)) {silk_fatal("assertion failed: " #COND);}}
74 # define silk_assert(COND)
  /external/chromium_org/third_party/skia/include/gpu/
GrConfig.h 159 #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/skia/include/gpu/
GrConfig.h 155 #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/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/chromium_org/third_party/skia/platform_tools/android/tests/
makefile_writer_tests.py 106 deviation_params = [('foo', 'COND'), ('bar', None)]
  /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/skia/platform_tools/android/tests/
makefile_writer_tests.py 106 deviation_params = [('foo', 'COND'), ('bar', None)]
  /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/omap4-aah/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)
  /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 868 enum { VAR, COND, THEN, ELSE, END_EXPR };
875 IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
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 };
949 SwitchStmt(const ASTContext &C, VarDecl *Var, Expr *cond);
972 const Expr *getCond() const { return reinterpret_cast<Expr*>(SubExprs[COND]);}
976 Expr *getCond() { return reinterpret_cast<Expr*>(SubExprs[COND]);
    [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/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_compiler.h 317 * 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/
p_compiler.h 317 * 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/
compiler.h 313 * 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/
compiler.h 313 * 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/
Android.mk 88 ifeq ($(COND), true)
  /external/nanopb-c/
pb.h 115 #define STATIC_ASSERT(COND,MSG) typedef char STATIC_ASSERT_MSG(MSG, __LINE__, __COUNTER__)[(COND)?1:-1];
  /external/skia/platform_tools/android/tests/expectations/
Android.mk 82 ifeq ($(COND), true)
  /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; \

Completed in 619 milliseconds

1 2