Searched defs:cx (Results 1 - 25 of 77) sorted by relevance

1234

/external/quake/quake/src/QW/client/
H A Dblock16.h12 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, 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/
H A Dblock16.h31 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, variable
109 movw %cx,2(%edi) variable
125 movw %cx,2(%edi) variable
141 movw %cx,2(%edi) variable
[all...]
/external/skia/src/svg/
H A DSkSVGCircle.cpp16 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;
H A DSkSVGEllipse.cpp16 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;
/external/libppp/src/
H A Dcommand.h43 struct datalink *cx; /* Our context */ member in struct:cmdargs
H A Ddeflate.c47 z_stream cx; member in struct:deflate_state
62 deflateReset(&state->cx);
104 state->cx.next_out = wp;
105 state->cx.avail_out = DEFLATE_CHUNK_LEN - 2;
106 state->cx.next_in = MBUF_CTOP(mi);
107 state->cx.avail_in = mi->m_len;
112 if ((res = deflate(&state->cx, flush)) != Z_OK) {
116 res, state->cx.msg ? state->cx.msg : "");
123 if (flush == Z_SYNC_FLUSH && state->cx
[all...]
H A Dradius.h47 } cx; member in struct:radius
H A Dsystems.c317 struct prompt *prompt, struct datalink *cx, int how)
359 n = ReadSystem(bundle, name, arg, prompt, cx, how);
410 name, cx);
478 struct prompt *prompt, struct datalink *cx)
482 return ReadSystem(bundle, name, file, prompt, cx, SYSTEM_EXEC);
316 ReadSystem(struct bundle *bundle, const char *name, const char *file, struct prompt *prompt, struct datalink *cx, int how) argument
477 system_Select(struct bundle *bundle, const char *name, const char *file, struct prompt *prompt, struct datalink *cx) argument
/external/skia/src/effects/
H A DSkRectShape.cpp32 void SkRectShape::setCircle(SkScalar cx, SkScalar cy, SkScalar radius) { argument
33 fBounds.set(cx - radius, cy - radius, cx + radius, cy + radius);
/external/clang/test/SemaCXX/
H A Dwarn-unused-filescoped.cpp40 const unsigned int cx = 0; variable
H A Ddefault-assignment-operator.cpp30 void f(X x, const X cx) { argument
31 x = cx; // expected-note{{assignment operator for 'X' first required here}}
32 x = cx;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_msvc.h106 mov cx, v local
107 xchg [eax], cx // NOLINT
108 mov v, cx
/external/skia/src/core/
H A DSkBlitBWMaskTemplate.h30 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;
/external/webkit/Source/WebCore/platform/graphics/
H A DUnitBezier.h37 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/
H A DSVGTransform.cpp101 void SVGTransform::setRotate(float angle, float cx, float cy) argument
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), ')');
H A DSVGTransformDistance.cpp41 SVGTransformDistance::SVGTransformDistance(SVGTransform::SVGTransformType type, float angle, float cx, float cy, const AffineTransform& transform) argument
44 , m_cx(cx)
H A DRadialGradientAttributes.h42 SVGLength cx() const { return m_cx; } function in struct:WebCore::RadialGradientAttributes
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32window.cc50 DWORD exstyle, int x, int y, int cx, int cy) {
71 x, y, cx, cy, parent, NULL, instance_, this);
49 Create(HWND parent, const wchar_t* title, DWORD style, DWORD exstyle, int x, int y, int cx, int cy) argument
/external/openssh/openbsd-compat/
H A Dport-linux.c183 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/bench/
H A Dbench_graph_svg.py545 def cx(x): function in function:output_svg
575 <circle cx="1" cy="1" r="1"/>
619 print '<rect id=%s x=%s y=%s' % (qa(revision), qa(cx(x)), qa(disp_y),),
716 print '%s,%s' % (str(cx(min_x)), str(cy(slope*min_x + intercept))),
717 print '%s,%s' % (str(cx(max_x)), str(cy(slope*max_x + intercept))),
732 print '%s,%s' % (str(cx(point[0])), str(cy(point[1]))),
/external/skia/gm/
H A Dtablecolorfilter.cpp41 SkScalar cx = SkIntToScalar(W)/2; local
52 canvas.drawCircle(cx, cy, cx, paint);
/external/skia/samplecode/
H A DSampleBlur.cpp30 const float cx = bm.width() * 0.5f; local
37 float dx = x - cx;
39 float d = (dx + dy) / (cx/2);
H A DSampleOvalTest.cpp56 SkScalar cx = SkScalarHalf(fSize.width()); local
65 SkScalar dist = SkPoint::Length(px - cx, py - cy);
/external/grub/netboot/
H A D3c509.c43 * MCA support added by Adam Fritzler (mid@auk.cx)
338 int cx, al; local
340 for (al = 0xff, cx = 0; cx < 255; cx++) {
/external/qemu-pc-bios/vgabios/
H A Dvbe.c1263 mov ax, cx
1291 mov cx, ax variable
1352 mov ax, cx
1360 mov cx, ax variable
1445 mov cx, # vesa_pm_end variable
1446 sub cx, di variable

Completed in 407 milliseconds

1234