Home
last modified time | relevance | path

Searched refs:f_ (Results 1 – 25 of 50) sorted by relevance

12

/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Ddiy-fp.h45 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/
Ddouble-conversion-diy-fp.h59 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/
Ddouble-conversion-diy-fp.h59 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/
Ddouble-conversion-diy-fp.h59 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/
Ddouble-conversion-diy-fp.h58 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
Ddouble-conversion-diy-fp.cpp53 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/
Dcivil_time_detail.h379 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/
Ddefer.h31 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/
Dstr_join_internal.h133 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/
D0-opt.spvasm8 OpName %f_ "f("
45 %28 = OpFunctionCall %void %f_
49 %f_ = OpFunction %void None %9
D0-opt.wgsl12 fn f_() {
37 f_();
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/return-in-loop-in-function/
D0-opt.spvasm8 OpName %f_ "f("
56 %39 = OpFunctionCall %float %f_
68 %f_ = OpFunction %float None %18
D0-opt.wgsl3 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/
D0-opt.spvasm8 OpName %f_ "f("
45 %35 = OpFunctionCall %v3float %f_
53 %f_ = OpFunction %v3float None %21
D0-opt.wgsl3 fn f_() -> vec3<f32> {
40 let x_35 : vec3<f32> = f_();
/third_party/mesa3d/src/asahi/compiler/
Dagx_minifloat.h81 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/
Dgensanity.sh10 d_*|f_*|l_*) ./gen $N >$D/$N.h <<EOF
/third_party/skia/modules/skunicode/src/
DSkUnicode_icu.h48 #define SKICU_FUNC(funcname) decltype(funcname)* f_##funcname;
DSkUnicode_icu_runtime.cpp71 #define SKICU_FUNC(fname) *(void**)(&lib.f_##fname) = resolve_sym(dlhnd, #fname, true); in SkLoadICULib()
/third_party/vk-gl-cts/modules/glshared/
DglsScissorTests.cpp596 …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/
Dtype_half.inl22 GLM_FUNC_QUALIFIER uif32(float f_) : argument
23 f(f_)
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DOpenGLLineSegmentRasterization.md43 vec2 f_ = f.yx;
45 vec2 i = abs(p - f + (d/d_) * (f_ - p_));
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-iter.hh363 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/
DSkVxTest.cpp306 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/
Dhb-iter.hh372 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()

12