HomeSort by relevance Sort by last modified time
    Searched refs:f_ (Results 1 - 25 of 35) sorted by null

1 2

  /prebuilts/ndk/r16/sources/android/ndk_helper/
vecmath.cpp 41 out.x_ = x_ * rhs.f_[0] + y_ * rhs.f_[1] + z_ * rhs.f_[2] + w_ * rhs.f_[3];
42 out.y_ = x_ * rhs.f_[4] + y_ * rhs.f_[5] + z_ * rhs.f_[6] + w_ * rhs.f_[7];
43 out.z_ = x_ * rhs.f_[8] + y_ * rhs.f_[9] + z_ * rhs.f_[10] + w_ * rhs.f_[11]
    [all...]
vecmath.h 749 float f_[16]; member in class:ndk_helper::Mat4
767 ret.f_[i] = f_[i] + rhs.f_[i];
777 ret.f_[i] = f_[i] - rhs.f_[i];
786 f_[i] += rhs.f_[i];
795 f_[i] -= rhs.f_[i]
    [all...]
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
temp-assigned-to-field-init-expected.cc 17 ABuggyCtor() : f_(GetBuggyFoo()) {}
18 scoped_refptr<Foo> f_; member in class:ABuggyCtor
temp-assigned-to-field-init-original.cc 17 ABuggyCtor() : f_(GetBuggyFoo()) {}
18 Foo* f_; member in class:ABuggyCtor
  /external/v8/src/
diy-fp.h 24 DiyFp() : f_(0), e_(0) {}
25 DiyFp(uint64_t f, int e) : f_(f), e_(e) {}
33 DCHECK(f_ >= other.f_);
34 f_ -= other.f_;
58 DCHECK(f_ != 0);
59 uint64_t f = f_;
73 f_ = f;
83 uint64_t f() const { return f_; }
92 uint64_t f_; member in class:v8::internal::DiyFp
    [all...]
diy-fp.cc 18 uint64_t a = f_ >> 32;
19 uint64_t b = f_ & kM32;
20 uint64_t c = other.f_ >> 32;
21 uint64_t d = other.f_ & kM32;
32 f_ = result_f;
ostreams.cc 17 OFStreamBase::OFStreamBase(FILE* f) : f_(f) {}
24 std::fflush(f_);
30 return (c != EOF) ? std::fputc(c, f_) : c;
36 std::fwrite(s, 1, static_cast<size_t>(n), f_));
ostreams.h 28 FILE* const f_; member in class:v8::internal::OFStreamBase
  /bionic/tests/headers/posix/
tgmath_h.c 33 #define TGMATH(f_) f_(f1); f_(d1); f_(ld1);
34 #define TGMATHC(f_) f_(f1); f_(d1); f_(ld1); f_(fc1); f_(dc1); f_(ldc1)
    [all...]
header_checks.h 29 #define FUNCTION(f_, t_) { t_ = f_; }
  /system/core/base/include/android-base/
scopeguard.h 30 ScopeGuard(F&& f) : f_(std::forward<F>(f)), active_(true) {}
32 ScopeGuard(ScopeGuard&& that) : f_(std::move(that.f_)), active_(that.active_) {
37 ScopeGuard(ScopeGuard<Functor>&& that) : f_(std::move(that.f_)), active_(that.active_) {
42 if (active_) f_();
58 F f_; member in class:android::base::ScopeGuard
  /external/tensorflow/tensorflow/core/lib/gtl/
cleanup.h 58 Cleanup() : released_(true), f_() {}
62 : f_(std::forward<G>(f)) {} // NOLINT(build/c++11)
65 : released_(src.is_released()), f_(src.release()) {}
72 : released_(src.is_released()), f_(src.release()) {}
78 if (!released_) f_();
80 f_ = src.release();
85 if (!released_) f_();
92 return std::move(f_);
101 F f_; member in class:tensorflow::gtl::Cleanup
cleanup_test.cc 177 F f_ = F(&copies_, &calls_); member in class:tensorflow::__anon39971::CleanupReferenceTest
221 auto c = gtl::MakeCleanup(f_);
229 auto c = gtl::MakeCleanup(f_);
245 auto c = gtl::MakeCleanup(std::move(f_));
256 auto c = gtl::MakeCleanup(std::cref(f_));
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
posix_thread.hpp 72 : f_(f)
78 f_();
82 Function f_; member in class:asio::detail::posix_thread::func
  /device/google/cuttlefish_common/common/libs/auto_resources/
auto_resources.h 38 explicit AutoCloseFILE(FILE *f) : f_(f) { }
40 if (f_) {
41 (void)::fclose(f_);
42 f_ = NULL;
47 return f_;
53 return f_ == NULL;
57 return IsError() || feof(f_);
61 return f_ != NULL;
69 if (f_) {
70 rval = !::fclose(f_);
80 FILE* f_; member in class:AutoCloseFILE
    [all...]
  /external/tensorflow/tensorflow/core/lib/strings/
str_util.h 160 Formatter(std::function<void(string*, T)> f) : f_(f) {}
161 void operator()(string* out, const T& t) { f_(out, t); }
164 std::function<void(string*, T)> f_; member in class:tensorflow::str_util::Formatter
  /hardware/interfaces/keymaster/4.0/vts/functional/
HmacKeySharingTest.cpp 146 explicit final_action(F f) : f_(move(f)) {}
147 ~final_action() { f_(); }
150 F f_; member in class:android::hardware::keymaster::V4_0::test::final_action
  /external/clang/test/SemaCXX/
member-pointer.cpp 290 F f_; member in struct:PR9973::dm
292 { 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/vixl/src/aarch32/
operands-aarch32.h 304 return imm_.f_;
308 if (immediate_type_.Is(F32)) return static_cast<double>(imm_.f_);
318 if (immediate_type_.Is(F32)) return imm_.f_ == 0.0f;
333 (immediate_type_.Is(F32) && (imm_.f_ == 0.0f)) ||
339 (immediate_type_.Is(F32) && (imm_.f_ == 0.0f)) ||
359 float f_; member in union:vixl::aarch32::NeonImmediate::NeonImmediateType
365 NeonImmediateType(float f) : f_(f) {}
operands-aarch32.cc 85 if (neon_imm.imm_.f_ == 0) {
89 return os << "#" << std::setprecision(9) << neon_imm.imm_.f_;
  /system/keymaster/include/keymaster/
android_keymaster_utils.h 427 explicit final_action(F f) : f_(move(f)) {}
428 ~final_action() { f_(); }
431 F f_; member in class:keymaster::final_action
  /external/deqp/modules/glshared/
glsScissorTests.cpp 561 Color(const float f_[4]) : type(FLOAT) { f[0] = f_[0]; f[1] = f_[1]; f[2] = f_[2]; f[3] = f_[3]; }
  /art/tools/veridex/
veridex.cc 38 static VeriClass f_(Primitive::Type::kPrimFloat, 0, nullptr);
48 VeriClass* VeriClass::float_ = &f_;
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h     [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 375 &f_##field##_len, &f_##field) < 0 || \
376 (checklength > 0 && ((size_t) checklength) != f_##field##_len)) { \
391 &f_##field##_len, &f_##field) < 0 || \
392 (checklength > 0 && ((size_t) checklength) != f_##field##_len)) { \
395 f_##field##_len = 0; \
396 f_##field = NULL; \
    [all...]

Completed in 350 milliseconds

1 2