Searched defs:x_ (Results 26 - 50 of 59) sorted by relevance

123

/external/chromium_org/ui/gfx/geometry/
H A Dvector2d.h24 Vector2d() : x_(0), y_(0) {}
25 Vector2d(int x, int y) : x_(x), y_(y) {}
27 int x() const { return x_; }
28 void set_x(int x) { x_ = x; }
45 x_ = x_ <= other.x_ ? x_ : other.x_;
50 x_
66 int x_; member in class:gfx::Vector2d
[all...]
H A Dvector2d_f.h22 Vector2dF() : x_(0), y_(0) {}
23 Vector2dF(float x, float y) : x_(x), y_(y) {}
25 float x() const { return x_; }
26 void set_x(float x) { x_ = x; }
43 x_ = x_ <= other.x_ ? x_ : other.x_;
48 x_
66 float x_; member in class:gfx::Vector2dF
[all...]
H A Dpoint3_f.h20 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) {}
36 float x() const { return x_; }
40 void set_x(float x) { x_ = x; }
45 x_ = x;
52 x_ += v.x();
59 x_ -= v.x();
66 float dx = x_ - other.x_;
78 float x_; member in class:gfx::Point3F
[all...]
H A Dvector3d_f.h28 float x() const { return x_; }
29 void set_x(float x) { x_ = x; }
49 x_ = x_ <= other.x_ ? x_ : other.x_;
55 x_ = x_ >= other.x_
76 float x_; member in class:gfx::Vector3dF
[all...]
/external/clang/test/CodeGenCXX/
H A Dthunk-use-after-free.cpp30 struct DDD { int x_;}; member in struct:DDD
H A Ddebug-info-use-after-free.cpp117 struct DDD { int x_;}; member in struct:DDD
/external/openssl/crypto/ec/
H A Dec2_oct.c92 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
117 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err;
91 ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
H A Decp_oct.c71 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
102 if (!BN_nnmod(x, x_, &group->field,ctx)) goto err;
106 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) goto err;
107 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) goto err;
111 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx)) goto err;
112 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx)) goto err;
70 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_vertex_sequence.h78 vertex_dist(FX_FLOAT x_, FX_FLOAT y_) : argument
79 x(x_),
93 vertex_dist_cmd(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) : argument
94 vertex_dist(x_, y_),
H A Dagg_rendering_buffer.h41 span_data(int x_, unsigned len_, int8u* ptr_) : argument
42 x(x_), len(len_), ptr(ptr_) {}
H A Dagg_basics.h264 point_type(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} argument
272 point_type_flag(FX_FLOAT x_, FX_FLOAT y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {} argument
278 vertex_type(FX_FLOAT x_, FX_FLOAT y_, unsigned cmd_) : argument
279 x(x_), y(y_), cmd(cmd_) {}
/external/ceres-solver/internal/ceres/
H A Ddynamic_numeric_diff_cost_function_test.cc313 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
H A Ddynamic_autodiff_cost_function_test.cc312 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
H A Dsystem_test.cc214 x_[0] = 3.0;
215 x_[1] = -1.0;
216 x_[2] = 0.0;
217 x_[3] = 1.0;
220 new AutoDiffCostFunction<F1, 1, 1, 1>(new F1), NULL, &x_[0], &x_[1]);
222 new AutoDiffCostFunction<F2, 1, 1, 1>(new F2), NULL, &x_[2], &x_[3]);
224 new AutoDiffCostFunction<F3, 1, 1, 1>(new F3), NULL, &x_[1], &x_[
281 double x_[4]; member in class:ceres::internal::PowellsFunction
[all...]
/external/chromium_org/third_party/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) {}
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
/external/chromium_org/ui/events/ozone/evdev/
H A Dtouch_event_converter_evdev.h88 float x_; member in struct:ui::TouchEventConverterEvdev::InProgressEvents
/external/clang/test/Analysis/
H A Duninit-const.cpp120 int x_=5; local
121 doStuff_uninit(&x_); // no warning
/external/ceres-solver/examples/
H A Dlibmv_homography.cc249 : x_(x), y_(y) { }
257 Vec2 x(T(x_(0)), T(x_(1)));
268 const Vec2 x_; member in class:__anon1751::HomographySymmetricGeometricCostFunctor
/external/chromium_org/cc/resources/
H A Dlayer_quad.h25 Edge() : x_(0), y_(0), z_(0) {}
28 float x() const { return x_; }
32 void set_x(float x) { x_ = x; }
36 x_ = x;
41 void move_x(float dx) { x_ += dx; }
45 x_ += dx;
50 void scale_x(float sx) { x_ *= sx; }
54 x_ *= sx;
67 float x_; member in class:cc::LayerQuad::Edge
/external/chromium_org/content/browser/renderer_host/
H A Dcompositing_iosurface_mac.h118 SurfaceVertex() : x_(0.0f), y_(0.0f), tx_(0.0f), ty_(0.0f) { }
120 x_ = x;
126 x_ = x;
133 float x_; member in struct:content::CompositingIOSurfaceMac::SurfaceVertex
/external/chromium_org/skia/ext/
H A Dplatform_canvas_unittest.cc146 x_(x),
151 bounds.set(SkIntToScalar(x_), SkIntToScalar(y_),
161 int x() const { return x_; }
167 int right() const { return x_ + w_; }
172 int x_, y_, w_, h_; member in class:skia::__anon10678::LayerSaver
/external/deqp/framework/common/
H A DtcuVector.hpp107 Vector (T x_, T y_);
108 Vector (T x_, T y_, T z_);
109 Vector (T x_, T y_, T z_, T w_);
188 inline Vector<T, Size>::Vector (T x_, T y_) argument
191 m_data[0] = x_;
196 inline Vector<T, Size>::Vector (T x_, T y_, T z_) argument
199 m_data[0] = x_;
205 inline Vector<T, Size>::Vector (T x_, T y_, T z_, T w_) argument
208 m_data[0] = x_;
/external/deqp/modules/egl/
H A DteglColorClearCase.cpp64 ClearOp (int x_, int y_, int width_, int height_, const tcu::RGBA& color_) argument
65 : x (x_)
/external/deqp/modules/glshared/
H A DglsLifetimeTests.hpp385 Rectangle (GLint x_, GLint y_, GLint width_, GLint height_) argument
386 : x (x_)
/external/chromium_org/third_party/libwebp/enc/
H A Dvp8enci.h278 int x_, y_; // current macroblock member in struct:__anon13289
307 uint8_t* y_top_; // top luma samples at position 'x_'
308 uint8_t* uv_top_; // top u/v samples at position 'x_', packed as 16 bytes

Completed in 3095 milliseconds

123