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

1 2 3 4 5 6

  /external/quake/quake/src/QW/client/
block16.h 12 movw 0x12345678(,%ecx,2),%cx
14 movw %cx,2(%edi) variable
27 movw 0x12345678(,%ecx,2),%cx
29 movw %cx,2(%edi) variable
42 movw 0x12345678(,%ecx,2),%cx
44 movw %cx,2(%edi) variable
57 movw 0x12345678(,%ecx,2),%cx
59 movw %cx,2(%edi) variable
73 movw 0x12345678(,%ecx,2),%cx
75 movw %cx,2(%edi variable
90 movw %cx,2(%edi) variable
106 movw %cx,2(%edi) variable
122 movw %cx,2(%edi) variable
    [all...]
  /external/quake/quake/src/WinQuake/
block16.h 31 movw 0x12345678(,%ecx,2),%cx
33 movw %cx,2(%edi) variable
46 movw 0x12345678(,%ecx,2),%cx
48 movw %cx,2(%edi) variable
61 movw 0x12345678(,%ecx,2),%cx
63 movw %cx,2(%edi) variable
76 movw 0x12345678(,%ecx,2),%cx
78 movw %cx,2(%edi) variable
92 movw 0x12345678(,%ecx,2),%cx
94 movw %cx,2(%edi variable
109 movw %cx,2(%edi) variable
125 movw %cx,2(%edi) variable
141 movw %cx,2(%edi) variable
    [all...]
  /external/skia/src/svg/
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/Gallery2/jni_mosaic/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/compiler-rt/lib/sanitizer_common/
sanitizer_atomic_msvc.h 130 mov cx, v local
131 xchg [eax], cx // NOLINT
132 mov v, cx
  /external/libppp/src/
command.h 43 struct datalink *cx; /* Our context */ member in struct:cmdargs
  /external/skia/tests/
InfRectTest.cpp 44 int cx = r.centerX(); local
46 REPORTER_ASSERT(reporter, ((r.left() + r.right()) >> 1) == cx);
  /external/webkit/Source/WebCore/platform/graphics/
UnitBezier.h 37 cx = 3.0 * p1x;
38 bx = 3.0 * (p2x - p1x) - cx;
39 ax = 1.0 - cx -bx;
48 // `ax t^3 + bx t^2 + cx t' expanded using Horner's rule.
49 return ((ax * t + bx) * t + cx) * t;
59 return (3.0 * ax * t + 2.0 * bx) * t + cx;
116 double cx; member in struct:WebCore::UnitBezier
  /external/webkit/Source/WebCore/svg/
SVGTransform.cpp 101 void SVGTransform::setRotate(float angle, float cx, float cy)
105 m_center = FloatPoint(cx, cy);
107 // TODO: toString() implementation, which can show cx, cy (need to be stored?)
109 m_matrix.translate(cx, cy);
111 m_matrix.translate(-cx, -cy);
151 float cx = narrowPrecisionToFloat(cosAngle != 1 ? (m_matrix.e() * (1 - cosAngle) - m_matrix.f() * sinAngle) / (1 - cosAngle) / 2 : 0); local
153 if (cx || cy)
154 return makeString("rotate(", String::number(m_angle), ' ', String::number(cx), ' ', String::number(cy), ')');
RadialGradientAttributes.h 42 SVGLength cx() const { return m_cx; } function in struct:WebCore::RadialGradientAttributes
  /external/skia/legacy/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;
81 // have cx reflect our actual starting x-coord
82 cx -= left_edge & 7;
SkBlitter.cpp 111 int cx = clip.fLeft; local
117 const uint8_t* bits = mask.getAddr1(cx, cy);
119 if (cx == maskLeft && clip.fRight == mask.fBounds.fRight) {
121 bits_to_runs(this, cx, cy, bits, 0xFF, mask_rowBytes, 0xFF);
126 int left_edge = cx - maskLeft;
146 // have cx reflect our actual starting x-coord
147 cx -= left_edge & 7;
152 bits_to_runs(this, cx, cy, bits, left_mask, 1, rite_mask);
158 bits_to_runs(this, cx, cy, bits, left_mask, full_runs + 2, rite_mask);
  /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;
81 // have cx reflect our actual starting x-coord
82 cx -= left_edge & 7;
SkBlitter.cpp 117 int cx = clip.fLeft; local
123 const uint8_t* bits = mask.getAddr1(cx, cy);
125 if (cx == maskLeft && clip.fRight == mask.fBounds.fRight) {
127 bits_to_runs(this, cx, cy, bits, 0xFF, mask_rowBytes, 0xFF);
132 int left_edge = cx - maskLeft;
152 // have cx reflect our actual starting x-coord
153 cx -= left_edge & 7;
158 bits_to_runs(this, cx, cy, bits, left_mask, 1, rite_mask);
164 bits_to_runs(this, cx, cy, bits, left_mask, full_runs + 2, rite_mask);
SkMaskFilter.cpp 64 int cx = center.x(); local
70 m.fBounds.fRight = cx;
78 m.fBounds.fLeft = cx + 1;
86 m.fBounds.fRight = cx;
94 m.fBounds.fLeft = cx + 1;
102 innerR.set(outerR.left() + cx - mask.fBounds.left(),
104 outerR.right() + (cx + 1 - mask.fBounds.right()),
126 alpha[0] = *mask.getAddr8(cx, mask.fBounds.top() + y);
139 alpha[0] = *mask.getAddr8(cx, mask.fBounds.bottom() - y - 1);
  /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/openssh/openbsd-compat/
port-linux.c 183 char *oldctx, *newctx, *cx; local
193 if ((cx = index(oldctx, ':')) == NULL || (cx = index(cx + 1, ':')) ==
203 if (strncmp(cx, SSH_SELINUX_UNCONFINED_TYPE,
209 len = cx - oldctx + 1;
212 if ((cx = index(cx + 1, ':')))
213 strlcat(newctx, cx, newlen);
  /external/skia/gm/
tablecolorfilter.cpp 41 SkScalar cx = SkIntToScalar(W)/2; local
52 canvas.drawCircle(cx, cy, cx, paint);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterVignette.java 42 Bitmap bitmap, int w, int h, int cx, int cy, float radx, float rady, float strength);
44 private float calcRadius(float cx, float cy, int w, int h) {
45 float d = cx;
46 if (d < (w - cx)) {
47 d = w - cx;
79 float cx = w / 2; local
81 float r = calcRadius(cx, cy, w, h);
86 cx = rep.getCenterX();
88 float[] center = new float[] { cx, cy };
90 cx = center[0]
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Compass.java 106 int cx = w / 2; local
109 canvas.translate(cx, cy);

Completed in 853 milliseconds

1 2 3 4 5 6