Lines Matching defs:c
830 int c;
839 c = (x == 4096);
845 c = (x == 4096 || x == (16 * 1024) || x == (64 * 1024));
850 c = (x >= 4096);
853 return !c;
1552 #define EXPECT_VFPRINTF(c, expected, fmt, ...) \
1553 ret += expect_vfprintf(llen, c, expected, fmt, ##__VA_ARGS__)
1555 static int expect_vfprintf(int llen, int c, const char *expected, const char *fmt, ...)
1568 if (w != c) {
1569 llen += printf(" written(%d) != %d", (int)w, c);
1575 ret = strncmp(expected, buf, c);
1705 CASE_TEST(char); EXPECT_VFPRINTF(1, "c", "%c", 'c'); break;