HomeSort by relevance Sort by last modified time
    Searched full:y_scale (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/chromium_org/ui/gfx/
point_f.cc 17 PointF ScalePoint(const PointF& p, float x_scale, float y_scale) {
19 scaled_p.Scale(x_scale, y_scale);
size_f.cc 17 SizeF ScaleSize(const SizeF& s, float x_scale, float y_scale) {
19 scaled_s.Scale(x_scale, y_scale);
vector2d_f.cc 39 void Vector2dF::Scale(float x_scale, float y_scale) {
41 y_ *= y_scale;
54 Vector2dF ScaleVector2d(const Vector2dF& v, float x_scale, float y_scale) {
56 scaled_v.Scale(x_scale, y_scale);
insets.h 35 Insets Scale(float x_scale, float y_scale) const {
36 return Insets(static_cast<int>(top() * y_scale),
38 static_cast<int>(bottom() * y_scale),
size_f.h 27 void Scale(float x_scale, float y_scale) {
28 SetSize(width() * x_scale, height() * y_scale);
42 UI_EXPORT SizeF ScaleSize(const SizeF& p, float x_scale, float y_scale);
rect_f.h 50 void Scale(float x_scale, float y_scale) {
51 set_origin(ScalePoint(origin(), x_scale, y_scale));
52 set_size(ScaleSize(size(), x_scale, y_scale));
90 inline RectF ScaleRect(const RectF& r, float x_scale, float y_scale) {
91 return RectF(r.x() * x_scale, r.y() * y_scale,
92 r.width() * x_scale, r.height() * y_scale);
point_f.h 27 void Scale(float x_scale, float y_scale) {
28 SetPoint(x() * x_scale, y() * y_scale);
63 UI_EXPORT PointF ScalePoint(const PointF& p, float x_scale, float y_scale);
vector3d_f.cc 60 void Vector3dF::Scale(float x_scale, float y_scale, float z_scale) {
62 y_ *= y_scale;
81 float y_scale,
84 scaled_v.Scale(x_scale, y_scale, z_scale);
point3_f.h 31 void Scale(float x_scale, float y_scale, float z_scale) {
32 SetPoint(x() * x_scale, y() * y_scale, z() * z_scale);
109 float y_scale,
111 return Point3F(p.x() * x_scale, p.y() * y_scale, p.z() * z_scale);
box_f.h 47 void Scale(float x_scale, float y_scale, float z_scale) {
48 origin_.Scale(x_scale, y_scale, z_scale);
49 set_size(width_ * x_scale, height_ * y_scale, depth_ * z_scale);
108 float y_scale,
111 b.y() * y_scale,
114 b.height() * y_scale,
rect.h 113 float y_scale) {
115 int y = std::floor(rect.y() * y_scale);
117 int b = rect.height() == 0 ? y : std::ceil(rect.bottom() * y_scale);
127 float y_scale) {
129 int y = std::ceil(rect.y() * y_scale);
131 int b = rect.height() == 0 ? y : std::floor(rect.bottom() * y_scale);
quad_f.cc 94 void QuadF::Scale(float x_scale, float y_scale) {
95 p1_.Scale(x_scale, y_scale);
96 p2_.Scale(x_scale, y_scale);
97 p3_.Scale(x_scale, y_scale);
98 p4_.Scale(x_scale, y_scale);
vector2d_f.h 58 // Scale the x and y components of the vector by |x_scale| and |y_scale|
60 void Scale(float x_scale, float y_scale);
103 float y_scale);
  /external/harfbuzz_ng/test/api/
test-font.c 368 int x_scale, y_scale; local
385 x_scale = y_scale = 13;
388 x_scale = y_scale = 13;
389 hb_font_get_scale (font, NULL, &y_scale);
390 g_assert_cmpint (y_scale, ==, 0);
391 x_scale = y_scale = 13;
392 hb_font_get_scale (font, &x_scale, &y_scale);
394 g_assert_cmpint (y_scale, ==, 0);
398 x_scale = y_scale = 13;
399 hb_font_get_scale (font, &x_scale, &y_scale);
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
callback.rs 18 float y_scale;
38 y_scale = (float)yuv_height / out_height;
75 uint32_t y_scaled = y * y_scale;
88 uint32_t y_scaled = y * y_scale;
105 uint32_t y_scaled = y * y_scale;
121 uint32_t y_scaled = y * y_scale;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_viewport_state.c 73 GLfloat y_scale, y_bias; local
83 y_scale = 1.0;
86 y_scale = -1.0;
92 sfv->viewport.m11 = v[MAT_SY] * y_scale;
95 sfv->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
gen7_viewport_state.c 36 GLfloat y_scale, y_bias; local
54 y_scale = 1.0;
57 y_scale = -1.0;
63 vp->viewport.m11 = v[MAT_SY] * y_scale;
66 vp->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_viewport_state.c 73 GLfloat y_scale, y_bias; local
83 y_scale = 1.0;
86 y_scale = -1.0;
92 sfv->viewport.m11 = v[MAT_SY] * y_scale;
95 sfv->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
gen7_viewport_state.c 36 GLfloat y_scale, y_bias; local
54 y_scale = 1.0;
57 y_scale = -1.0;
63 vp->viewport.m11 = v[MAT_SY] * y_scale;
66 vp->viewport.m31 = v[MAT_TY] * y_scale + y_bias;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-font.cc 85 return font->y_scale;
815 font->y_scale = parent->y_scale;
834 0, /* y_scale */
971 int y_scale)
977 font->y_scale = y_scale;
983 int *y_scale)
986 if (y_scale) *y_scale = font->y_scale
    [all...]
hb-font-private.hh 167 int y_scale; member in struct:hb_font_t
181 inline hb_position_t em_scale_y (int16_t v) { return em_scale (v, this->y_scale); }
190 if (unlikely (parent && parent->y_scale != y_scale))
191 return v * (int64_t) this->y_scale / this->parent->y_scale;
332 *y = y_scale;
  /external/harfbuzz_ng/src/
hb-font.cc 85 return font->y_scale;
815 font->y_scale = parent->y_scale;
834 0, /* y_scale */
971 int y_scale)
977 font->y_scale = y_scale;
983 int *y_scale)
986 if (y_scale) *y_scale = font->y_scale
    [all...]
hb-font-private.hh 167 int y_scale; member in struct:hb_font_t
181 inline hb_position_t em_scale_y (int16_t v) { return em_scale (v, this->y_scale); }
190 if (unlikely (parent && parent->y_scale != y_scale))
191 return v * (int64_t) this->y_scale / this->parent->y_scale;
332 *y = y_scale;
  /external/chromium_org/third_party/freetype/src/cff/
cffobjs.c 230 size->metrics.x_scale, size->metrics.y_scale,
237 FT_Pos x_scale, y_scale; local
243 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm );
248 y_scale = size->metrics.y_scale;
252 x_scale, y_scale, 0, 0 );
302 size->metrics.x_scale, size->metrics.y_scale,
309 FT_Pos x_scale, y_scale; local
315 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm )
    [all...]
  /external/freetype/src/cff/
cffobjs.c 234 size->metrics.x_scale, size->metrics.y_scale,
241 FT_Pos x_scale, y_scale; local
247 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm );
252 y_scale = size->metrics.y_scale;
256 x_scale, y_scale, 0, 0 );
306 size->metrics.x_scale, size->metrics.y_scale,
313 FT_Pos x_scale, y_scale; local
319 y_scale = FT_MulDiv( size->metrics.y_scale, top_upm, sub_upm )
    [all...]

Completed in 1606 milliseconds

1 2 3 4 5