Lines Matching refs:i
80 int i, rc = 0, rc1 = 0; \
81 for (i = 0; i < sizeof (stest) / sizeof (stest[0]); i++) \
83 rc = FTOSTR (sbuf, stest[i].size, stest[i].fmt, stest[i].t.FSUF); \
84 rc1 = (strcmp (sbuf, stest[i].s) != 0) || (rc != stest[i].rc); \
88 sbuf, rc, stest[i].s, stest[i].rc); \
92 for (i = 0; i < sizeof (tests) / sizeof (tests[0]); i++) \
94 rc = FTOSTR (buf, tests[i].size, tests[i].fmt, tests[i].t.FSUF); \
95 rc1 = (strcmp (buf, tests[i].s) != 0) || (rc != tests[i].rc); \
99 buf, rc, tests[i].s, tests[i].rc); \
103 for (i = 0; i < sizeof (htest) / sizeof (htest[0]); i++) \
105 rc = FTOSTR (buf, 50, htest[i].fmt, htest[i].t.FSUF); \
106 if (strcmp (buf, htest[i].exp[0]) == 0 \
107 || strcmp (buf, htest[i].exp[1]) == 0 \
108 || strcmp (buf, htest[i].exp[2]) == 0 \
109 || strcmp (buf, htest[i].exp[3]) == 0) \
114 "or %s\n", buf, rc, htest[i].exp[0], htest[i].exp[1], \
115 htest[i].exp[2], htest[i].exp[3]); \