HomeSort by relevance Sort by last modified time
    Searched defs:sx (Results 26 - 50 of 233) sorted by null

12 3 4 5 6 7 8 910

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_fmodl.c 71 int ix,iy,n,sx; local
75 sx = ux.bits.sign;
91 return Zero[sx]; /* |x|=|y| return x*0*/
125 return Zero[sx];
134 return Zero[sx];
s_remquol.c 74 int ix,iy,n,q,sx,sxy; local
78 sx = ux.bits.sign;
79 sxy = sx ^ uy.bits.sign;
100 return Zero[sx]; /* |x|=|y| return x*0*/
143 return Zero[sx];
172 ux.bits.sign ^= sx;
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ColorCube.java 43 final int sx = 32; local
48 tb.setX(sx);
54 int dat[] = new int[sx * sy * sz];
57 for (int x = 0; x < sx; x++ ) {
59 v |= (0xff * x / (sx - 1));
62 dat[z*sy*sx + y*sx + x] = v;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
ColorCube.java 35 final int sx = 32; local
40 tb.setX(sx);
46 int dat[] = new int[sx * sy * sz];
49 for (int x = 0; x < sx; x++ ) {
51 v |= (0xff * x / (sx - 1));
54 dat[z*sy*sx + y*sx + x] = v;
  /packages/apps/Gallery2/jni/filters/
vibrance.c 42 float sx = (float)(Vib/(1+exp(-red*3))); local
43 S = sx+1;
  /bootable/recovery/minui/
resources.c 147 int sx = x * 3; local
149 unsigned char r = pRow[sx];
150 unsigned char g = pRow[sx + 1];
151 unsigned char b = pRow[sx + 2];
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 123 double sx = 1.0; local
128 sx = firstValue->getDoubleValue();
134 sy = sx;
137 operations.operations().append(ScaleTransformOperation::create(sx, sy, 1.0, getTransformOperationType(transformValue->operationType())));
142 double sx = 1.0; local
150 sx = firstValue->getDoubleValue();
160 sy = sx;
163 operations.operations().append(ScaleTransformOperation::create(sx, sy, sz, getTransformOperationType(transformValue->operationType())));
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_images.c 273 VGImage src, VGint sx, VGint sy,
290 handle_to_image(src), sx, sy, local
312 VGImage src, VGint sx, VGint sy,
327 image_set_pixels(dx, dy, handle_to_image(src), sx, sy, width,
332 VGint sx, VGint sy,
350 sx, sy, width, height);
393 VGint sx, VGint sy,
421 if (sx < 0) {
422 xoffset = -sx;
424 width += sx;
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkStrokerPriv.cpp 29 SkScalar sx = SkScalarMul(nx, CUBIC_ARC_FACTOR); local
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /external/clang/test/CXX/class.access/class.protected/
p1.cpp 7 static int sx; // expected-note 3 {{declared}} \ member in class:test0::A
19 (void) a.sx; // expected-error {{'sx' is a protected member}}
23 (void) b.sx; // expected-error {{'sx' is a protected member}}
27 (void) c.sx; // expected-error {{'sx' is a protected member}}
31 (void) d.sx; // expected-error {{'sx' is a private member}}
38 static int sx; member in class:test1::A
72 static int sx; member in class:test2::A
107 static int sx; member in class:test3::A
142 static int sx; \/\/ expected-note 3{{member is declared here}} member in class:test4::A
180 static int sx; \/\/ expected-note 3{{member is declared here}} member in class:test5::A
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
ParticleDepositionHeightMap.java 130 int sx, sy; local
187 sx = x;
201 tx = (sx + dx[(jj + m) % 8]) % (size);
206 if (tempBuffer[tx][ty] + 1.0f < tempBuffer[sx][sy]) {
208 tempBuffer[sx][sy] -= 1.0f;
209 sx = tx;
220 if (tempBuffer[sx][sy] > tempBuffer[calderaX][calderaY]) {
221 calderaX = sx;
242 sx = minx;
248 for (x = sx; x <= tx; x++) {
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
api_images.c 273 VGImage src, VGint sx, VGint sy,
290 handle_to_image(src), sx, sy, local
312 VGImage src, VGint sx, VGint sy,
327 image_set_pixels(dx, dy, handle_to_image(src), sx, sy, width,
332 VGint sx, VGint sy,
350 sx, sy, width, height);
393 VGint sx, VGint sy,
421 if (sx < 0) {
422 xoffset = -sx;
424 width += sx;
    [all...]
  /external/skia/src/core/
SkStrokerPriv.cpp 29 SkScalar sx = SkScalarMul(nx, CUBIC_ARC_FACTOR); local
32 path->cubicTo(px + nx + CWX(sx, sy), py + ny + CWY(sx, sy),
33 px + CWX(nx, ny) + sx, py + CWY(nx, ny) + sy,
35 path->cubicTo(px + CWX(nx, ny) - sx, py + CWY(nx, ny) - sy,
36 px - nx + CWX(sx, sy), py - ny + CWY(sx, sy),
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 242 float sx = 1.0f; local
247 sx = mFromX + ((mToX - mFromX) * interpolatedTime);
254 t.getMatrix().setScale(sx, sy);
256 t.getMatrix().setScale(sx, sy, scale * mPivotX, scale * mPivotY);
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 77 SkScalar sx = SkFloatToScalar(fx); local
82 c->drawBitmap(b, sx, sy, p);
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 49 float sx = fy * upZ - fz * upY; local
55 float uy = sz * fx - sx * fz;
56 float uz = sx * fy - sy * fx;
59 m[0] = sx;
  /cts/suite/cts/deviceTests/opengl/jni/graphics/
Matrix.cpp 150 float sx = fy * upZ - fz * upY; local
155 float rls = 1.0f / (float) sqrt(sx * sx + sy * sy + sz * sz);
156 sx *= rls;
162 float uy = sz * fx - sx * fz;
163 float uz = sx * fy - sy * fx;
166 d[0] = sx;
  /external/chromium_org/cc/animation/
transform_operations_unittest.cc 214 double sx = 2; local
223 operations.AppendScale(sx, sy, sz);
227 expected_scale_matrix.Scale3d(sx, sy, sz);
300 double sx = 2; local
304 operations_from.AppendScale(sx, sy, sz);
307 matrix_from.Scale3d(sx, sy, sz);
309 sx = 4;
313 operations_to.AppendScale(sx, sy, sz);
316 matrix_to.Scale3d(sx, sy, sz);
  /external/chromium_org/content/browser/accessibility/
browser_accessibility.cc 165 int sx = 0; local
167 if (parent->GetIntAttribute(AccessibilityNodeData::ATTR_SCROLL_X, &sx) &&
169 bounds.Offset(-sx, -sy);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
AffineTransform.cpp 153 AffineTransform& AffineTransform::scale(double sx, double sy)
155 m_transform[0] *= sx;
156 m_transform[1] *= sx;
176 AffineTransform& AffineTransform::scaleNonUniform(double sx, double sy)
178 return scale(sx, sy);
196 AffineTransform& AffineTransform::shear(double sx, double sy)
203 m_transform[2] += sx * a;
204 m_transform[3] += sx * b;
377 double sx = xScale(); local
385 sx = -sx
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_vec4.cpp 505 int sx = BRW_GET_SWZ(inst->src[i].swizzle, 0) + new_chan[src]; local
509 inst->src[i].swizzle = BRW_SWIZZLE4(sx, sy, sz, sw);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aatriangle.c 221 const GLfloat sx = x + samples[i][0]; local
224 GLfloat cross = (dx0 * (sy - v0[1]) - dy0 * (sx - v0[0]));
237 cross = (dx1 * (sy - v1[1]) - dy1 * (sx - v1[0]));
247 cross = (dx2 * (sy - v2[1]) - dy2 * (sx - v2[0]));
  /external/chromium_org/third_party/skia/src/opts/
SkBitmapFilter_opts_SSE2.cpp 64 int sx = SkScalarFloorToInt(srcPt.fX); local
72 int x0 = SkTMax(0, int(ceil(sx-s.getBitmapFilter()->width() + 0.5f)));
73 int x1 = SkTMin(maxX, int(floor(sx+s.getBitmapFilter()->width() + 0.5f)));
134 int sx = SkScalarFloorToInt(srcPt.fX); local
139 int x0 = SkTMax(0, int(ceil(sx-s.getBitmapFilter()->width() + 0.5f)));
140 int x1 = SkTMin(maxX, int(floor(sx+s.getBitmapFilter()->width() + 0.5f)));
  /external/clang/test/SemaCXX/
class.cpp 9 sx = 0;
18 sx = 0;
48 sx = 0;
67 static int sx; member in class:C
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4.cpp 505 int sx = BRW_GET_SWZ(inst->src[i].swizzle, 0) + new_chan[src]; local
509 inst->src[i].swizzle = BRW_SWIZZLE4(sx, sy, sz, sw);

Completed in 4458 milliseconds

12 3 4 5 6 7 8 910