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

  /libcore/include/
StaticAssert.h 21 * Similar to C++0x's static_assert. Message argument must be a valid identifier, not a string.
25 #define STATIC_ASSERT(exp, msg) typedef StaticAssert<(bool(exp))> msg[bool(exp) ? 1 : -1]
  /external/v8/src/
checks.h 283 #define STATIC_ASSERT(test) STATIC_CHECK(test)
  /external/valgrind/main/none/tests/ppc32/
jm-insns.c 172 #define STATIC_ASSERT(e) sizeof(struct { int:-!(e); })
193 compile_time_test1 = STATIC_ASSERT(sizeof(uint32_t) == 4),
194 compile_time_test2 = STATIC_ASSERT(sizeof(uint64_t) == 8),
    [all...]

Completed in 64 milliseconds