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

1 2

  /external/clang/test/Index/
index-file.cpp 29 int y_; member in class:B
39 // CHECK: [indexDeclaration]: kind: field | name: y_ | USR: c:@S@B@FI@y_ | lang: C++ | cursor: FieldDecl=y_:29:7 (Definition) | loc: 29:7 | semantic-container: [B:27:7] | lexical-container: [B:27:7] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0
  /external/webrtc/talk/media/devices/
carbonvideorenderer.h 67 int y_; member in class:cricket::CarbonVideoRenderer
  /external/ceres-solver/examples/
curve_fitting.cc 123 : x_(x), y_(y) {}
128 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
134 const double y_; member in struct:ExponentialResidual
robust_curve_fitting.cc 125 : x_(x), y_(y) {}
130 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
136 const double y_; member in struct:ExponentialResidual
ellipse_approximation.cc 276 : num_segments_(num_segments), y_(y) {
299 residuals[0] = y_[0] - ((1.0 - u) * x[1 + i0][0] + u * x[1 + i1][0]);
300 residuals[1] = y_[1] - ((1.0 - u) * x[1 + i0][1] + u * x[1 + i1][1]);
336 const Eigen::Vector2d y_; member in class:PointToLineSegmentContourCostFunction
libmv_homography.cc 249 : x_(x), y_(y) { }
258 Vec2 y(T(y_(0)), T(y_(1)));
269 const Vec2 y_; member in class:__anon5927::HomographySymmetricGeometricCostFunctor
nist.cc 254 : x_(*x), y_(*y) {} \
256 double y_; \
259 const T y(y_); \
391 : x1_(x[0]), x2_(x[1]), y_(y[0]) {}
396 residual[0] = T(log(y_)) - (b[0] - b[1] * T(x1_) * exp(-b[2] * T(x2_)));
403 double y_; member in struct:ceres::examples::Nelson
  /external/drm_hwcomposer/
drmcrtc.h 57 uint32_t y_; member in class:android::DrmCrtc
  /frameworks/base/media/mca/filterfw/native/core/
geometry.h 30 Point() : x_(0.0f), y_(0.0f) {}
31 Point(float x, float y) : x_(x), y_(y) {}
34 float y() const { return y_; }
48 float x_, y_; member in class:android::filterfw::Point
  /external/ceres-solver/internal/ceres/
parameter_block_ordering_test.cc 67 problem_.AddParameterBlock(y_, 4);
72 problem_.AddResidualBlock(new DummyCostFunction<6, 5, 4>, NULL, z_, y_);
80 double x_[3], y_[4], z_[5], w_[6]; member in class:ceres::internal::SchurOrderingTest
126 problem_.SetParameterBlockConstant(y_);
dynamic_numeric_diff_cost_function_test.cc 316 y_.resize(2);
317 y_[0] = 1.0;
318 y_[1] = 3.0;
327 parameter_blocks_[1] = &y_[0];
346 jacobian_vect_[1].resize(7 * y_.size(), -100000);
351 const double sum_y = y_[0] + 2.0 * y_[1];
415 vector<double> y_; member in class:ceres::internal::ThreeParameterCostFunctorTest
dynamic_autodiff_cost_function_test.cc 315 y_.resize(2);
316 y_[0] = 1.0;
317 y_[1] = 3.0;
326 parameter_blocks_[1] = &y_[0];
345 jacobian_vect_[1].resize(7 * y_.size(), -100000);
350 const double sum_y = y_[0] + 2.0 * y_[1];
414 vector<double> y_; member in class:ceres::internal::ThreeParameterCostFunctorTest
  /external/webrtc/webrtc/modules/audio_processing/
high_pass_filter_impl.cc 34 std::memset(y_, 0, sizeof(y_));
40 int16_t* y = y_;
85 int16_t y_[4]; member in class:webrtc::HighPassFilterImpl::BiquadFilter
  /external/clang/test/CodeGenCXX/
ms-property.cpp 12 double y_; member in class:Test1
  /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) {}
34 float y() const { return y_; }
48 float x_, y_; member in class:android::filterfw::Point
  /external/opencv3/modules/stitching/src/
warpers.cpp 238 float y_ = projector_.k[4] * y / z + projector_.k[5]; local
239 if (x_ > 0.f && x_ < src_size.width && y_ > 0.f && y_ < src_size.height)
252 float y_ = projector_.k[4] * y / z + projector_.k[5]; local
253 if (x_ > 0.f && x_ < src_size.width && y_ > 0.f && y_ < src_size.height)
281 float y_ = projector_.k[4] * y / z + projector_.k[5]; local
282 if (x_ > 0.f && x_ < src_size.width && y_ > 0.f && y_ < src_size.height)
295 float y_ = projector_.k[4] * y / z + projector_.k[5] 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) {}
26 int32_t y() const { return y_; }
27 bool is_zero() const { return x_ == 0 && y_ == 0; }
30 return x_ == other.x_ && y_ == other.y_;
35 y_ = y;
47 int32_t y_; member in class:webrtc::DesktopVector
  /art/compiler/optimizing/
induction_var_range_test.cc 67 y_ = new (&allocator_) HParameterValue(graph_->GetDexFile(), 0, 0, Primitive::kPrimInt);
68 entry_block_->AddInstruction(y_);
254 HInstruction* y_; member in class:art::InductionVarRangeTest
470 ExpectEqual(Value(), AddValue(Value(x_, 1, 5), Value(y_, 1, -7)));
472 ExpectEqual(Value(y_, 1, 5), AddValue(Value(55), Value(y_, 1, -50)));
482 ExpectEqual(Value(), SubValue(Value(x_, 1, 5), Value(y_, 1, -7)));
484 ExpectEqual(Value(y_, -4, 105), SubValue(Value(55), Value(y_, 4, -50)));
493 ExpectEqual(Value(), MulValue(Value(x_, 1, 5), Value(y_, 1, -7)))
    [all...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 47 float y_; member in class:ndk_helper::Vec2
57 x_ = y_ = 0.f;
63 y_ = fY;
69 y_ = vec.y_;
75 y_ = (*pVec++);
83 ret.y_ = y_ * rhs.y_;
91 ret.y_ = y_ / rhs.y_
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/freetype/src/base/
ftcalc.c 767 FT_Int32 y_ = vector->y; local
774 FT_MOVE_SIGN( y_, sy );
777 y = (FT_UInt32)y_;
823 y_ = (FT_Int32)y;
829 v = (FT_UInt32)( y_ + ( y_ * b >> 16 ) );
  /external/gmock/test/
gmock_stress_test.cc 79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {}
80 int y() const { return y_; }
82 int y_; member in class:testing::__anon11299::Derived1
  /external/google-breakpad/src/testing/test/
gmock_stress_test.cc 79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {}
80 int y() const { return y_; }
82 int y_; member in class:testing::__anon11542::Derived1
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftcalc.c 767 FT_Int32 y_ = vector->y; local
774 FT_MOVE_SIGN( y_, sy );
777 y = (FT_UInt32)y_;
823 y_ = (FT_Int32)y;
829 v = (FT_UInt32)( y_ + ( y_ * b >> 16 ) );
  /external/opencv3/modules/core/src/
downhill_simplex.cpp 276 double* y_ = y.ptr<double>(); local
280 y_[i] = calc_f(p.ptr<double>(i));
289 if( y_[0] > y_[1] )
299 double yval = y_[i];
300 if (yval <= y_[ilo])
302 if (yval > y_[ihi])
307 else if (yval > y_[inhi] && i != ihi)
315 double yval = y_[i];
316 if( yval == y_[ilo] && i != ihi && i != inhi
    [all...]
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
warpers_inl.hpp 217 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
221 y_ = t[1] + y_ / z_ * (1 - t[2]);
224 v = scale * y_;
248 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
252 float w = y_ / sqrtf(x_ * x_ + y_ * y_ + z_ * z_);
265 float y_ = cosf(static_cast<float>(CV_PI) - v); local
269 x = k_rinv[0] * x_ + k_rinv[1] * y_ + k_rinv[2] * z_
282 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
297 float y_ = v; local
313 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
334 float y_ = cosf((float)CV_PI - v_); local
350 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
374 float y_ = cosf((float)CV_PI - v_); local
390 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
412 float y_ = sinf(v_); local
427 float y_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
449 float y_ = cosv * sinf(u_); local
466 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
499 float y_ = sinf(v_); local
514 float y_ = r_kinv[0] * x + r_kinv[1] * y + r_kinv[2]; local
547 float y_ = cosv * sinf(u_); local
564 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
585 float y_ = sinf(v_); local
601 float y_ = r_kinv[3] * x + r_kinv[4] * y + r_kinv[5]; local
624 float y_ = sinf(v_); local
644 float y_ = x0_; local
671 float y_ = x0_; local
690 float y_ = x0_; local
716 float y_ = x0_; local
735 float y_ = x0_; local
    [all...]

Completed in 6434 milliseconds

1 2