Home | History | Annotate | Download | only in cintltst

Lines Matching defs:fromMin

170         int64_t fromMin = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MIN_VALUE, &status);
173 roundTripTest(fromMin, (UDateTimeScale)scale);
184 int64_t fromMin = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MIN_VALUE, &status);
189 toLimitTest(toMin, fromMin, (UDateTimeScale)scale);
206 int64_t fromMin, fromMax;
209 fromMin = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MIN_VALUE, &status);
219 result = utmscale_fromInt64(fromMin, (UDateTimeScale)scale, &status);
221 log_err("utmscale_fromInt64(fromMin, %d, &status) generated U_ILLEGAL_ARGUMENT_ERROR.\n", scale);
224 if (fromMin > U_INT64_MIN) {
226 result = utmscale_fromInt64(fromMin - 1, (UDateTimeScale)scale, &status);
228 log_err("utmscale_fromInt64(fromMin - 1, %d, &status) did not generate U_ILLEGAL_ARGUMENT_ERROR.\n", scale);
334 int64_t fromMin = utmscale_getTimeScaleValue((UDateTimeScale)scale, UTSV_FROM_MIN_VALUE, &status);
338 initRandom(fromMin, fromMax);