HomeSort by relevance Sort by last modified time
    Searched defs:CHECK (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_state_init.c 188 #define CHECK( NM, FLAG, ADD ) \
202 CHECK( always, GL_TRUE, 0 )
203 CHECK( always_add2, GL_TRUE, 2 )
204 CHECK( always_add4, GL_TRUE, 4 )
205 CHECK( tex0_mm, GL_TRUE, 3 )
206 CHECK( tex1_mm, GL_TRUE, 3 )
208 CHECK( tex2_mm, GL_TRUE, 3 )
209 CHECK( cube0_mm, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
210 CHECK( cube1_mm, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
211 CHECK( cube2_mm, (ctx->Texture.Unit[2]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE
    [all...]
  /external/chromium_org/third_party/re2/util/
logging.h 28 #define CHECK(x) if(x){}else LogMessageFatal(__FILE__, __LINE__).stream() << "Check failed: " #x
29 #define CHECK_LT(x, y) CHECK((x) < (y))
30 #define CHECK_GT(x, y) CHECK((x) > (y))
31 #define CHECK_LE(x, y) CHECK((x) <= (y))
32 #define CHECK_GE(x, y) CHECK((x) >= (y))
33 #define CHECK_EQ(x, y) CHECK((x) == (y))
34 #define CHECK_NE(x, y) CHECK((x) != (y))
  /external/chromium_org/third_party/skia/src/images/
bmpdecoderhelper.h 20 #define CHECK(predicate) SkASSERT(predicate)
  /external/chromium_org/v8/src/
checks.h 55 // The CHECK macro checks that the given condition is true; if not, it
57 #define CHECK(condition) do { \
59 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \
114 // Helper function used by the CHECK function when given string
146 // Helper function used by the CHECK function when given pointer
176 // Helper function used by the CHECK function when given floating
242 #define CHECK_GT(a, b) CHECK((a) > (b))
243 #define CHECK_GE(a, b) CHECK((a) >= (b))
244 #define CHECK_LT(a, b) CHECK((a) < (b))
245 #define CHECK_LE(a, b) CHECK((a) <= (b)
    [all...]
  /external/compiler-rt/lib/asan/
asan_malloc_mac.cc 143 CHECK(memptr);
163 CHECK(system_malloc_zone);
179 CHECK(allocated < kCallocPoolSize);
188 CHECK(system_malloc_zone);
246 CHECK(system_malloc_zone);
256 // TODO(glider): check that |size| is valid.
298 CHECK(sizeof(malloc_statistics_t) == sizeof(AsanMallocStats));
321 asan_introspection.check = &mi_check;
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state_init.c 188 #define CHECK( NM, FLAG, ADD ) \
202 CHECK( always, GL_TRUE, 0 )
203 CHECK( always_add2, GL_TRUE, 2 )
204 CHECK( always_add4, GL_TRUE, 4 )
205 CHECK( tex0_mm, GL_TRUE, 3 )
206 CHECK( tex1_mm, GL_TRUE, 3 )
208 CHECK( tex2_mm, GL_TRUE, 3 )
209 CHECK( cube0_mm, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
210 CHECK( cube1_mm, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE )
211 CHECK( cube2_mm, (ctx->Texture.Unit[2]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE
    [all...]
  /external/regex-re2/util/
logging.h 23 #define CHECK(x) if(x){}else LogMessageFatal(__FILE__, __LINE__).stream() << "Check failed: " #x
24 #define CHECK_LT(x, y) CHECK((x) < (y))
25 #define CHECK_GT(x, y) CHECK((x) > (y))
26 #define CHECK_LE(x, y) CHECK((x) <= (y))
27 #define CHECK_GE(x, y) CHECK((x) >= (y))
28 #define CHECK_EQ(x, y) CHECK((x) == (y))
29 #define CHECK_NE(x, y) CHECK((x) != (y))
  /external/skia/src/images/
bmpdecoderhelper.h 20 #define CHECK(predicate) SkASSERT(predicate)
  /external/v8/src/
checks.h 54 // The CHECK macro checks that the given condition is true; if not, it
56 #define CHECK(condition) do { \
58 V8_Fatal(__FILE__, __LINE__, "CHECK(%s) failed", #condition); \
113 // Helper function used by the CHECK function when given string
145 // Helper function used by the CHECK function when given pointer
175 // Helper function used by the CHECK function when given floating
227 #define CHECK_GT(a, b) CHECK((a) > (b))
228 #define CHECK_GE(a, b) CHECK((a) >= (b))
229 #define CHECK_LT(a, b) CHECK((a) < (b))
230 #define CHECK_LE(a, b) CHECK((a) <= (b)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
signed_settings_helper.cc 35 CHECK(op_.get());
105 CHECK,
124 case CHECK:
145 case CHECK:
349 WhitelistOpContext::CHECK,
410 CHECK(context);
  /external/chromium_org/third_party/icu/source/test/intltest/
incaltst.cpp 19 #define CHECK(status, msg) \
132 CHECK(status, "creating '" + UnicodeString(locs[j]) + "' calendar");
219 CHECK(status, "err during quasiGregorianTest()");
238 CHECK(status, UnicodeString("Creating de_CH calendar"));
239 // Sanity check the calendar
247 // end sanity check
290 CHECK(status, UnicodeString("Creating th_TH@calendar=buddhist calendar"));
292 // Sanity check the calendar
300 // end sanity check
341 CHECK(status, UnicodeString("Creating en_US@calendar=roc calendar"))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_state_init.c 218 * Check functions are used to check if state is active.
219 * If it is active check function returns maximum emit size.
221 #define CHECK( NM, FLAG, ADD ) \
251 CHECK( always, GL_TRUE, 0 )
252 CHECK( always_add4, GL_TRUE, 4 )
253 CHECK( never, GL_FALSE, 0 )
254 CHECK( tex_any, ctx->Texture._EnabledUnits, 0 )
255 CHECK( tf, (ctx->Texture._EnabledUnits && !ctx->ATIFragmentShader._Enabled), 0 );
256 CHECK( pix_zero, !ctx->ATIFragmentShader._Enabled, 0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
compiler.h 292 #ifdef CHECK
293 #undef CHECK
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_translate.c 90 #undef CHECK
112 #define CHECK
608 #undef CHECK
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
logging.h 82 // CHECK dies with a fatal error if condition is not true. It is *not*
83 // controlled by NDEBUG, so the check will be executed regardless of
85 // CHECK(fp->Write(x) == 4)
88 #define CHECK(condition) \
91 WRITE_TO_STDERR("Check failed: " #condition "\n", \
92 sizeof("Check failed: " #condition "\n")-1); \
101 WRITE_TO_STDERR("Check failed: " #condition ": " message "\n", \
102 sizeof("Check failed: " #condition ": " message "\n")-1);\
122 WRITE_TO_STDERR("Check failed: " #condition ": ", \
123 sizeof("Check failed: " #condition ": ")-1);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
logging.h 77 // CHECK dies with a fatal error if condition is not true. It is *not*
78 // controlled by NDEBUG, so the check will be executed regardless of
80 // CHECK(fp->Write(x) == 4)
83 #define CHECK(condition) \
86 WRITE_TO_STDERR("Check failed: " #condition "\n", \
87 sizeof("Check failed: " #condition "\n")-1); \
96 WRITE_TO_STDERR("Check failed: " #condition ": " message "\n", \
97 sizeof("Check failed: " #condition ": " message "\n")-1);\
117 WRITE_TO_STDERR("Check failed: " #condition ": ", \
118 sizeof("Check failed: " #condition ": ")-1);
    [all...]
  /external/chromium_org/tools/page_cycler/webpagereplay/extension/
background.js 20 function CHECK(expr, comment) {
41 CHECK(totalTime >= 0);
197 CHECK(baseTime);
  /external/clang/test/Sema/
compare.c 295 #define CHECK(x) (x >= X)
297 if (CHECK(v)) // no-warning
306 #undef CHECK
  /external/llvm/unittests/IR/
ConstantsTest.cpp 154 #define CHECK(x, y) { \
197 CHECK(ConstantExpr::getNeg(P0), "sub i32 0, " P0STR);
198 CHECK(ConstantExpr::getFNeg(P1), "fsub float -0.000000e+00, " P1STR);
199 CHECK(ConstantExpr::getNot(P0), "xor i32 " P0STR ", -1");
200 CHECK(ConstantExpr::getAdd(P0, P0), "add i32 " P0STR ", " P0STR);
201 CHECK(ConstantExpr::getAdd(P0, P0, false, true), "add nsw i32 " P0STR ", "
203 CHECK(ConstantExpr::getAdd(P0, P0, true, true), "add nuw nsw i32 " P0STR ", "
205 CHECK(ConstantExpr::getFAdd(P1, P1), "fadd float " P1STR ", " P1STR);
206 CHECK(ConstantExpr::getSub(P0, P0), "sub i32 " P0STR ", " P0STR);
207 CHECK(ConstantExpr::getFSub(P1, P1), "fsub float " P1STR ", " P1STR)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_state_init.c 218 * Check functions are used to check if state is active.
219 * If it is active check function returns maximum emit size.
221 #define CHECK( NM, FLAG, ADD ) \
251 CHECK( always, GL_TRUE, 0 )
252 CHECK( always_add4, GL_TRUE, 4 )
253 CHECK( never, GL_FALSE, 0 )
254 CHECK( tex_any, ctx->Texture._EnabledUnits, 0 )
255 CHECK( tf, (ctx->Texture._EnabledUnits && !ctx->ATIFragmentShader._Enabled), 0 );
256 CHECK( pix_zero, !ctx->ATIFragmentShader._Enabled, 0
    [all...]
  /external/mesa3d/src/mesa/main/
compiler.h 292 #ifdef CHECK
293 #undef CHECK
  /external/mesa3d/src/mesa/math/
m_translate.c 90 #undef CHECK
112 #define CHECK
608 #undef CHECK
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 30 DICTID, /* i: waiting for dictionary check value */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
45 CHECK, /* i: waiting for 32-bit check value */
47 DONE, /* finished check, done -- remain here until reset */
65 TYPE -> STORED or TABLE or LEN or CHECK
73 CHECK -> LENGTH -> DONE
84 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
  /external/stlport/test/unit/
num_put_get_test.cpp 622 #define CHECK(type, val, base, expected) \
629 CHECK(short, 0, oct, "0")
630 CHECK(short, 1, oct, "1")
631 CHECK(short, 12345, oct, "30071")
633 CHECK(short, -1, oct, "177777")
634 CHECK(short, -12345, oct, "147707")
637 CHECK(unsigned short, 0, oct, "0")
638 CHECK(unsigned short, 12345, oct, "30071")
640 CHECK(int, 0, oct, "0")
641 CHECK(int, 12345678, oct, "57060516"
    [all...]
  /external/valgrind/unittest/
thread_wrappers.h 57 # define CHECK(x) do { if (!(x)) { \
62 # define CHECK assert
109 CHECK(q_.empty());
128 CHECK(ok);
178 CHECK(n_params == 2);
196 CHECK(sizeof(P1) <= sizeof(void*));
207 CHECK(sizeof(P1) <= sizeof(void*));
208 CHECK(sizeof(P2) <= sizeof(void*));

Completed in 326 milliseconds

12 3 4