Lines Matching defs:error
50 dataerrln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status));
52 errln(UnicodeString("FAIL: ") + msg + " failed, error " + u_errorName(status));
142 logln(UnicodeString("Numeric error ") + min_numeric_error + " to " + max_numeric_error);
181 // 5) Calculate the proportional error --> INF, so the test will fail
210 // This is a normal machine that can support IEEE754 denormalized doubles without throwing an error.
264 errln("*** STRING ERROR \"" + escape(s) + "\" != \"" + escape(s2) + "\"");
271 errln("*** NUMERIC ERROR");
276 // Compute proportional error
277 double error = proportionalError(value, n);
279 if(error > MAX_ERROR) {
280 errln(UnicodeString("*** NUMERIC ERROR ") + error);
284 if (error > max_numeric_error)
285 max_numeric_error = error;
286 if (error < min_numeric_error)
287 min_numeric_error = error;
313 double error = aa - bb;
315 error /= aa;
317 return uprv_fabs(error);