Lines Matching refs:assert_cc
75 assert_cc(sizeof(val1.b) == sizeof(int) * 100); in TEST()
79 assert_cc(__builtin_types_compatible_p(typeof(CONST_MAX(1, 10)), int)); in TEST()
80 assert_cc(__builtin_types_compatible_p(typeof(CONST_MAX(1, 1U)), void)); in TEST()
86 assert_cc(MAXSIZE(char[3], uint16_t) == 3); in TEST()
87 assert_cc(MAXSIZE(char[3], uint32_t) == 4); in TEST()
88 assert_cc(MAXSIZE(char, long) == sizeof(long)); in TEST()
150 assert_cc(sizeof(myval) >= 17); in TEST()
322 assert_cc(CONST_ALIGN_TO(96, 512) == 512); in TEST()
323 assert_cc(CONST_ALIGN_TO(511, 512) == 512); in TEST()
324 assert_cc(CONST_ALIGN_TO(512, 512) == 512); in TEST()
325 assert_cc(CONST_ALIGN_TO(513, 512) == 1024); in TEST()
326 assert_cc(CONST_ALIGN_TO(sizeof(int), 64) == 64); in TEST()
328 assert_cc(__builtin_types_compatible_p(typeof(CONST_ALIGN_TO(4, 3)), void)); in TEST()
329 assert_cc(__builtin_types_compatible_p(typeof(CONST_ALIGN_TO(SIZE_MAX, 512)), void)); in TEST()