Home | History | Annotate | Download | only in cintltst

Lines Matching defs:fromMax

171         int64_t fromMax = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MAX_VALUE, &status);
174 roundTripTest(fromMax, (UDateTimeScale)scale);
185 int64_t fromMax = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MAX_VALUE, &status);
190 toLimitTest(toMax, fromMax, (UDateTimeScale)scale);
206 int64_t fromMin, fromMax;
210 fromMax = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MAX_VALUE, &status);
233 result = utmscale_fromInt64(fromMax, (UDateTimeScale)scale, &status);
235 log_err("utmscale_fromInt64(fromMax, %d, &status) generated U_ILLEGAL_ARGUMENT_ERROR.\n", scale);
238 if (fromMax < U_INT64_MAX) {
240 result = utmscale_fromInt64(fromMax + 1, (UDateTimeScale)scale, &status);
242 log_err("utmscale_fromInt64(fromMax + 1, %d, &status) didn't generate U_ILLEGAL_ARGUMENT_ERROR.\n", scale);
335 int64_t fromMax = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MAX_VALUE, &status);
338 initRandom(fromMin, fromMax);