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

1 2 3 4 5 6 7 8

  /external/v8/test/webkit/fast/js/kde/
eval.js 38 var cx = c.x; variable
39 shouldBe("cx", "99");
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_geometry.h 34 double cx,cy,m; local
36 cx=0;cy=0;
39 cx+= *X++;
45 c[0]=cx*m;
54 double cx,cy,m; local
57 cx=0;cy=0;
61 cx+=temp[0];
67 c[0]=cx*m;
78 double cx,cy,cz,m; local
80 cx=0;cy=0;cz=0
100 double cx,cy,cz,m; local
    [all...]
  /external/skia/src/svg/parser/
SkSVGCircle.cpp 16 SVG_ATTRIBUTE(cx),
26 SkScalar cx, cy, r; local
27 SkParse::FindScalar(f_cx.c_str(), &cx);
31 left = cx - r;
33 right = cx + r;
SkSVGEllipse.cpp 16 SVG_ATTRIBUTE(cx),
27 SkScalar cx, cy, rx, ry; local
28 SkParse::FindScalar(f_cx.c_str(), &cx);
33 left = cx - rx;
35 right = cx + rx;
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 34 double cx,cy,m; local
36 cx=0;cy=0;
39 cx+= *X++;
45 c[0]=cx*m;
54 double cx,cy,m; local
57 cx=0;cy=0;
61 cx+=temp[0];
67 c[0]=cx*m;
78 double cx,cy,cz,m; local
80 cx=0;cy=0;cz=0
100 double cx,cy,cz,m; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 34 double cx,cy,m; local
36 cx=0;cy=0;
39 cx+= *X++;
45 c[0]=cx*m;
54 double cx,cy,m; local
57 cx=0;cy=0;
61 cx+=temp[0];
67 c[0]=cx*m;
78 double cx,cy,cz,m; local
80 cx=0;cy=0;cz=0
100 double cx,cy,cz,m; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
arc.h 40 VGfloat cx, cy; member in struct:arc
  /external/mesa3d/src/mesa/math/
m_clip_tmp.h 59 const GLfloat cx = from[0]; local
66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT;
77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT;
97 vProj[i][0] = cx * oow;
139 const GLfloat cx = from[0]; local
146 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
147 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
156 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT
195 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local
231 const GLfloat cx = from[0], cy = from[1]; local
    [all...]
  /external/skia/tests/
InfRectTest.cpp 42 int cx = r.centerX(); local
44 REPORTER_ASSERT(reporter, ((r.left() + r.right()) >> 1) == cx);
PathOpsSimplifyTrianglesThreadedTest.cpp 23 int cx = state.fC & 0x03; local
44 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
54 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
88 int cx = c & 0x03; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
PathOpsSimplifyDegenerateThreadedTest.cpp 22 int cx = state.fC & 0x03; local
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
51 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
80 int cx = c & 0x03; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
PathOpsSimplifyQuadThreadedTest.cpp 23 int cx = state.fC & 0x03; local
43 SkIntToScalar(cx), SkIntToScalar(cy));
58 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 23 int cx = state.fC & 0x03; local
43 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
56 str += sprintf(str, " path.lineTo(%d, %d);\n", cx, cy);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_atomic_msvc.h 163 mov cx, v local
164 xchg [eax], cx // NOLINT
165 mov v, cx
  /external/mesa3d/src/glx/
glxcurrent.c 172 struct glx_context *cx = __glXGetCurrentContext(); local
174 if (cx == &dummyContext) {
178 return (GLXContext) cx;
  /external/skia/gm/
filterbitmap.cpp 50 SkScalar cx = SkScalarHalf(fBM.width()); variable
56 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
162 int cx = (x * fNumChecks) / fSize; variable
164 if ((cx+cy)%2) {
filterindiabox.cpp 49 SkScalar cx = SkScalarHalf(fBM.width()); variable
56 fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(horizScale, vertScale);
inversepaths.cpp 14 static SkPath generate_square(SkScalar cx, SkScalar cy, SkScalar w) {
15 SkRect rect = SkRect::MakeXYWH(cx - w / 2, cy - w / 2, w, w);
21 static SkPath generate_rect_line(SkScalar cx, SkScalar cy, SkScalar l) {
22 SkRect rect = SkRect::MakeXYWH(cx - l / 2, cy, l, 0);
28 static SkPath generate_circle(SkScalar cx, SkScalar cy, SkScalar d) {
30 path.addCircle(cx, cy, d/2, SkPath::kCW_Direction);
34 static SkPath generate_line(SkScalar cx, SkScalar cy, SkScalar l) {
36 path.moveTo(cx - l / 2, cy);
37 path.lineTo(cx + l / 2, cy);
83 SkScalar cx = slideWidth / 2 + slideBoundary variable
    [all...]
  /external/skia/samplecode/
SampleBlur.cpp 32 const float cx = bm.width() * 0.5f; local
39 float dx = x - cx;
41 float d = (dx + dy) / (cx/2);
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 30 int cx = clip.fLeft; local
41 const uint8_t* bits = srcMask.getAddr1(cx, cy);
42 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
44 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight)
59 int left_edge = cx - maskLeft;
  /packages/apps/Gallery/src/com/android/camera/
RotateBitmap.java 60 int cx = mBitmap.getWidth() / 2; local
62 matrix.preTranslate(-cx, -cy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutPoint.java 112 int cx = mCanvas.getHorizontalTransform().translate(x); local
115 return ControlPoint.create(mCanvas, cx, cy);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
UVProjectionGenerator.java 120 float cx = bt.getCenter().x, cy = bt.getCenter().y; local
126 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, 0);
143 float sgn1 = Math.signum(triangle.get1().x-cx);
144 float sgn2 = Math.signum(triangle.get2().x-cx);
145 float sgn3 = Math.signum(triangle.get3().x-cx);
179 float cx = bs.getCenter().x, cy = bs.getCenter().y, cz = bs.getCenter().z; local
185 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, 0);
194 v.set(positions.get(i)-cx, positions.get(i + 1)-cy, positions.get(i + 2)-cz);
204 float sgn1 = Math.signum(triangle.get1().x-cx);
205 float sgn2 = Math.signum(triangle.get2().x-cx);
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast_tri_tmp.h 119 int cx[NR_PLANES]; local
126 cx[j] = (c[j]
130 TAG(do_block_4)(task, tri, plane, px, py, cx);
222 int cx[NR_PLANES]; local
225 cx[j] = (c[j]
232 TAG(do_block_16)(task, tri, plane, px, py, cx);
315 const int cx = (plane[j].c - 1 local
319 mask &= ~sign_bits4(cstep4[j], cx);
346 const int cx = (plane[j].c local
354 __m128i cstep0 = _mm_setr_epi32(cx, cx + dcdx, cx + dcdx*2, cx + dcdx*3)
    [all...]
  /external/openssh/openbsd-compat/
port-linux.c 182 char *oldctx, *newctx, *cx; local
192 if ((cx = index(oldctx, ':')) == NULL || (cx = index(cx + 1, ':')) ==
202 if (strncmp(cx, SSH_SELINUX_UNCONFINED_TYPE,
208 len = cx - oldctx + 1;
211 if ((cx = index(cx + 1, ':')))
212 strlcat(newctx, cx, newlen);

Completed in 50 milliseconds

1 2 3 4 5 6 7 8