Lines Matching refs:size
42 static void __{prefix}_assert_print_{type}({ctype} v, size_t size) {{
43 (void)size;
64 static void __{prefix}_assert_print_{type}({ctype} v, size_t size) {{
65 (void)size;
86 static void __{prefix}_assert_print_{type}({ctype} v, size_t size) {{
89 for (size_t i = 0; i < size && i < {maxwidth}; i++) {{
96 if (size > {maxwidth}) {{
103 #define __{PREFIX}_ASSERT_{TYPE}_{COMP}(file, line, lh, rh, size)
107 if (!(memcmp(_lh, _rh, size) {op} 0)) {{
109 _lh, size, _rh, size);
119 static void __{prefix}_assert_print_{type}({ctype} v, size_t size) {{
120 __{prefix}_assert_print_mem(v, size);
164 def mkassert(type, comp, lh, rh, size=None):
171 'size': size,
173 if size:
174 return ((ASSERT + '(__FILE__, __LINE__, {lh}, {rh}, {size})')
270 size = pexpr(p) ; p.accept('ws')
275 return mkassert('mem', COMP[comp], lh, rh, size)