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

12

/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddiy-fp.h46 DiyFp() : f_(0), e_(0) {}
47 DiyFp(uint64_t f, int e) : f_(f), e_(e) {}
55 ASSERT(f_ >= other.f_);
56 f_ -= other.f_;
80 ASSERT(f_ != 0);
81 uint64_t f = f_;
95 f_ = f;
105 uint64_t f() const { return f_; }
114 uint64_t f_; member in class:WTF::double_conversion::DiyFp
[all...]
H A Ddiy-fp.cc43 uint64_t a = f_ >> 32;
44 uint64_t b = f_ & kM32;
45 uint64_t c = other.f_ >> 32;
46 uint64_t d = other.f_ & kM32;
57 f_ = result_f;
/external/chromium_org/v8/src/
H A Ddiy-fp.h43 DiyFp() : f_(0), e_(0) {}
44 DiyFp(uint64_t f, int e) : f_(f), e_(e) {}
52 ASSERT(f_ >= other.f_);
53 f_ -= other.f_;
77 ASSERT(f_ != 0);
78 uint64_t f = f_;
92 f_ = f;
102 uint64_t f() const { return f_; }
111 uint64_t f_; member in class:v8::internal::DiyFp
[all...]
H A Ddiy-fp.cc42 uint64_t a = f_ >> 32;
43 uint64_t b = f_ & kM32;
44 uint64_t c = other.f_ >> 32;
45 uint64_t d = other.f_ & kM32;
56 f_ = result_f;
/external/v8/src/
H A Ddiy-fp.h43 DiyFp() : f_(0), e_(0) {}
44 DiyFp(uint64_t f, int e) : f_(f), e_(e) {}
52 ASSERT(f_ >= other.f_);
53 f_ -= other.f_;
77 ASSERT(f_ != 0);
78 uint64_t f = f_;
92 f_ = f;
102 uint64_t f() const { return f_; }
111 uint64_t f_; member in class:v8::internal::DiyFp
[all...]
H A Ddiy-fp.cc42 uint64_t a = f_ >> 32;
43 uint64_t b = f_ & kM32;
44 uint64_t c = other.f_ >> 32;
45 uint64_t d = other.f_ & kM32;
56 f_ = result_f;
/external/chromium_org/third_party/skia/include/svg/
H A DSkSVGAttribute.h27 #define SVG_ATTRIBUTE(attr) { #attr, SK_OFFSETOF(BASE_CLASS, f_##attr) }
35 if (f_##attr.size() > 0) \
36 parser._addAttributeLen(#attr, f_##attr.c_str(), f_##attr.size())
39 if (f_##alias.size() > 0) \
40 parser._addAttributeLen(#attr, f_##alias.c_str(), f_##alias.size())
/external/skia/include/svg/
H A DSkSVGAttribute.h27 #define SVG_ATTRIBUTE(attr) { #attr, SK_OFFSETOF(BASE_CLASS, f_##attr) }
35 if (f_##attr.size() > 0) \
36 parser._addAttributeLen(#attr, f_##attr.c_str(), f_##attr.size())
39 if (f_##alias.size() > 0) \
40 parser._addAttributeLen(#attr, f_##alias.c_str(), f_##alias.size())
/external/valgrind/unittest/
H A Dold_test_suite.h65 void_func_void_t f_; member in struct:Test
69 : f_(f)
73 Test() : f_(0), flags_(0) {}
77 f_();
82 f_();
/external/chromium_org/media/audio/
H A Dsimple_sources.h43 double f_; member in class:media::SineWaveAudioSource
H A Dsimple_sources.cc22 f_(freq / sample_freq),
43 audio_bus->channel(0)[i] = sin(2.0 * M_PI * f_ * time_state_++);
/external/openfst/src/include/fst/
H A Dcompose-filter.h227 f_(kNoStateId) {}
236 f_(kNoStateId) {}
246 if (s1_ == s1 && s2_ == s2 && f == f_)
250 f_ = f;
263 return f_ != FilterState(0) ? FilterState::NoState() : FilterState(0);
282 FilterState f_; // Current filter state member in class:fst::SequenceComposeFilter
312 f_(kNoStateId) {}
321 f_(kNoStateId) {}
331 if (s1_ == s1 && s2_ == s2 && f == f_)
335 f_
367 FilterState f_; // Current filter state member in class:fst::AltSequenceComposeFilter
468 FilterState f_; // Current filter state ID member in class:fst::MatchComposeFilter
[all...]
H A Dlookahead-filter.h348 f_(FilterState::NoState()) {}
354 f_(FilterState::NoState()) {}
361 f_ = f;
375 const FilterState2 &f2 = f_.GetState2();
387 const FilterState2 &f2 = f_.GetState2();
409 FilterState f_; // Current filter state member in class:fst::PushWeightsComposeFilter
442 f_(FilterState::NoState()),
457 f_(FilterState::NoState()),
475 f_ = f;
483 const FilterState2 &f2 = f_
601 FilterState f_ ; // Current filter state member in class:fst::PushLabelsComposeFilter
[all...]
/external/ceres-solver/internal/ceres/
H A Dloss_function.cc118 : f_(CHECK_NOTNULL(f)),
126 f_.release();
136 f_->Evaluate(rho_g[0], rho_f);
/external/chromium/base/
H A Dstl_util-inl.h349 UnaryOperateOnFirst(const UnaryOp& f) : f_(f) {
353 return f_(p.first);
357 UnaryOp f_; member in class:UnaryOperateOnFirst
372 UnaryOperateOnSecond(const UnaryOp& f) : f_(f) {
376 return f_(p.second);
380 UnaryOp f_; member in class:UnaryOperateOnSecond
395 BinaryOperateOnFirst(const BinaryOp& f) : f_(f) {
400 return f_(p1.first, p2.first);
404 BinaryOp f_; member in class:BinaryOperateOnFirst
419 BinaryOperateOnSecond(const BinaryOp& f) : f_(
428 BinaryOp f_; member in class:BinaryOperateOnSecond
[all...]
H A Dbind_internal.h387 return invoker->f_();
397 return invoker->f_(x1);
408 return invoker->f_(x1, x2);
421 return invoker->f_(x1, x2, x3);
435 return invoker->f_(x1, x2, x3, x4);
450 return invoker->f_(x1, x2, x3, x4, x5);
466 return invoker->f_(x1, x2, x3, x4, x5, x6);
478 return invoker->f_(Unwrap(invoker->p1_));
487 return (Unwrap(invoker->p1_)->*invoker->f_)();
497 return invoker->f_(Unwra
1028 Sig f_; member in class:base::internal::InvokerStorage0
1067 Sig f_; member in class:base::internal::InvokerStorage1
1111 Sig f_; member in class:base::internal::InvokerStorage2
1160 Sig f_; member in class:base::internal::InvokerStorage3
1214 Sig f_; member in class:base::internal::InvokerStorage4
1275 Sig f_; member in class:base::internal::InvokerStorage5
1341 Sig f_; member in class:base::internal::InvokerStorage6
[all...]
/external/openfst/src/include/fst/extensions/pdt/
H A Dcompose.h302 f_(FilterState::NoState()),
324 f_(FilterState::NoState()),
333 f_ = f;
334 filter_.SetState(s1, s2, f_.GetState1());
354 const FilterState2 &f2 = f_.GetState2();
378 if (f_.GetState2().GetState() != 0)
410 FilterState f_; // Current filter state member in class:fst::ParenFilter
/external/ceres-solver/include/ceres/
H A Dloss_function.h287 internal::scoped_ptr<const LossFunction> f_, g_; member in class:ceres::ComposedLoss
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-checker_unittest.cc183 inline Callback0(FunctionSignature f) : f_(f) {}
184 virtual void Run() { (*f_)(); delete this; }
187 FunctionSignature f_; member in class:Callback0
194 inline Callback1<P1>(FunctionSignature f, P1 p1) : f_(f), p1_(p1) {}
195 virtual void Run() { (*f_)(p1_); delete this; }
198 FunctionSignature f_; member in class:Callback1
206 inline Callback2<P1,P2>(FunctionSignature f, P1 p1, P2 p2) : f_(f), p1_(p1), p2_(p2) {}
207 virtual void Run() { (*f_)(p1_, p2_); delete this; }
210 FunctionSignature f_; member in class:Callback2
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-checker_unittest.cc183 inline Callback0(FunctionSignature f) : f_(f) {}
184 virtual void Run() { (*f_)(); delete this; }
187 FunctionSignature f_; member in class:Callback0
194 inline Callback1<P1>(FunctionSignature f, P1 p1) : f_(f), p1_(p1) {}
195 virtual void Run() { (*f_)(p1_); delete this; }
198 FunctionSignature f_; member in class:Callback1
206 inline Callback2<P1,P2>(FunctionSignature f, P1 p1, P2 p2) : f_(f), p1_(p1), p2_(p2) {}
207 virtual void Run() { (*f_)(p1_, p2_); delete this; }
210 FunctionSignature f_; member in class:Callback2
/external/clang/test/SemaCXX/
H A Dmember-pointer.cpp279 F f_; member in struct:PR9973::dm
281 { return u->*f_; } // expected-error{{reference to non-static member function must be called; did you mean to call it with no arguments?}} expected-error {{non-const lvalue reference to type 'int' cannot bind to a temporary of type 'int'}}
/external/chromium_org/third_party/mesa/src/include/CL/
H A Dcl.hpp967 Func f_; const Arg0& arg0_; member in struct:cl::detail::GetInfoFunctor0
970 { return f_(arg0_, param, size, value, size_ret); }
976 Func f_; const Arg0& arg0_; const Arg1& arg1_; member in struct:cl::detail::GetInfoFunctor1
979 { return f_(arg0_, arg1_, param, size, value, size_ret); }
/external/mesa3d/include/CL/
H A Dcl.hpp967 Func f_; const Arg0& arg0_; member in struct:cl::detail::GetInfoFunctor0
970 { return f_(arg0_, param, size, value, size_ret); }
976 Func f_; const Arg0& arg0_; const Arg1& arg1_; member in struct:cl::detail::GetInfoFunctor1
979 { return f_(arg0_, arg1_, param, size, value, size_ret); }
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp159 void_func_void_t f_; member in struct:Test
162 : f_(f)
165 Test() : f_(0), flags_(0) {}
170 f_();
174 f_();
/external/chromium_org/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js[all...]

Completed in 1693 milliseconds

12