Lines Matching refs:maxDelta
247 double maxDelta = 1e-6 * uprv_fabs(testCase.expectedConversionInfo.conversionRate); in testConversionInfo() local
249 maxDelta = 1e-12; in testConversionInfo()
252 actualConversionInfo.conversionRate, maxDelta); in testConversionInfo()
254 maxDelta = 1e-6 * uprv_fabs(testCase.expectedConversionInfo.offset); in testConversionInfo()
256 maxDelta = 1e-12; in testConversionInfo()
259 maxDelta); in testConversionInfo()
352 double maxDelta = 1e-6 * uprv_fabs(testCase.expectedValue); in testConverter() local
354 maxDelta = 1e-12; in testConverter()
357 testCase.expectedValue, converter.convert(testCase.inputValue), maxDelta); in testConverter()
359 maxDelta = 1e-6 * uprv_fabs(testCase.inputValue); in testConverter()
361 maxDelta = 1e-12; in testConverter()
365 testCase.inputValue, converter.convertInverse(testCase.expectedValue), maxDelta); in testConverter()
376 maxDelta = 1e-6 * uprv_fabs(testCase.expectedValue); in testConverter()
378 maxDelta = 1e-12; in testConverter()
381 testCase.expectedValue, converter2.convert(testCase.inputValue), maxDelta); in testConverter()
383 maxDelta = 1e-6 * uprv_fabs(testCase.inputValue); in testConverter()
385 maxDelta = 1e-12; in testConverter()
389 testCase.inputValue, converter2.convertInverse(testCase.expectedValue), maxDelta); in testConverter()