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

1 2

  /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:__anon6376::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/chromium_org/crypto/
ghash.h 77 FieldElement y_; member in class:crypto::GaloisHash
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
carbonvideorenderer.h 65 int y_; member in class:cricket::CarbonVideoRenderer
  /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/chromium_org/native_client_sdk/src/examples/demo/flock/
vector2.h 17 Vector2() : x_(0.0), y_(0.0) {}
18 Vector2(double x, double y) : x_(x), y_(y) {}
29 return sqrt(x_ * x_ + y_ * y_);
35 y_ += vec.y();
50 y_ *= scale;
66 double angle = atan2(y_, x_);
74 double y() const { return y_; }
75 void set_y(double y) { y_ = y; }
78 double y_; member in class:Vector2
    [all...]
  /external/chromium_org/ui/gfx/geometry/
point_base.h 21 Type y() const { return y_; }
25 y_ = y;
29 void set_y(Type y) { y_ = y; }
33 y_ += delta_y;
38 y_ += vector.y();
43 y_ -= vector.y();
48 y_ = y_ <= other.y_ ? y_ : other.y_
82 Type y_; member in class:gfx::PointBase
    [all...]
vector2d.h 24 Vector2d() : x_(0), y_(0) {}
25 Vector2d(int x, int y) : x_(x), y_(y) {}
30 int y() const { return y_; }
31 void set_y(int y) { y_ = y; }
46 y_ = y_ <= other.y_ ? y_ : other.y_;
51 y_ = y_ >= other.y_ ? y_ : other.y_
67 int y_; member in class:gfx::Vector2d
    [all...]
vector2d_f.h 22 Vector2dF() : x_(0), y_(0) {}
23 Vector2dF(float x, float y) : x_(x), y_(y) {}
28 float y() const { return y_; }
29 void set_y(float y) { y_ = y; }
44 y_ = y_ <= other.y_ ? y_ : other.y_;
49 y_ = y_ >= other.y_ ? y_ : other.y_
67 float y_; member in class:gfx::Vector2dF
    [all...]
point3_f.h 20 Point3F() : x_(0), y_(0), z_(0) {}
22 Point3F(float x, float y, float z) : x_(x), y_(y), z_(z) {}
24 explicit Point3F(const PointF& point) : x_(point.x()), y_(point.y()), z_(0) {}
37 float y() const { return y_; }
41 void set_y(float y) { y_ = y; }
46 y_ = y;
53 y_ += v.y();
60 y_ -= v.y();
67 float dy = y_ - other.y_;
79 float y_; member in class:gfx::Point3F
    [all...]
vector3d_f.h 31 float y() const { return y_; }
32 void set_y(float y) { y_ = y; }
50 y_ = y_ <= other.y_ ? y_ : other.y_;
56 y_ = y_ >= other.y_ ? y_ : other.y_
77 float y_; member in class:gfx::Vector3dF
    [all...]
  /external/chromium_org/cc/resources/
layer_quad.h 25 Edge() : x_(0), y_(0), z_(0) {}
29 float y() const { return y_; }
33 void set_y(float y) { y_ = y; }
37 y_ = y;
42 void move_y(float dy) { y_ += dy; }
46 y_ += dy;
51 void scale_y(float sy) { y_ *= sy; }
55 y_ *= sy;
68 float y_; member in class:cc::LayerQuad::Edge
  /external/chromium_org/content/browser/renderer_host/
compositing_iosurface_mac.h 118 SurfaceVertex() : x_(0.0f), y_(0.0f), tx_(0.0f), ty_(0.0f) { }
121 y_ = y;
127 y_ = y;
134 float y_; member in struct:content::CompositingIOSurfaceMac::SurfaceVertex
  /external/chromium_org/third_party/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
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter_evdev.h 89 float y_; member in struct:ui::TouchEventConverterEvdev::InProgressEvents
  /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/chromium_org/skia/ext/
platform_canvas_unittest.cc 147 y_(y),
151 bounds.set(SkIntToScalar(x_), SkIntToScalar(y_),
162 int y() const { return y_; }
168 int bottom() const { return y_ + h_; }
172 int x_, y_, w_, h_; member in class:skia::__anon15303::LayerSaver
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 157 int y_ = y; local
164 y_ += lineHeight;
165 if (y_ > y + height) {
170 gc.drawText(c, x_, y_);
  /external/chromium_org/content/common/gpu/client/
gl_helper.cc 267 ScalerHolder y_; member in class:content::GLHelper::CopyTextureToImpl::ReadbackYUVImpl
308 TextureFrameBufferPair y_; member in class:content::GLHelper::CopyTextureToImpl::ReadbackYUV_MRT
    [all...]
  /external/chromium_org/win8/metro_driver/
chrome_app_view_ash.cc 360 y_(0),
407 y_ = dip_point_win32.y();
482 int y() const { return y_; }
496 int y_; member in class:ChromeAppViewAsh::PointerInfoHandler
    [all...]

Completed in 1410 milliseconds

1 2