/third_party/json/tests/src/ |
H A D | unit-comparison.cpp | 65 constexpr auto f_ = false; variable 105 {f_, _t, _t, _t, _t, _t, _t, _t, _t, f_}, // 0 106 {f_, f_, _t, _t, _t, _t, _t, _t, _t, f_}, // 1 107 {f_, f_, f_, f_, f [all...] |
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
H A 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_ in Multiply() 131 uint64_t f_; global() member in double_conversion::DiyFp [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A 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_ in Multiply() 145 uint64_t f_; global() member in double_conversion::DiyFp [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A 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_ in Multiply() 145 uint64_t f_; global() member in double_conversion::DiyFp [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A 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_ in Multiply() 145 uint64_t f_; global() member in double_conversion::DiyFp [all...] |
/third_party/node/deps/v8/src/base/numbers/ |
H A D | diy-fp.h | 25 DiyFp() : f_(0), e_(0) {} in DiyFp() 26 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} in DiyFp() 34 DCHECK(f_ >= other.f_); in Subtract() 35 f_ -= other.f_; in Subtract() 58 DCHECK_NE(f_, 0); in Normalize() 59 uint64_t f = f_; in Normalize() 73 f_ = f; in Normalize() 83 uint64_t f() const { return f_; } in f() 92 uint64_t f_; global() member in v8::base::DiyFp [all...] |
H A D | diy-fp.cc | 18 uint64_t a = f_ >> 32; in Multiply() 19 uint64_t b = f_ & kM32; in Multiply() 20 uint64_t c = other.f_ >> 32; in Multiply() 21 uint64_t d = other.f_ & kM32; in Multiply() 32 f_ = result_f; in Multiply()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
H A D | civil_time_detail.h | 379 CONSTEXPR_M civil_time() noexcept : f_{1970, 1, 1, 0, 0, 0} {} 393 : civil_time(ct.f_) {} in civil_time() 397 : civil_time(ct.f_) {} in civil_time() 410 CONSTEXPR_M year_t year() const noexcept { return f_.y; } 411 CONSTEXPR_M int month() const noexcept { return f_.m; } 412 CONSTEXPR_M int day() const noexcept { return f_.d; } 413 CONSTEXPR_M int hour() const noexcept { return f_.hh; } 414 CONSTEXPR_M int minute() const noexcept { return f_.mm; } 415 CONSTEXPR_M int second() const noexcept { return f_.ss; } 439 return civil_time(step(T{}, a.f_, 467 fields f_; global() member in absl::time_internal::cctz::detail::civil_time [all...] |
/third_party/skia/third_party/externals/tint/src/utils/ |
H A D | defer.h | 31 explicit Defer(F&& f) : f_(std::move(f)) {} in Defer() 38 ~Defer() { f_(); } in ~Defer() 44 F f_; member in tint::utils::Defer
|
/third_party/node/deps/v8/src/utils/ |
H A D | ostreams.cc | 70 OFStreamBase::OFStreamBase(FILE* f) : f_(f) {} in OFStreamBase() 73 std::fflush(f_); in sync() 78 return (c != EOF) ? std::fputc(c, f_) : c; in overflow() 83 std::fwrite(s, 1, static_cast<size_t>(n), f_)); in xsputn()
|
H A D | ostreams.h | 29 FILE* const f_; member in v8::internal::OFStreamBase
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A 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_; member in absl::strings_internal::DereferenceFormatterImpl
|
/third_party/mesa3d/src/asahi/compiler/ |
H A D | agx_minifloat.h | 81 float f_ = agx_minifloat_decode(agx_minifloat_encode(f)); 82 return memcmp(&f, &f_, sizeof(float)) == 0;
|
/third_party/vixl/src/aarch32/ |
H A D | operands-aarch32.h | 286 return imm_.f_; in GetImmediate() 290 if (immediate_type_.Is(F32)) return static_cast<double>(imm_.f_); in GetImmediate() 300 if (immediate_type_.Is(F32)) return imm_.f_ == 0.0f; in IsFloatZero() 315 (immediate_type_.Is(F32) && (imm_.f_ == 0.0f)) || in CanConvert() 321 (immediate_type_.Is(F32) && (imm_.f_ == 0.0f)) || in CanConvert() 341 float f_; member 347 NeonImmediateType(float f) : f_(f) {} in NeonImmediateType()
|
H A D | operands-aarch32.cc | 85 if (neon_imm.imm_.f_ == 0) { in operator <<() 89 return os << "#" << std::setprecision(9) << neon_imm.imm_.f_; in operator <<()
|
/third_party/skia/modules/skunicode/src/ |
H A D | SkUnicode_icu.h | 52 #define SKICU_FUNC(funcname) decltype(funcname)* f_##funcname;
|
H A D | SkUnicode_icu_runtime.cpp | 71 #define SKICU_FUNC(fname) *(void**)(&lib.f_##fname) = resolve_sym(dlhnd, #fname, true); in SkLoadICULib()
|
H A D | SkUnicode_icu.cpp | 41 return ICULib()->f_##funcname(std::forward<Args>(args)...); \
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A 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()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A 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/tests/ |
H A D | SkVxTest.cpp | 306 float8 f_ = 3*b*xx + a; 311 err_ = (f_*g - f*g_)/gg + 1/q; 318 float8 err__ = ((f__*g - f*g__)*g - (f_*g - f*g_)*2*g_) / (gg*g) + x/((1 - xx)*q);
|
/third_party/json/include/nlohmann/detail/conversions/ |
H A D | to_chars.hpp | 64 constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} in e()
|
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-spec-builders.h | 1392 explicit Cleanup(std::function<void()> f) : f_(std::move(f)) {} 1393 ~Cleanup() { f_(); } 1396 std::function<void()> f_;
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | TranslatorVulkan.cpp | 672 // vec2 f_ = f.yx; 674 // vec2 i = abs(p - f + (d / d_) * (f_ - p_)); 735 // vec2 f_ = f.yx in AddBresenhamEmulationFS() 737 TVariable *f_ = CreateTempVariable(symbolTable, vec2Type); in AddBresenhamEmulationFS() local 738 TIntermDeclaration *f_decl = CreateTempInitDeclarationNode(f_, fyx); in AddBresenhamEmulationFS() 740 // vec2 i = abs(p - f + (d/d_) * (f_ - p_)) in AddBresenhamEmulationFS() 742 TIntermBinary *fp = new TIntermBinary(EOpSub, new TIntermSymbol(f_), new TIntermSymbol(p_)); in AddBresenhamEmulationFS()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | wpa_auth_ft.c | 597 &f_##field##_len, &f_##field) < 0 || \ 598 (checklength > 0 && ((size_t) checklength) != f_##field##_len)) { \ 613 &f_##field##_len, &f_##field) < 0 || \ 614 (checklength > 0 && ((size_t) checklength) != f_##field##_len)) { \ 617 f_##field##_len = 0; \ 618 f_##field = NULL; \
|