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

1 2 3 4 5 6 7

  /external/chromium/base/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...]
  /external/chromium/net/third_party/nss/ssl/bodge/
alghmac.h 46 HMAC_Destroy(HMACContext *cx, PRBool freeit);
62 HMAC_Init(HMACContext *cx, const SECHashObject *hash_obj,
67 HMAC_Begin(HMACContext *cx);
70 * cx HMAC Context
75 HMAC_Update(HMACContext *cx, const unsigned char *data, unsigned int data_len);
78 * cx HMAC context
84 HMAC_Finish(HMACContext *cx, unsigned char *result, unsigned int *result_len,
92 HMAC_Clone(HMACContext *cx);
blapi.h 61 ** "cx" is the random number generator context
274 extern SECStatus RC4_InitContext(RC4Context *cx,
284 ** "cx" the context
287 extern void RC4_DestroyContext(RC4Context *cx, PRBool freeit);
291 ** "cx" the context
300 extern SECStatus RC4_Encrypt(RC4Context *cx, unsigned char *output,
306 ** "cx" the context
315 extern SECStatus RC4_Decrypt(RC4Context *cx, unsigned char *output,
340 extern SECStatus RC2_InitContext(RC2Context *cx,
350 ** "cx" the contex
    [all...]
loader.h 107 void (* p_RC4_DestroyContext)(RC4Context *cx, PRBool freeit);
109 SECStatus (* p_RC4_Encrypt)(RC4Context *cx, unsigned char *output,
113 SECStatus (* p_RC4_Decrypt)(RC4Context *cx, unsigned char *output,
121 void (* p_RC2_DestroyContext)(RC2Context *cx, PRBool freeit);
123 SECStatus (* p_RC2_Encrypt)(RC2Context *cx, unsigned char *output,
127 SECStatus (* p_RC2_Decrypt)(RC2Context *cx, unsigned char *output,
134 void (* p_RC5_DestroyContext)(RC5Context *cx, PRBool freeit);
136 SECStatus (* p_RC5_Encrypt)(RC5Context *cx, unsigned char *output,
140 SECStatus (* p_RC5_Decrypt)(RC5Context *cx, unsigned char *output,
148 void (* p_DES_DestroyContext)(DESContext *cx, PRBool freeit)
    [all...]
loader.c 351 RC4_DestroyContext(RC4Context *cx, PRBool freeit)
355 (vector->p_RC4_DestroyContext)(cx, freeit);
359 RC4_Encrypt(RC4Context *cx, unsigned char *output, unsigned int *outputLen,
365 return (vector->p_RC4_Encrypt)(cx, output, outputLen, maxOutputLen, input,
370 RC4_Decrypt(RC4Context *cx, unsigned char *output, unsigned int *outputLen,
376 return (vector->p_RC4_Decrypt)(cx, output, outputLen, maxOutputLen, input,
390 RC2_DestroyContext(RC2Context *cx, PRBool freeit)
394 (vector->p_RC2_DestroyContext)(cx, freeit);
398 RC2_Encrypt(RC2Context *cx, unsigned char *output, unsigned int *outputLen,
404 return (vector->p_RC2_Encrypt)(cx, output, outputLen, maxOutputLen, 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);
50 * @param cx The x-coordinate of the center
55 public SweepGradient(float cx, float cy, int color0, int color1) {
56 native_instance = nativeCreate2(cx, cy, color0, color1);
  /external/webkit/WebCore/platform/graphics/brew/
IntSizeBrew.cpp 34 : m_width(size.cx)
42 size.cx = width();
  /external/skia/src/xml/
SkJSDisplayable.cpp 70 static void Destructor(JSContext *cx, JSObject *obj);
71 static JSBool GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
72 static JSBool SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
75 static JSBool Draw(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
82 JSBool SkJSDisplayable::Draw(JSContext *cx, JSObject *obj, uintN argc,
85 SkJSDisplayable *p = (SkJSDisplayable*) JS_GetPrivate(cx, obj);
104 static JSBool _class##Constructor(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval) { \
107 JS_SetPrivate(cx, obj, (void*) jsDisplayable); \
111 static JSObject* _class##Init(JSContext *cx, JSObject *obj, JSObject *proto) { \
112 JSObject *newProtoObj = JS_InitClass(cx, obj, proto, &gDisplayableClasses[SkType_##_class],
    [all...]
SkJS.cpp 85 global_enumerate(JSContext *cx, JSObject *obj)
88 return JS_EnumerateStandardClasses(cx, obj);
95 global_resolve(JSContext *cx, JSObject *obj, jsval id, uintN flags, JSObject **objp)
101 if (!JS_ResolveStandardClass(cx, obj, id, &resolved))
126 path = JS_strdup(cx, path);
135 JS_ReportOutOfMemory(cx);
146 fun = JS_DefineFunction(cx, obj, name, Exec, 0, JSPROP_ENUMERATE);
153 JS_free(cx, path);
  /external/webkit/WebCore/platform/graphics/win/
IntSizeWin.cpp 34 : m_width(s.cx)
  /external/webkit/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
  /bootable/bootloader/legacy/arch_msm7k/
mddi_console.c 77 static int cx, cy, cmaxx, cmaxy; variable
83 cx = 0;
114 drawglyph(pixels + cy * 12 * fb_width + cx * 6, FGCOLOR,
117 cx++;
118 if(cx < cmaxx) return;
122 cx = 0;
147 cx = 0;
  /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
  /development/samples/GlobalTime/src/com/android/globaltime/
Clock.java 59 * radius r0 to radius r1 about the center point (cx, cy),
65 * @param cx the X coordinate of the clock center
71 float radius, float pos, float cx, float cy, float r0, float r1) {
75 float p0x = cx + dx * r0;
77 float p1x = cx + dx * r1;
100 float cx, float cy, float width, float height) {
101 path.moveTo(cx - width / 2.0f, cy);
102 path.lineTo(cx, cy + height);
103 path.lineTo(cx + width / 2.0f, cy);
113 float cx, float cy, float width, float height)
    [all...]
  /external/skia/src/svg/
SkSVGCircle.cpp 24 SVG_ATTRIBUTE(cx),
34 SkScalar cx, cy, r; local
35 SkParse::FindScalar(f_cx.c_str(), &cx);
39 left = cx - r;
41 right = cx + r;
SkSVGEllipse.cpp 24 SVG_ATTRIBUTE(cx),
35 SkScalar cx, cy, rx, ry; local
36 SkParse::FindScalar(f_cx.c_str(), &cx);
41 left = cx - rx;
43 right = cx + rx;
  /external/webkit/WebCore/svg/
SVGCircleElement.idl 35 readonly attribute SVGAnimatedLength cx;
SVGEllipseElement.idl 34 readonly attribute SVGAnimatedLength cx;
SVGRadialGradientElement.idl 29 readonly attribute SVGAnimatedLength cx;
SVGTransform.cpp 121 void SVGTransform::setRotate(float angle, float cx, float cy)
125 m_center = FloatPoint(cx, cy);
127 // TODO: toString() implementation, which can show cx, cy (need to be stored?)
129 m_matrix.translate(cx, cy);
131 m_matrix.translate(-cx, -cy);
  /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...]
console.h 31 void Con_DrawCharacter (int cx, int line, int num);
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 38 int cx = clip.fLeft; local
49 const uint8_t* bits = srcMask.getAddr1(cx, cy);
50 SK_BLITBWMASK_DEVTYPE* device = bitmap.SK_BLITBWMASK_GETADDR(cx, cy);
52 if (cx == maskLeft && clip.fRight == srcMask.fBounds.fRight)
67 int left_edge = cx - maskLeft;
89 // have cx reflect our actual starting x-coord
90 cx -= left_edge & 7;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
SweepGradient.java 26 * @param cx The x-coordinate of the center
37 public SweepGradient(float cx, float cy,
41 mPaint = new SweepGradientPaint(cx, cy, mColors, mPositions);
47 * @param cx The x-coordinate of the center
52 public SweepGradient(float cx, float cy, int color0, int color1) {
53 this(cx, cy, new int[] { color0, color1}, null /*positions*/);
66 public SweepGradientPaint(float cx, float cy, int[] colors, float[] positions) {
68 mCx = cx;

Completed in 414 milliseconds

1 2 3 4 5 6 7