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

  /external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/
p_compiler.h 320 #define STATIC_ASSERT(COND) \
  /external/mesa3d/src/gallium/include/pipe/
p_compiler.h 320 #define STATIC_ASSERT(COND) \
  /external/chromium_org/v8/src/base/
macros.h 123 // Under C++11, just use static_assert.
124 #define COMPILE_ASSERT(expr, msg) static_assert(expr, #msg)
291 // Use C++11 static_assert if possible, which gives error
294 #define STATIC_ASSERT(test) static_assert(test, #test)
311 #define STATIC_ASSERT(test) \
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
compiler.h 316 #define STATIC_ASSERT(COND) \
  /external/mesa3d/src/mesa/main/
compiler.h 316 #define STATIC_ASSERT(COND) \
  /external/nanopb-c/
pb.h 106 * If this does not work properly on your compiler, use #define STATIC_ASSERT
112 * in the place where the STATIC_ASSERT macro was called.
114 #ifndef STATIC_ASSERT
115 #define STATIC_ASSERT(COND,MSG) typedef char STATIC_ASSERT_MSG(MSG, __LINE__, __COUNTER__)[(COND)?1:-1];
231 STATIC_ASSERT(sizeof(int8_t) == 1, INT8_T_WRONG_SIZE)
232 STATIC_ASSERT(sizeof(uint8_t) == 1, UINT8_T_WRONG_SIZE)
233 STATIC_ASSERT(sizeof(int16_t) == 2, INT16_T_WRONG_SIZE)
234 STATIC_ASSERT(sizeof(uint16_t) == 2, UINT16_T_WRONG_SIZE)
235 STATIC_ASSERT(sizeof(int32_t) == 4, INT32_T_WRONG_SIZE)
236 STATIC_ASSERT(sizeof(uint32_t) == 4, UINT32_T_WRONG_SIZE
    [all...]

Completed in 215 milliseconds