Home
last modified time | relevance | path

Searched refs:EPSILON (Results 1 – 25 of 55) sorted by relevance

123

/third_party/icu/icu4c/source/data/translit/
Del_el_Latn_BGN.txt104 [ἘἙ] → Ε ; # GREEK CAPITAL LETTER EPSILON
105 [ἐἑὲέ] → ε ; # GREEK SMALL LETTER EPSILON
106 [ἚἛἜἝῈΈ] → Έ ; # GREEK CAPITAL LETTER EPSILON WITH TONOS
107 [ἒἓἔἕ] → έ ; # GREEK SMALL LETTER EPSILON WITH TONOS
329 ΕΙ → I ; # GREEK CAPITAL LETTER EPSILON + CAPITAL IOTA
330 Ει → I ; # GREEK CAPITAL LETTER EPSILON + SMALL IOTA
331 ει → i ; # GREEK SMALL LETTER EPSILON + SMALL IOTA
332 ΕΪ → EÏ ; # GREEK CAPITAL LETTER EPSILON + CAPITAL IOTA DIAERESIS
333 Εϊ → Eï ; # GREEK CAPITAL LETTER EPSILON + SMALL IOTA DIAERESIS
334 εϊ → eï ; # GREEK SMALL LETTER EPSILON + SMALL IOTA DIAERESIS
[all …]
/third_party/skia/third_party/externals/icu/source/data/translit/
Del_el_Latn_BGN.txt104 [ἘἙ] → Ε ; # GREEK CAPITAL LETTER EPSILON
105 [ἐἑὲέ] → ε ; # GREEK SMALL LETTER EPSILON
106 [ἚἛἜἝῈΈ] → Έ ; # GREEK CAPITAL LETTER EPSILON WITH TONOS
107 [ἒἓἔἕ] → έ ; # GREEK SMALL LETTER EPSILON WITH TONOS
329 ΕΙ → I ; # GREEK CAPITAL LETTER EPSILON + CAPITAL IOTA
330 Ει → I ; # GREEK CAPITAL LETTER EPSILON + SMALL IOTA
331 ει → i ; # GREEK SMALL LETTER EPSILON + SMALL IOTA
332 ΕΪ → EÏ ; # GREEK CAPITAL LETTER EPSILON + CAPITAL IOTA DIAERESIS
333 Εϊ → Eï ; # GREEK CAPITAL LETTER EPSILON + SMALL IOTA DIAERESIS
334 εϊ → eï ; # GREEK SMALL LETTER EPSILON + SMALL IOTA DIAERESIS
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderLayeredFramebuffer.cpp333 #define EPSILON (1) in iterate() macro
338 if (de::abs((int)data[0] - (int)ref_data[0]) > EPSILON || in iterate()
339 de::abs((int)data[1] - (int)ref_data[1]) > EPSILON || in iterate()
340 de::abs((int)data[2] - (int)ref_data[2]) > EPSILON || in iterate()
341 de::abs((int)data[3] - (int)ref_data[3]) > EPSILON) in iterate()
345 << "Reference value is different than the rendered data (epsilon > " << EPSILON in iterate()
356 #undef EPSILON in iterate()
742 #define EPSILON (1) in iterate() macro
746 if (de::abs((int)pixel[0] - clear_color_int[0]) > EPSILON || in iterate()
747 de::abs((int)pixel[1] - clear_color_int[1]) > EPSILON || in iterate()
[all …]
/third_party/skia/third_party/externals/harfbuzz/test/api/
Dtest-var-coords.c40 #define EPSILON 0.05f in test_get_var_coords() macro
64 g_assert_true (G_APPROX_VALUE (converted_back, weight, EPSILON)); in test_get_var_coords()
/third_party/jerryscript/tests/jerry/es2015/
Dnumber-constants.js19 assert(Number.EPSILON === 2.2204460492503130808472633361816e-16);
/third_party/gstreamer/gstplugins_good/gst/level/
Dgstlevel.c70 #define EPSILON 1e-35f macro
733 gdouble RMSdB = 20 * log10 (RMS + EPSILON); in gst_level_transform_ip()
774 RMSdB = 20 * log10 (RMS + EPSILON); in gst_level_post_message()
776 peakdB = 10 * log10 (filter->last_peak[i] + EPSILON); in gst_level_post_message()
777 decaydB = 10 * log10 (filter->decay_peak[i] + EPSILON); in gst_level_post_message()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/
DComplexUnitsConverter.java25 public static final BigDecimal EPSILON = BigDecimal.valueOf(Math.ulp(1.0)); field in ComplexUnitsConverter
26 public static final BigDecimal EPSILON_MULTIPLIER = BigDecimal.valueOf(1).add(EPSILON);
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dgstglmatrix.c31 #define EPSILON 0.0001f macro
32 #define FEQ(a,b) (fabs(a-b) < EPSILON)
/third_party/rust/crates/minimal-lexical/tests/
Dlibm_tests.rs51 const POS_SMALL_FLOATS: &[f64] = &[(1.0 / 2.0), f64::MIN_POSITIVE, f64::EPSILON];
52 const NEG_SMALL_FLOATS: &[f64] = &[-(1.0 / 2.0), -f64::MIN_POSITIVE, -f64::EPSILON];
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/
DUnitsTest.java97 … "foot", "foot-and-inch", BigDecimal.valueOf(2.0).subtract(ComplexUnitsConverter.EPSILON),
103 ComplexUnitsConverter.EPSILON.multiply(BigDecimal.valueOf(3.0))),
106 ComplexUnitsConverter.EPSILON.multiply(
123 BigDecimal.valueOf(2.0).subtract(ComplexUnitsConverter.EPSILON),
/third_party/jerryscript/jerry-core/ecma/base/
Decma-helpers-conversion.c281 #define EPSILON 0.0000001 macro
888 JERRY_ASSERT (fabs (fmod (val, 1.0)) < EPSILON); in ecma_number_of_digits()
949 if (fabs (integer_part) < EPSILON) in ecma_double_to_binary_floating_point()
/third_party/typescript/src/lib/
Des2015.core.d.ts199 readonly EPSILON: number; property
/third_party/typescript/lib/
Dlib.es2015.core.d.ts219 readonly EPSILON: number; property
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
DTimeZoneAliasTest.java165 static private final long EPSILON = HOUR/4; field in TimeZoneAliasTest.Zone
285 while (low - high > EPSILON) { in Zone()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/timezone/
DTimeZoneAliasTest.java168 static private final long EPSILON = HOUR/4; field in TimeZoneAliasTest.Zone
288 while (low - high > EPSILON) { in Zone()
/third_party/protobuf/python/google/protobuf/internal/
Ddescriptor_pool_test1.proto48 EPSILON = 5; enumerator
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DCompositionExclusions.txt157 # 1F73 GREEK SMALL LETTER EPSILON WITH OXIA
165 # 1FC9 GREEK CAPITAL LETTER EPSILON WITH OXIA
/third_party/icu/ohos_icu4j/src/main/tests/resources/ohos/global/icu/dev/data/unicode/
DCompositionExclusions.txt157 # 1F73 GREEK SMALL LETTER EPSILON WITH OXIA
165 # 1FC9 GREEK CAPITAL LETTER EPSILON WITH OXIA
/third_party/node/test/parallel/
Dtest-fs-stat-date.mjs47 margin += Number.EPSILON;
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DJsonFormat.java1831 private static final double EPSILON = 1e-6; field in JsonFormat.ParserImpl
1849 if (value > Float.MAX_VALUE * (1.0 + EPSILON) in parseFloat()
1850 || value < -Float.MAX_VALUE * (1.0 + EPSILON)) { in parseFloat()
1861 private static final BigDecimal MORE_THAN_ONE = new BigDecimal(String.valueOf(1.0 + EPSILON));
/third_party/mesa3d/src/gallium/auxiliary/tessellator/
Dtessellator.cpp603 #define EPSILON 0.0000152587890625f // 2^(-16), min positive fixed point fraction in QuadProcessTessFactors() macro
604 …ine MIN_ODD_TESSFACTOR_PLUS_HALF_EPSILON (PIPE_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR + EPSILON/2) in QuadProcessTessFactors()
615 lowerBound = PIPE_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR + EPSILON; in QuadProcessTessFactors()
1127 lowerBound = PIPE_TESSELLATOR_MIN_ODD_TESSELLATION_FACTOR + EPSILON; in TriProcessTessFactors()
/third_party/libinput/test/
Dlitest.h189 const double EPSILON = 1.0/256; \
192 if (!((_a) op_ (_b)) && fabs((_a) - (_b)) > EPSILON) \
/third_party/pcre2/pcre2/maint/Unicode.tables/
DDerivedCoreProperties.txt27 03F4..03F5 ; Math # L& [2] GREEK CAPITAL THETA SYMBOL..GREEK LUNATE EPSILON SYMBOL
28 03F6 ; Math # Sm GREEK REVERSED LUNATE EPSILON SYMBOL
203 1D6DC..1D6FA ; Math # L& [31] MATHEMATICAL BOLD EPSILON SYMBOL..MATHEMATICAL ITALIC CAPITAL OMEGA
207 1D716..1D734 ; Math # L& [31] MATHEMATICAL ITALIC EPSILON SYMBOL..MATHEMATICAL BOLD ITALIC CAPITA…
211 1D750..1D76E ; Math # L& [31] MATHEMATICAL BOLD ITALIC EPSILON SYMBOL..MATHEMATICAL SANS-SERIF BO…
215 1D78A..1D7A8 ; Math # L& [31] MATHEMATICAL SANS-SERIF BOLD EPSILON SYMBOL..MATHEMATICAL SANS-SERI…
219 1D7C4..1D7CB ; Math # L& [8] MATHEMATICAL SANS-SERIF BOLD ITALIC EPSILON SYMBOL..MATHEMATICAL BO…
290 0388..038A ; Alphabetic # L& [3] GREEK CAPITAL LETTER EPSILON WITH TONOS..GREEK CAPITAL LETTER…
293 03A3..03F5 ; Alphabetic # L& [83] GREEK CAPITAL LETTER SIGMA..GREEK LUNATE EPSILON SYMBOL
725 …ic # L& [278] LATIN CAPITAL LETTER A WITH RING BELOW..GREEK SMALL LETTER EPSILON WITH DASIA AND OX…
[all …]
/third_party/jerryscript/jerry-core/lit/
Dlit-magic-strings.ini206 LIT_MAGIC_STRING_EPSILON_U = "EPSILON"
/third_party/icu/icu4c/source/data/unidata/
DCaseFolding.txt302 0388; C; 03AD; # GREEK CAPITAL LETTER EPSILON WITH TONOS
313 0395; C; 03B5; # GREEK CAPITAL LETTER EPSILON
357 03F5; C; 03B5; # GREEK LUNATE EPSILON SYMBOL
791 1F18; C; 1F10; # GREEK CAPITAL LETTER EPSILON WITH PSILI
792 1F19; C; 1F11; # GREEK CAPITAL LETTER EPSILON WITH DASIA
793 1F1A; C; 1F12; # GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA
794 1F1B; C; 1F13; # GREEK CAPITAL LETTER EPSILON WITH DASIA AND VARIA
795 1F1C; C; 1F14; # GREEK CAPITAL LETTER EPSILON WITH PSILI AND OXIA
796 1F1D; C; 1F15; # GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA
924 1FC8; C; 1F72; # GREEK CAPITAL LETTER EPSILON WITH VARIA
[all …]

123