Home
last modified time | relevance | path

Searched refs:f_ (Results 1 - 25 of 30) sorted by relevance

12

/third_party/json/tests/src/
H A Dunit-comparison.cpp65 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 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_ in Multiply()
131 uint64_t f_; global() member in double_conversion::DiyFp
[all...]
/third_party/icu/icu4c/source/i18n/
H A 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_ in Multiply()
145 uint64_t f_; global() member in double_conversion::DiyFp
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A 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_ in Multiply()
145 uint64_t f_; global() member in double_conversion::DiyFp
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A 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_ in Multiply()
145 uint64_t f_; global() member in double_conversion::DiyFp
[all...]
/third_party/node/deps/v8/src/base/numbers/
H A Ddiy-fp.h25 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 Ddiy-fp.cc18 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 Dcivil_time_detail.h379 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 Ddefer.h31 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 Dostreams.cc70 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 Dostreams.h29 FILE* const f_; member in v8::internal::OFStreamBase
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A 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_; member in absl::strings_internal::DereferenceFormatterImpl
/third_party/mesa3d/src/asahi/compiler/
H A Dagx_minifloat.h81 float f_ = agx_minifloat_decode(agx_minifloat_encode(f));
82 return memcmp(&f, &f_, sizeof(float)) == 0;
/third_party/vixl/src/aarch32/
H A Doperands-aarch32.h286 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 Doperands-aarch32.cc85 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 DSkUnicode_icu.h52 #define SKICU_FUNC(funcname) decltype(funcname)* f_##funcname;
H A DSkUnicode_icu_runtime.cpp71 #define SKICU_FUNC(fname) *(void**)(&lib.f_##fname) = resolve_sym(dlhnd, #fname, true); in SkLoadICULib()
H A DSkUnicode_icu.cpp41 return ICULib()->f_##funcname(std::forward<Args>(args)...); \
/third_party/skia/third_party/externals/harfbuzz/src/
H A 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()
/third_party/vk-gl-cts/modules/glshared/
H A 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/tests/
H A DSkVxTest.cpp306 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 Dto_chars.hpp64 constexpr diyfp(std::uint64_t f_, int e_) noexcept : f(f_), e(e_) {} in e()
/third_party/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h1392 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 DTranslatorVulkan.cpp672 // 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 Dwpa_auth_ft.c597 &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; \

Completed in 29 milliseconds

12