HomeSort by relevance Sort by last modified time
    Searched defs:x_ (Results 26 - 50 of 67) sorted by null

12 3

  /external/clang/test/CodeGenCXX/
constructor-destructor-return-this.cpp 18 int x_; member in class:A
ms-property.cpp 11 int x_; member in class:Test1
15 Test1(int x) : x_(x) {}
17 int get_x() const { return x_; }
thunk-use-after-free.cpp 30 struct DDD { int x_;}; member in struct:DDD
  /external/clang/test/SemaCXX/
ms-property.cpp 11 int x_; member in class:Test1
14 Test1(int x) : x_(x) {}
16 int get_x() const { return x_; }
  /external/webrtc/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 33 std::memset(x_, 0, sizeof(x_));
39 int16_t* x = x_;
84 int16_t x_[2]; member in class:webrtc::HighPassFilterImpl::BiquadFilter
  /external/ceres-solver/internal/ceres/
dogleg_strategy_test.cc 49 Vector x_; member in class:ceres::internal::__anon6804::Fixture
84 x_.resize(6);
85 x_.setZero();
112 x_.resize(6);
113 x_.setZero();
145 x_.data());
148 EXPECT_LE(x_.norm(), options_.initial_radius * (1.0 + 4.0 * kEpsilon));
165 x_.data());
168 EXPECT_LE(x_.norm(), options_.initial_radius * (1.0 + 4.0 * kEpsilon));
185 x_.data())
    [all...]
dynamic_numeric_diff_cost_function_test.cc 313 x_.resize(1);
314 x_[0] = 0.0;
326 parameter_blocks_[0] = &x_[0];
345 jacobian_vect_[0].resize(7 * x_.size(), -100000);
350 const double sum_x = x_[0];
414 vector<double> x_; member in class:ceres::internal::ThreeParameterCostFunctorTest
dynamic_autodiff_cost_function_test.cc 312 x_.resize(1);
313 x_[0] = 0.0;
325 parameter_blocks_[0] = &x_[0];
344 jacobian_vect_[0].resize(7 * x_.size(), -100000);
349 const double sum_x = x_[0];
413 vector<double> x_; member in class:ceres::internal::ThreeParameterCostFunctorTest
  /external/libchrome/crypto/
p224_spake.h 112 // x_ is the secret Diffie-Hellman exponent (see paper referenced in .cc
114 uint8_t x_[p224::kScalarBytes]; member in class:crypto::P224EncryptedKeyExchange
  /external/libweave/third_party/chromium/crypto/
p224_spake.h 113 // x_ is the secret Diffie-Hellman exponent (see paper referenced in .cc
115 uint8_t x_[p224::kScalarBytes]; member in class:crypto::P224EncryptedKeyExchange
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
33 float x() const { return x_; }
48 float x_, y_; member in class:android::filterfw::Point
  /external/clang/test/Analysis/
uninit-const.cpp 120 int x_=5; local
121 doStuff_uninit(&x_); // no warning
  /external/opencv3/modules/core/src/
conjugate_gradient.cpp 55 double* x_ = x_buf; local
57 x_[i] = x[i];
60 x_[i] = x[i] + eps;
61 double y1 = calc(x_);
62 x_[i] = x[i] - eps;
63 double y0 = calc(x_);
65 x_[i] = x[i];
  /external/opencv3/modules/stitching/src/
warpers.cpp 237 float x_ = (projector_.k[0] * x + projector_.k[1] * y) / z + projector_.k[2]; local
239 if (x_ > 0.f && x_ < src_size.width && y_ > 0.f && y_ < src_size.height)
251 float x_ = (projector_.k[0] * x + projector_.k[1] * y) / z + projector_.k[2]; local
253 if (x_ > 0.f && x_ < src_size.width && y_ > 0.f && y_ < src_size.height)
280 float x_ = (projector_.k[0] * x + projector_.k[1] * y) / z + projector_.k[2]; local
282 if (x_ > 0.f && x_ < src_size.width && y_ > 0.f && y_ < src_size.height)
294 float x_ = (projector_.k[0] * x + projector_.k[1] * y) / z + projector_.k[2] local
    [all...]
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_geometry.h 22 DesktopVector() : x_(0), y_(0) {}
23 DesktopVector(int32_t x, int32_t y) : x_(x), y_(y) {}
25 int32_t x() const { return x_; }
27 bool is_zero() const { return x_ == 0 && y_ == 0; }
30 return x_ == other.x_ && y_ == other.y_;
34 x_ = x;
46 int32_t x_; member in class:webrtc::DesktopVector
  /art/compiler/optimizing/
induction_var_range_test.cc 65 x_ = new (&allocator_) HParameterValue(graph_->GetDexFile(), 0, 0, Primitive::kPrimInt);
66 entry_block_->AddInstruction(x_);
253 HInstruction* x_; member in class:art::InductionVarRangeTest
284 EXPECT_FALSE(IsExact(CreateFetch(x_), &value));
285 EXPECT_FALSE(IsAtMost(CreateFetch(x_), &value));
286 EXPECT_FALSE(IsAtLeast(CreateFetch(x_), &value));
319 ExpectEqual(Value(x_, 1, -20),
320 GetMin(CreateInvariant('+', CreateFetch(x_), CreateRange(-20, -10)), nullptr));
321 ExpectEqual(Value(x_, 1, -10),
322 GetMax(CreateInvariant('+', CreateFetch(x_), CreateRange(-20, -10)), nullptr))
    [all...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 46 float x_; member in class:ndk_helper::Vec2
57 x_ = y_ = 0.f;
62 x_ = fX;
68 x_ = vec.x_;
74 x_ = (*pVec++);
82 ret.x_ = x_ * rhs.x_;
90 ret.x_ = x_ / rhs.x_
252 float x_, y_, z_; member in class:ndk_helper::Vec3
493 float x_, y_, z_, w_; member in class:ndk_helper::Vec4
964 float x_, y_, z_, w_; member in class:ndk_helper::Quaternion
    [all...]
  /external/ceres-solver/examples/
libmv_homography.cc 249 : x_(x), y_(y) { }
257 Vec2 x(T(x_(0)), T(x_(1)));
268 const Vec2 x_; member in class:__anon6792::HomographySymmetricGeometricCostFunctor
  /external/gemmlowp/internal/
pack_neon.h 60 x_ = vld1q_u8(a);
65 uint8x16_t result = vsubq_u8(x_, vdupq_n_u8(1));
67 x_ = veorq_u8(x_, vshlq_n_u8(x_, 7));
68 x_ = veorq_u8(x_, vshrq_n_u8(x_, 5));
69 x_ = veorq_u8(x_, vshlq_n_u8(x_, 3))
75 uint8x16_t x_; member in class:gemmlowp::NEONRoundingOffsetGenerator
112 uint8x16_t x_; member in class:gemmlowp::NEONRoundingOffsetGenerator
    [all...]
  /external/gmock/test/
gmock_stress_test.cc 70 explicit Base(int a_x) : x_(a_x) {}
72 int x() const { return x_; }
74 int x_; member in class:testing::__anon12161::Base
  /external/google-breakpad/src/testing/test/
gmock_stress_test.cc 70 explicit Base(int a_x) : x_(a_x) {}
72 int x() const { return x_; }
74 int x_; member in class:testing::__anon12404::Base
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
warpers_inl.hpp 216 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
220 x_ = t[0] + x_ / z_ * (1 - t[2]);
223 u = scale * x_;
247 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
251 u = scale * atan2f(x_, z_);
252 float w = y_ / sqrtf(x_ * x_ + y_ * y_ + z_ * z_);
264 float x_ = sinv * sinf(u); local
269 x = k_rinv[0] * x_ + k_rinv[1] * y_ + k_rinv[2] * z_
281 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
296 float x_ = sinf(u); local
312 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
333 float x_ = sinv * sinf(u_); local
349 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
373 float x_ = sinv * sinf(u_); local
389 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
411 float x_ = cosv * sinf(u_); local
428 float x_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
450 float x_ = sinf(v_); local
465 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
498 float x_ = cosv * sinf(u_); local
515 float x_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
548 float x_ = sinf(v_); local
563 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
584 float x_ = cosv * sinf(u_); local
600 float x_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
623 float x_ = cosv * sinf(u_); local
643 float x_ = y0_; local
670 float x_ = y0_; local
689 float x_ = y0_; local
715 float x_ = y0_; local
734 float x_ = y0_; local
    [all...]
  /external/opencv3/modules/video/test/
test_camshift.cpp 134 double x_ = (y - cy)*b, y_ = (y - cy)*a; local
138 double x1 = (x - cx)*a - x_;
  /external/pdfium/third_party/freetype/src/base/
ftcalc.c 766 FT_Int32 x_ = vector->x; local
773 FT_MOVE_SIGN( x_, sx );
776 x = (FT_UInt32)x_;
822 x_ = (FT_Int32)x;
828 u = (FT_UInt32)( x_ + ( x_ * b >> 16 ) );
  /frameworks/wilhelm/tools/permute/
permute.c 69 const Segment *x_ = (Segment *) x; local
71 return x_->mFrameStart - y_->mFrameStart;

Completed in 298 milliseconds

12 3