Searched defs:sx (Results 1 - 25 of 167) sorted by relevance

1234567

/external/clang/test/CXX/class/class.nest/
H A Dp1-cxx0x.cpp5 static int sx; member in class:Outer
11 static char b[sizeof(sx)]; // okay
H A Dp1.cpp5 static int sx; member in class:Outer
11 static char b[sizeof(sx)]; // okay
/external/fdlibm/
H A De_remainder.c40 unsigned sx,lx,lp; local
47 sx = hx&0x80000000;
75 __HI(x) ^= sx;
H A Ds_rint.c43 int i0,j0,sx; local
47 sx = (i0>>31)&1;
57 w = TWO52[sx]+x;
58 t = w-TWO52[sx];
60 __HI(t) = (i0&0x7fffffff)|(sx<<31);
82 w = TWO52[sx]+x;
83 return w-TWO52[sx];
H A De_fmod.c35 int n,hx,hy,hz,ix,iy,sx,i; local
42 sx = hx&0x80000000; /* sign of x */
43 hx ^=sx; /* |x| */
53 return Zero[(unsigned)sx>>31]; /* |x|=|y| return x*0*/
107 return Zero[(unsigned)sx>>31];
116 return Zero[(unsigned)sx>>31];
123 __HI(x) = hx|sx;
131 lx = (hx<<(32-n))|(lx>>n); hx = sx;
133 lx = hx>>(n-32); hx = sx;
135 __HI(x) = hx|sx;
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath.h46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
H A Dapi_transform.c110 void vegaScale(VGfloat sx, VGfloat sy) argument
114 matrix_scale(dst, sx, sy);
H A Dapi_masks.c220 VGint sx, VGint sy,
243 mask_copy(mask, sx, sy, dx, dy, width, height);
219 vegaCopyMask(VGMaskLayer maskLayer, VGint sx, VGint sy, VGint dx, VGint dy, VGint width, VGint height) argument
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.h46 VGfloat sx, sy, ox, oy, px, py; member in struct:path_for_each_data
H A Dapi_transform.c110 void vegaScale(VGfloat sx, VGfloat sy) argument
114 matrix_scale(dst, sx, sy);
H A Dapi_masks.c220 VGint sx, VGint sy,
243 mask_copy(mask, sx, sy, dx, dy, width, height);
219 vegaCopyMask(VGMaskLayer maskLayer, VGint sx, VGint sy, VGint dx, VGint dy, VGint width, VGint height) argument
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DScaleTransformOperation.h34 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, OperationType type) argument
36 return adoptRef(new ScaleTransformOperation(sx, sy, 1, type));
39 static PassRefPtr<ScaleTransformOperation> create(double sx, double sy, double sz, OperationType type) argument
41 return adoptRef(new ScaleTransformOperation(sx, sy, sz, type));
68 ScaleTransformOperation(double sx, double sy, double sz, OperationType type) argument
69 : m_x(sx)
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathUtils.h80 float sx = fM[0]; local
89 uv->fX = sx * xy->fX + kx * xy->fY + tx;
/external/chromium_org/third_party/skia/tests/
H A DClampRangeTest.cpp90 SkFixed sx = rand.nextS() >> 1; local
92 SkFixed dx = (sx - fx) / count;
/external/fio/
H A Dcairo_text_helpers.c65 double sx, sy; local
72 sx = x;
79 cairo_translate(cr, -sx, -sy);
81 cairo_translate(cr, sx, sy);
/external/skia/src/gpu/
H A DGrPathUtils.h80 float sx = fM[0]; local
89 uv->fX = sx * xy->fX + kx * xy->fY + tx;
/external/skia/tests/
H A DClampRangeTest.cpp90 SkFixed sx = rand.nextS() >> 1; local
92 SkFixed dx = (sx - fx) / count;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMMatrix.cpp78 DOMMatrix* DOMMatrix::scaleNonUniformSelf(double sx, double sy, double sz, argument
84 if (sx == 1 && sy == 1 && sz == 1)
93 m_matrix.scaleNonUniform(sx, sy);
95 m_matrix.scale3d(sx, sy, sz);
H A DDOMMatrixReadOnly.cpp40 DOMMatrix* DOMMatrixReadOnly::scaleNonUniform(double sx, double sy, double sz, argument
43 return DOMMatrix::create(this)->scaleNonUniformSelf(sx, sy, sz, ox, oy, oz);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformTearOff.cpp79 void SVGTransformTearOff::setScale(float sx, float sy, ExceptionState& exceptionState) argument
86 target()->setScale(sx, sy);
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DScaling.h57 inline Scaling(const Scalar& sx, const Scalar& sy) argument
60 m_coeffs.x() = sx;
64 inline Scaling(const Scalar& sx, const Scalar& sy, const Scalar& sz) argument
67 m_coeffs.x() = sx;
H A DTranslation.h55 inline Translation(const Scalar& sx, const Scalar& sy) argument
58 m_coeffs.x() = sx;
62 inline Translation(const Scalar& sx, const Scalar& sy, const Scalar& sz) argument
65 m_coeffs.x() = sx;
/external/eigen/Eigen/src/Geometry/
H A DScaling.h125 static inline DiagonalMatrix<Scalar,2> Scaling(const Scalar& sx, const Scalar& sy) argument
126 { return DiagonalMatrix<Scalar,2>(sx, sy); }
129 static inline DiagonalMatrix<Scalar,3> Scaling(const Scalar& sx, const Scalar& sy, const Scalar& sz) argument
130 { return DiagonalMatrix<Scalar,3>(sx, sy, sz); }
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMatrix.java61 public boolean postScale(float sx, float sy, float px, float py) { argument
62 scaleX *= sx;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DTransformBuilder.cpp117 double sx = 1.0; local
122 sx = firstValue->getDoubleValue();
128 sy = sx;
131 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType())));
136 double sx = 1.0; local
144 sx = firstValue->getDoubleValue();
154 sy = sx;
157 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType())));

Completed in 584 milliseconds

1234567