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

  /external/grpc-grpc/third_party/nanopb/
pb.h 117 * in the place where the PB_STATIC_ASSERT macro was called.
120 #ifndef PB_STATIC_ASSERT
121 #define PB_STATIC_ASSERT(COND,MSG) typedef char PB_STATIC_ASSERT_MSG(MSG, __LINE__, __COUNTER__)[(COND)?1:-1];
126 #define PB_STATIC_ASSERT(COND,MSG)
254 PB_STATIC_ASSERT(sizeof(int64_t) == 2 * sizeof(int32_t), INT64_T_WRONG_SIZE)
255 PB_STATIC_ASSERT(sizeof(uint64_t) == 2 * sizeof(uint32_t), UINT64_T_WRONG_SIZE)
  /external/nanopb-c/
pb.h 117 * in the place where the PB_STATIC_ASSERT macro was called.
120 #ifndef PB_STATIC_ASSERT
121 #define PB_STATIC_ASSERT(COND,MSG) typedef char PB_STATIC_ASSERT_MSG(MSG, __LINE__, __COUNTER__)[(COND)?1:-1];
126 #define STATIC_ASSERT PB_STATIC_ASSERT
131 #define PB_STATIC_ASSERT(COND,MSG)
260 PB_STATIC_ASSERT(sizeof(int64_t) == 2 * sizeof(int32_t), INT64_T_WRONG_SIZE)
261 PB_STATIC_ASSERT(sizeof(uint64_t) == 2 * sizeof(uint32_t), UINT64_T_WRONG_SIZE)

Completed in 181 milliseconds