/third_party/icu/vendor/double-conversion/upstream/test/cctest/ |
H A D | test-ieee.cc | 56 CHECK_EQ(2.9988165487136453e-38f, Single(ordered).value()); in TEST() 59 CHECK_EQ(1.4e-45f, Single(min_float32).value()); in TEST() 62 CHECK_EQ(3.4028234e38f, Single(max_float32).value()); in TEST() 88 DiyFp diy_fp = Single(ordered).AsDiyFp(); in TEST() 94 diy_fp = Single(min_float32).AsDiyFp(); in TEST() 100 diy_fp = Single(max_float32).AsDiyFp(); in TEST() 139 CHECK(Single(min_float32).IsDenormal()); in TEST() 141 CHECK(Single(bits).IsDenormal()); in TEST() 143 CHECK(!Single(bits).IsDenormal()); in TEST() 171 CHECK(Single(Singl in TEST() [all...] |
H A D | test-strtod.cc | 802 CHECK_EQ(Single::Infinity(), StrtofChar("3", 39)); in TEST() 806 CHECK_EQ(Single::Infinity(), StrtofChar("3410", 35)); in TEST() 808 CHECK_EQ(Single::Infinity(), StrtofChar("0000001", 39)); in TEST() 811 CHECK_EQ(Single::Infinity(), StrtofChar("0000003410", 35)); in TEST() 816 CHECK_EQ(Single::Infinity(), StrtofChar("341000000", 30)); in TEST() 821 CHECK_EQ(Single::Infinity(), StrtofChar("00000341000000", 30)); in TEST() 825 CHECK_EQ(Single::Infinity(), StrtofChar("34028235678", 28)); in TEST() 1009 CHECK_EQ(Single::Infinity(), StrtofTrimmedChar("3", 39)); in TEST() 1016 CHECK_EQ(Single::Infinity(), StrtofTrimmedChar("34028235678", 28)); in TEST() 1190 Single in CheckFloat() [all...] |
/third_party/gn/infra/recipe_modules/macos_sdk/ |
H A D | __init__.py | 15 from recipe_engine.config import ConfigGroup, Single namespace 29 sdk_version=Single(str), 32 tool_pkg=Single(str), 33 tool_ver=Single(str),
|
/third_party/gn/infra/recipe_modules/windows_sdk/ |
H A D | __init__.py | 15 from recipe_engine.config import ConfigGroup, Single namespace 24 sdk_package=Single(str), 25 sdk_version=Single(str)),
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A D | ieee.h | 286 class Single { class 296 Single() : d32_(0) {} in Single() function in double_conversion::Single 297 explicit Single(float f) : d32_(float_to_uint32(f)) {} in Single() function in double_conversion::Single 298 explicit Single(uint32_t d32) : d32_(d32) {} in Single() function in double_conversion::Single 300 // The value encoded by this Single must be greater or equal to +0.0. 382 // Precondition: the value encoded by this Single must be greater than 0. 399 // Precondition: the value encoded by this Single must be greater or equal 422 return Single(kInfinity).value(); in Infinity() 426 return Single(kNaN).value(); in NaN() 442 DOUBLE_CONVERSION_DISALLOW_COPY_AND_ASSIGN(Single); [all...] |
H A D | bignum-dtoa.cc | 99 significand = Single(f).Significand(); in BignumDtoa() 100 exponent = Single(f).Exponent(); in BignumDtoa() 101 lower_boundary_is_closer = Single(f).LowerBoundaryIsCloser(); in BignumDtoa()
|
H A D | strtod.cc | 512 return Single::Infinity(); 593 upper_boundary = Single(guess).UpperBoundary(); 600 } else if ((Single(guess).Significand() & 1) == 0) {
|
/third_party/icu/icu4c/source/i18n/ |
H A D | double-conversion-ieee.h | 300 class Single { class 310 Single() : d32_(0) {} in Single() function in double_conversion::Single 311 explicit Single(float f) : d32_(float_to_uint32(f)) {} in Single() function in double_conversion::Single 312 explicit Single(uint32_t d32) : d32_(d32) {} in Single() function in double_conversion::Single 314 // The value encoded by this Single must be greater or equal to +0.0. 396 // Precondition: the value encoded by this Single must be greater than 0. 413 // Precondition: the value encoded by this Single must be greater or equal 436 return Single(kInfinity).value(); in Infinity() 440 return Single(kNaN).value(); in NaN() 456 DOUBLE_CONVERSION_DISALLOW_COPY_AND_ASSIGN(Single); [all...] |
H A D | double-conversion-bignum-dtoa.cpp | 113 significand = Single(f).Significand(); in BignumDtoa() 114 exponent = Single(f).Exponent(); in BignumDtoa() 115 lower_boundary_is_closer = Single(f).LowerBoundaryIsCloser(); in BignumDtoa()
|
H A D | double-conversion-strtod.cpp | 528 return Single::Infinity(); 609 upper_boundary = Single(guess).UpperBoundary(); 616 } else if ((Single(guess).Significand() & 1) == 0) {
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | double-conversion-ieee.h | 300 class Single { class 310 Single() : d32_(0) {} in Single() function in double_conversion::Single 311 explicit Single(float f) : d32_(float_to_uint32(f)) {} in Single() function in double_conversion::Single 312 explicit Single(uint32_t d32) : d32_(d32) {} in Single() function in double_conversion::Single 314 // The value encoded by this Single must be greater or equal to +0.0. 396 // Precondition: the value encoded by this Single must be greater than 0. 413 // Precondition: the value encoded by this Single must be greater or equal 436 return Single(kInfinity).value(); in Infinity() 440 return Single(kNaN).value(); in NaN() 456 DOUBLE_CONVERSION_DISALLOW_COPY_AND_ASSIGN(Single); [all...] |
H A D | double-conversion-bignum-dtoa.cpp | 113 significand = Single(f).Significand(); in BignumDtoa() 114 exponent = Single(f).Exponent(); in BignumDtoa() 115 lower_boundary_is_closer = Single(f).LowerBoundaryIsCloser(); in BignumDtoa()
|
H A D | double-conversion-strtod.cpp | 528 return Single::Infinity(); 609 upper_boundary = Single(guess).UpperBoundary(); 616 } else if ((Single(guess).Significand() & 1) == 0) {
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-ieee.h | 287 class Single { class 297 Single() : d32_(0) {} in Single() function in double_conversion::Single 298 explicit Single(float f) : d32_(float_to_uint32(f)) {} in Single() function in double_conversion::Single 299 explicit Single(uint32_t d32) : d32_(d32) {} in Single() function in double_conversion::Single 301 // The value encoded by this Single must be greater or equal to +0.0. 375 // Precondition: the value encoded by this Single must be greater than 0. 392 // Precondition: the value encoded by this Single must be greater or equal 415 return Single(kInfinity).value(); in Infinity() 419 return Single(kNaN).value(); in NaN() 431 DOUBLE_CONVERSION_DISALLOW_COPY_AND_ASSIGN(Single); [all...] |
H A D | double-conversion-bignum-dtoa.cpp | 113 significand = Single(f).Significand(); in BignumDtoa() 114 exponent = Single(f).Exponent(); in BignumDtoa() 115 lower_boundary_is_closer = Single(f).LowerBoundaryIsCloser(); in BignumDtoa()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBTypes.h | 398 Single, enumerator 422 explicit Variant(float V) : Type(PDB_VariantType::Single) { in Variant() 423 Value.Single = V; in Variant() 457 float Single; member 479 VARIANT_EQUAL_CASE(Single) in operator ==()
|
/third_party/googletest/googletest/test/ |
H A D | gtest_xml_output_unittest_.cc | 164 INSTANTIATE_TEST_SUITE_P(Single, ValueParamTest, Values(33, 42)); 181 INSTANTIATE_TYPED_TEST_SUITE_P(Single, TypeParameterizedTestSuite,
|
H A D | gtest_list_output_unittest_.cc | 70 INSTANTIATE_TYPED_TEST_SUITE_P(Single, TypeParameterizedTestSuite,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/ |
H A D | TargetOptions.h | 41 Single, // Use a single table for all indirect jumptable calls. enumerator 53 Single // Single Threaded Environment enumerator
|
/third_party/PyYAML/examples/pygments-lexer/ |
H A D | yaml.py | 174 (r'#[^\n]*', Comment.Single), 195 (r'#[^\n]*', Comment.Single), 287 (r'#[^\n]*', Comment.Single),
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
H A D | generator_magic_number_test.cpp | 32 TEST_P(GeneratorMagicNumberTest, Single) { in TEST_P()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
H A D | generator_magic_number_test.cpp | 32 TEST_P(GeneratorMagicNumberTest, Single) { in TEST_P()
|
/third_party/spirv-tools/test/ |
H A D | generator_magic_number_test.cpp | 32 TEST_P(GeneratorMagicNumberTest, Single) { in TEST_P()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
H A D | CodeViewYAMLTypes.h | 62 LLVM_YAML_DECLARE_SCALAR_TRAITS(codeview::GUID, QuotingType::Single)
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/ |
H A D | Operation.java | 190 // One output state reached by a single input; then it's a "Single" operation. in from() 191 return new Operation.Single(isTerminating, numberOfTrailingZeros(digitMask), outStates); in from() 244 private static final class Single extends Operation { class in Operation 248 Single(boolean isTerminating, int digit, ImmutableList<DfaNode> outs) { in Single() method in Operation.Single
|