Lines Matching defs:result
31 intmax_t result = strtoumax("18737357foobar12", &p, 10);
32 if (result != want) {
33 t_error("%s strtoumax get result is %zu are not 18737357U\n", __func__, result);
49 intmax_t result = strtoumax("18737357foobar12", &p, 16);
50 if (result != want) {
51 t_error("%s strtoumax get result is %zu are not 0x18737357fU\n", __func__, result);
67 intmax_t result = strtoumax("-18737357foobar12", &p, 10);
68 if (result != UINTMAX_MAX - subnum + 1) {
69 t_error("%s strtoumax get result error is %zu\n", __func__, result);