Lines Matching refs:expand_number
39 ATF_REQUIRE_MSG(expand_number(str, &val) == 0, in require_success()
51 ATF_REQUIRE_MSG(expand_number(str, &val) == -1, in require_error()
233 ret = expand_number(tc->str, &num); in ATF_TC_BODY()
259 ATF_REQUIRE_EQ(0, expand_number("18446744073709551615", &uint64)); in ATF_TC_BODY()
261 ATF_REQUIRE_EQ(-1, expand_number("-1", &uint64)); in ATF_TC_BODY()
264 ATF_REQUIRE_EQ(0, expand_number("9223372036854775807", &int64)); in ATF_TC_BODY()
266 ATF_REQUIRE_EQ(-1, expand_number("9223372036854775808", &int64)); in ATF_TC_BODY()
268 ATF_REQUIRE_EQ(0, expand_number("-9223372036854775808", &int64)); in ATF_TC_BODY()
272 ATF_REQUIRE_EQ(0, expand_number("18446744073709551615", &size)); in ATF_TC_BODY()
274 ATF_REQUIRE_EQ(-1, expand_number("-1", &size)); in ATF_TC_BODY()
278 ATF_REQUIRE_EQ(0, expand_number("9223372036854775807", &off)); in ATF_TC_BODY()
280 ATF_REQUIRE_EQ(-1, expand_number("9223372036854775808", &off)); in ATF_TC_BODY()
282 ATF_REQUIRE_EQ(0, expand_number("-9223372036854775808", &off)); in ATF_TC_BODY()