Searched defs:y_ (Results 1 - 25 of 43) sorted by relevance

12

/external/clang/test/Index/
H A Dindex-file.cpp29 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/
H A Dcarbonvideorenderer.h67 int y_; member in class:cricket::CarbonVideoRenderer
/external/drm_hwcomposer/
H A Ddrmcrtc.h57 uint32_t y_; member in class:android::DrmCrtc
/external/ceres-solver/examples/
H A Dcurve_fitting.cc123 : x_(x), y_(y) {}
128 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
134 const double y_; member in struct:ExponentialResidual
H A Drobust_curve_fitting.cc125 : x_(x), y_(y) {}
130 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
136 const double y_; member in struct:ExponentialResidual
H A Dellipse_approximation.cc276 : 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
H A Dlibmv_homography.cc249 : x_(x), y_(y) { }
258 Vec2 y(T(y_(0)), T(y_(1)));
269 const Vec2 y_; member in class:__anon825::HomographySymmetricGeometricCostFunctor
H A Dnist.cc254 : 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/ceres-solver/internal/ceres/
H A Dparameter_block_ordering_test.cc67 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_);
H A Ddynamic_numeric_diff_cost_function_test.cc316 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
H A Ddynamic_autodiff_cost_function_test.cc315 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/clang/test/CodeGenCXX/
H A Dms-property.cpp12 double y_; member in class:Test1
/external/pdfium/third_party/agg23/
H A Dagg_vertex_sequence.h78 vertex_dist(FX_FLOAT x_, FX_FLOAT y_) : argument
80 y(y_),
93 vertex_dist_cmd(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) : argument
94 vertex_dist(x_, y_),
/external/webrtc/webrtc/modules/audio_processing/
H A Dhigh_pass_filter_impl.cc34 std::memset(y_, 0, sizeof(y_));
40 int16_t* y = y_;
85 int16_t y_[4]; member in class:webrtc::HighPassFilterImpl::BiquadFilter
/external/ImageMagick/Magick++/lib/
H A DPixels.cpp37 Magick::Quantum* Magick::Pixels::get(const ssize_t x_,const ssize_t y_, argument
41 _y=y_;
46 Quantum* pixels=GetCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_,
54 const ssize_t y_,const size_t columns_,const size_t rows_)
57 _y=y_;
62 const Quantum* pixels=GetCacheViewVirtualPixels(_view,x_,y_,columns_,rows_,
76 Magick::Quantum* Magick::Pixels::set(const ssize_t x_,const ssize_t y_, argument
80 _y=y_;
85 Quantum* pixels=QueueCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_,
119 const ::ssize_t y_,cons
53 getConst(const ssize_t x_, const ssize_t y_,const size_t columns_,const size_t rows_) argument
118 PixelData(Magick::Image &image_,const ::ssize_t x_, const ::ssize_t y_,const size_t width_,const size_t height_,std::string map_, const StorageType type_) argument
145 init(Magick::Image &image_,const ::ssize_t x_, const ::ssize_t y_,const size_t width_,const size_t height_, std::string map_,const StorageType type_) argument
[all...]
H A DGeometry.cpp513 Magick::Offset::Offset(ssize_t x_,ssize_t y_) argument
515 _y(y_)
613 Magick::Point::Point(double x_,double y_) argument
615 _y(y_)
/external/webrtc/webrtc/modules/desktop_capture/
H A Ddesktop_geometry.h22 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
/external/freetype/src/base/
H A Dftcalc.c767 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/
H A Dgmock_stress_test.cc79 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::__anon6210::Derived1
/external/google-breakpad/src/testing/test/
H A Dgmock_stress_test.cc79 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::__anon6453::Derived1
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
H A Dftcalc.c767 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/stitching/include/opencv2/stitching/detail/
H A Dwarpers_inl.hpp217 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_
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...]
/external/opencv3/modules/stitching/src/
H A Dwarpers.cpp238 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_ local
[all...]
/external/opencv3/modules/video/test/
H A Dtest_camshift.cpp134 double x_ = (y - cy)*b, y_ = (y - cy)*a; local
139 double y1 = (x - cx)*b + y_;
/external/pdfium/third_party/freetype/src/base/
H A Dftcalc.c767 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 ) );

Completed in 770 milliseconds

12