/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
D | diy-fp.h | 45 DiyFp() : f_(0), e_(0) {} in DiyFp() 46 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 54 DOUBLE_CONVERSION_ASSERT(f_ >= other.f_); in Subtract() 55 f_ -= other.f_; in Subtract() 74 const uint64_t a = f_ >> 32; in Multiply() 75 const uint64_t b = f_ & kM32; in Multiply() 76 const uint64_t c = other.f_ >> 32; in Multiply() 77 const uint64_t d = other.f_ & kM32; in Multiply() 86 f_ = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32); in Multiply() 97 DOUBLE_CONVERSION_ASSERT(f_ != 0); in Normalize() [all …]
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | double-conversion-diy-fp.h | 59 DiyFp() : f_(0), e_(0) {} in DiyFp() 60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 68 DOUBLE_CONVERSION_ASSERT(f_ >= other.f_); in Subtract() 69 f_ -= other.f_; in Subtract() 88 const uint64_t a = f_ >> 32; in Multiply() 89 const uint64_t b = f_ & kM32; in Multiply() 90 const uint64_t c = other.f_ >> 32; in Multiply() 91 const uint64_t d = other.f_ & kM32; in Multiply() 100 f_ = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32); in Multiply() 111 DOUBLE_CONVERSION_ASSERT(f_ != 0); in Normalize() [all …]
|
/third_party/node/deps/icu-small/source/i18n/ |
D | double-conversion-diy-fp.h | 59 DiyFp() : f_(0), e_(0) {} in DiyFp() 60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 68 DOUBLE_CONVERSION_ASSERT(f_ >= other.f_); in Subtract() 69 f_ -= other.f_; in Subtract() 88 const uint64_t a = f_ >> 32; in Multiply() 89 const uint64_t b = f_ & kM32; in Multiply() 90 const uint64_t c = other.f_ >> 32; in Multiply() 91 const uint64_t d = other.f_ & kM32; in Multiply() 100 f_ = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32); in Multiply() 111 DOUBLE_CONVERSION_ASSERT(f_ != 0); in Normalize() [all …]
|
/third_party/icu/icu4c/source/i18n/ |
D | double-conversion-diy-fp.h | 59 DiyFp() : f_(0), e_(0) {} in DiyFp() 60 DiyFp(const uint64_t significand, const int32_t exponent) : f_(significand), e_(exponent) {} in DiyFp() 68 DOUBLE_CONVERSION_ASSERT(f_ >= other.f_); in Subtract() 69 f_ -= other.f_; in Subtract() 88 const uint64_t a = f_ >> 32; in Multiply() 89 const uint64_t b = f_ & kM32; in Multiply() 90 const uint64_t c = other.f_ >> 32; in Multiply() 91 const uint64_t d = other.f_ & kM32; in Multiply() 100 f_ = ac + (ad >> 32) + (bc >> 32) + (tmp >> 32); in Multiply() 111 DOUBLE_CONVERSION_ASSERT(f_ != 0); in Normalize() [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | double-conversion-diy-fp.h | 58 DiyFp() : f_(0), e_(0) {} in DiyFp() 59 DiyFp(uint64_t significand, int exponent) : f_(significand), e_(exponent) {} in DiyFp() 67 ASSERT(f_ >= other.f_); in Subtract() 68 f_ -= other.f_; in Subtract() 92 ASSERT(f_ != 0); in Normalize() 93 uint64_t significand = f_; in Normalize() 107 f_ = significand; in Normalize() 117 uint64_t f() const { return f_; } in f() 120 void set_f(uint64_t new_value) { f_ = new_value; } in set_f() 126 uint64_t f_; variable
|
D | double-conversion-diy-fp.cpp | 53 uint64_t a = f_ >> 32; in Multiply() 54 uint64_t b = f_ & kM32; in Multiply() 55 uint64_t c = other.f_ >> 32; in Multiply() 56 uint64_t d = other.f_ & kM32; in Multiply() 67 f_ = result_f; in Multiply()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
D | civil_time_detail.h | 379 CONSTEXPR_M civil_time() noexcept : f_{1970, 1, 1, 0, 0, 0} {} in civil_time() 393 : civil_time(ct.f_) {} 397 : civil_time(ct.f_) {} 410 CONSTEXPR_M year_t year() const noexcept { return f_.y; } in year() 411 CONSTEXPR_M int month() const noexcept { return f_.m; } in month() 412 CONSTEXPR_M int day() const noexcept { return f_.d; } in day() 413 CONSTEXPR_M int hour() const noexcept { return f_.hh; } in hour() 414 CONSTEXPR_M int minute() const noexcept { return f_.mm; } in minute() 415 CONSTEXPR_M int second() const noexcept { return f_.ss; } in second() 439 return civil_time(step(T{}, a.f_, n)); [all …]
|
/third_party/skia/third_party/externals/tint/src/utils/ |
D | defer.h | 31 explicit Defer(F&& f) : f_(std::move(f)) {} in Defer() 38 ~Defer() { f_(); } in ~Defer() 44 F f_; variable
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | str_join_internal.h | 133 DereferenceFormatterImpl() : f_() {} in DereferenceFormatterImpl() 135 : f_(std::forward<Formatter>(f)) {} in DereferenceFormatterImpl() 139 f_(out, *t); in operator() 144 f_(out, *t); in operator() 148 Formatter f_;
|
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/discard-in-loop-in-function/ |
D | 0-opt.spvasm | 8 OpName %f_ "f(" 45 %28 = OpFunctionCall %void %f_ 49 %f_ = OpFunction %void None %9
|
D | 0-opt.wgsl | 12 fn f_() { 37 f_();
|
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/return-in-loop-in-function/ |
D | 0-opt.spvasm | 8 OpName %f_ "f(" 56 %39 = OpFunctionCall %float %f_ 68 %f_ = OpFunction %float None %18
|
D | 0-opt.wgsl | 3 fn f_() -> f32 { 40 let x_39 : f32 = f_();
|
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/do-while-false-loops/ |
D | 0-opt.spvasm | 8 OpName %f_ "f(" 45 %35 = OpFunctionCall %v3float %f_ 53 %f_ = OpFunction %v3float None %21
|
D | 0-opt.wgsl | 3 fn f_() -> vec3<f32> { 40 let x_35 : vec3<f32> = f_();
|
/third_party/mesa3d/src/asahi/compiler/ |
D | agx_minifloat.h | 81 float f_ = agx_minifloat_decode(agx_minifloat_encode(f)); in agx_minifloat_exact() local 82 return memcmp(&f, &f_, sizeof(float)) == 0; in agx_minifloat_exact()
|
/third_party/musl/libc-test/src/math/gen/ |
D | gensanity.sh | 10 d_*|f_*|l_*) ./gen $N >$D/$N.h <<EOF
|
/third_party/skia/modules/skunicode/src/ |
D | SkUnicode_icu.h | 48 #define SKICU_FUNC(funcname) decltype(funcname)* f_##funcname;
|
D | SkUnicode_icu_runtime.cpp | 71 #define SKICU_FUNC(fname) *(void**)(&lib.f_##fname) = resolve_sym(dlhnd, #fname, true); in SkLoadICULib()
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsScissorTests.cpp | 596 …Color(const float f_[4]) : type(FLOAT) { f[0] = f_[0]; f[1] = f_[1]; f[2] = f_[2]; f[3] = f_[3]… in Color()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | type_half.inl | 22 GLM_FUNC_QUALIFIER uif32(float f_) : argument 23 f(f_)
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/ |
D | OpenGLLineSegmentRasterization.md | 43 vec2 f_ = f.yx; 45 vec2 i = abs(p - f + (d/d_) * (f_ - p_));
|
/third_party/flutter/skia/third_party/externals/harfbuzz/src/ |
D | hb-iter.hh | 363 hb_map_iter_t (const Iter& it, Proj f_) : it (it), f (f_) {} in hb_map_iter_t() 433 hb_filter_iter_t (const Iter& it_, Pred p_, Proj f_) : it (it_), p (p_), f (f_) in hb_filter_iter_t()
|
/third_party/skia/tests/ |
D | SkVxTest.cpp | 306 float8 f_ = 3*b*xx + a; in DEF_TEST() local 311 err_ = (f_*g - f*g_)/gg + 1/q; in DEF_TEST() 318 float8 err__ = ((f__*g - f*g__)*g - (f_*g - f*g_)*2*g_) / (gg*g) + x/((1 - xx)*q); in DEF_TEST()
|
/third_party/harfbuzz/src/ |
D | hb-iter.hh | 372 hb_map_iter_t (const Iter& it, Proj f_) : it (it), f (f_) {} in hb_map_iter_t() 442 hb_filter_iter_t (const Iter& it_, Pred p_, Proj f_) : it (it_), p (p_), f (f_) in hb_filter_iter_t()
|