Lines Matching defs:end
51 const char *end;
60 check(struct test *t, intmax_t rv, char *end, int rstatus)
64 atf_tc_fail_nonfatal("strtoi(\"%s\", &end, %d, %jd, %jd, "
83 atf_tc_fail_nonfatal("strtoi(\"%s\", &end, %d, %jd, %jd, &rstatus)"
93 if ((t->end != NULL && strcmp(t->end, end) != 0) ||
94 (t->end == NULL && *end != '\0'))
95 atf_tc_fail_nonfatal("invalid end pointer ('%s') from "
96 "strtoi(\"%s\", &end, %d, %jd, %jd, &rstatus), "
97 "expected '%s'", end, t->str, t->base, t->lo, t->hi,
98 t->end != NULL ? t->end : "\\0");
173 char *end;
180 rv = strtoi(t[i].str, &end, t[i].base, t[i].lo, t[i].hi, &e);
184 check(&t[i], rv, end, e);
189 end = NULL;
193 rv = strtoi(f[i].str, &end, f[i].base, f[i].lo, f[i].hi, &e);
197 check(&f[i], rv, end, e);
231 char *end;
238 rv = strtoi(t[i].str, &end, t[i].base, t[i].lo, t[i].hi, &e);
242 check(&t[i], rv, end, e);
284 char *end;
291 rv = strtoi(t[i].str, &end, t[i].base, t[i].lo, t[i].hi, &e);
297 check(&t[i], rv, end, e);
319 char *end;
326 rv = strtoi(t[i].str, &end, t[i].base, t[i].lo, t[i].hi, &e);
330 check(&t[i], rv, end, e);
374 char *end;
381 rv = strtoi(t[i].str, &end, t[i].base, t[i].lo, t[i].hi, &e);
385 check(&t[i], rv, end, e);