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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/crypto/third_party/nss/
blapi.h 50 extern void SHA256_DestroyContext(SHA256Context *cx, PRBool freeit);
51 extern void SHA256_Begin(SHA256Context *cx);
52 extern void SHA256_Update(SHA256Context *cx, const unsigned char *input,
54 extern void SHA256_End(SHA256Context *cx, unsigned char *digest,
59 extern void SHA256_TraceState(SHA256Context *cx);
60 extern unsigned int SHA256_FlattenSize(SHA256Context *cx);
61 extern SECStatus SHA256_Flatten(SHA256Context *cx,unsigned char *space);
68 extern void SHA512_DestroyContext(SHA512Context *cx, PRBool freeit);
69 extern void SHA512_Begin(SHA512Context *cx);
70 extern void SHA512_Update(SHA512Context *cx, const unsigned char *input
    [all...]
  /frameworks/base/graphics/java/android/graphics/
SweepGradient.java 24 * @param cx The x-coordinate of the center
35 public SweepGradient(float cx, float cy,
44 native_instance = nativeCreate1(cx, cy, colors, positions);
45 native_shader = nativePostCreate1(native_instance, cx, cy, colors, positions);
51 * @param cx The x-coordinate of the center
56 public SweepGradient(float cx, float cy, int color0, int color1) {
57 native_instance = nativeCreate2(cx, cy, color0, color1);
58 native_shader = nativePostCreate2(native_instance, cx, cy, color0, color1);
64 private static native int nativePostCreate1(int native_shader, float cx, float cy,
66 private static native int nativePostCreate2(int native_shader, float cx, float cy
    [all...]
  /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/libppp/src/
radius.c 168 if (rad_request_authenticator(r->cx.rad, R, sizeof R) != AUTH_LEN) {
178 S = rad_server_secret(r->cx.rad); /* We need the RADIUS secret */
265 r->cx.fd = -1; /* Stop select()ing */
266 stype = r->cx.auth ? "auth" : "acct";
272 if (!r->cx.auth) {
273 rad_close(r->cx.rad);
281 if (!r->cx.auth) {
282 rad_close(r->cx.rad);
291 if (r->cx.auth)
292 auth_Failure(r->cx.auth)
    [all...]
deflate.c 47 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.avail_out != 0
    [all...]
command.c 212 const char *cx; local
245 cx = showcx(cmd);
250 cmd->name, cxlen, cxlen, cx, dmax, dmax, cmd->helpmes);
263 Concatinate(arg->cx->physical->link.lcp.cfg.ident,
264 sizeof arg->cx->physical->link.lcp.cfg.ident,
272 if (arg->cx->state < DATALINK_LCP) {
276 return lcp_SendIdentification(&arg->cx->physical->link.lcp) ? 0 : 1;
293 bundle_DatalinkClone(arg->bundle, arg->cx, name);
305 if (arg->cx->state != DATALINK_CLOSED) {
310 bundle_DatalinkRemove(arg->bundle, arg->cx);
1282 struct datalink *cx = arg->cx ? local
1647 struct datalink *cx = arg->cx; \/* LOCAL_CX uses this *\/ local
2680 struct datalink *cx; local
2837 struct datalink *cx = arg->cx; \/* LOCAL_CX uses this *\/ local
3107 struct datalink *cx; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 34 : m_width(size.cx)
42 size.cx = width();
  /external/skia/legacy/src/xml/
SkJSDisplayable.cpp 62 static void Destructor(JSContext *cx, JSObject *obj);
63 static JSBool GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
64 static JSBool SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
67 static JSBool Draw(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
74 JSBool SkJSDisplayable::Draw(JSContext *cx, JSObject *obj, uintN argc,
77 SkJSDisplayable *p = (SkJSDisplayable*) JS_GetPrivate(cx, obj);
96 static JSBool _class##Constructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { \
99 JS_SetPrivate(cx, obj, (void*) jsDisplayable); \
103 static JSObject* _class##Init(JSContext *cx, JSObject *obj, JSObject *proto) { \
104 JSObject *newProtoObj = JS_InitClass(cx, obj, proto, &gDisplayableClasses[SkType_##_class],
    [all...]
  /external/skia/src/xml/
SkJSDisplayable.cpp 62 static void Destructor(JSContext *cx, JSObject *obj);
63 static JSBool GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
64 static JSBool SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
67 static JSBool Draw(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
74 JSBool SkJSDisplayable::Draw(JSContext *cx, JSObject *obj, uintN argc,
77 SkJSDisplayable *p = (SkJSDisplayable*) JS_GetPrivate(cx, obj);
96 static JSBool _class##Constructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { \
99 JS_SetPrivate(cx, obj, (void*) jsDisplayable); \
103 static JSObject* _class##Init(JSContext *cx, JSObject *obj, JSObject *proto) { \
104 JSObject *newProtoObj = JS_InitClass(cx, obj, proto, &gDisplayableClasses[SkType_##_class],
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
IntSizeWin.cpp 34 : m_width(s.cx)
  /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...]
  /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/grub/stage2/
apm.S 47 andw $0x0002, %cx
61 xorw %cx, %cx
74 movw %cx, ABS(EXT_C(apm_bios_info)) + 8
91 xorw %cx, %cx
104 movw %cx, ABS(EXT_C(apm_bios_info)) + 12
  /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;
  /external/webkit/Source/WebCore/svg/
SVGCircleElement.idl 35 readonly attribute SVGAnimatedLength cx;
SVGEllipseElement.idl 34 readonly attribute SVGAnimatedLength cx;
SVGRadialGradientElement.idl 29 readonly attribute SVGAnimatedLength cx;
  /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/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;
  /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;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PhotoFallbackEffect.java 107 float cx = d.centerX() * p + s.centerX() * (1 - p); local
115 mTarget.set(cx - ch / 2, cy - ch / 2, cx + ch / 2, cy + ch / 2);
123 mTarget.set(cx - cw / 2, cy - ch / 2, cx - ch / 2, cy + ch / 2);
128 mTarget.set(cx + ch / 2, cy - ch / 2, cx + cw / 2, cy + ch / 2);
135 mTarget.set(cx - cw / 2, cy - cw / 2, cx + cw / 2, cy + cw / 2);
143 mTarget.set(cx - cw / 2, cy - ch / 2, cx + cw / 2, cy - cw / 2)
    [all...]

Completed in 1695 milliseconds

1 2 3 4 5 6 7 8 91011>>