Searched refs:cx (Results 1 - 25 of 120) sorted by relevance

12345

/external/chromium/base/third_party/nss/
H A Dblapi.h50 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, cons
[all...]
/external/chromium/net/third_party/nss/ssl/bodge/
H A Dalghmac.h46 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);
H A Dblapi.h61 ** "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" th
[all...]
H A Dloader.h107 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, PRBoo
[all...]
H A Dloader.c351 RC4_DestroyContext(RC4Context *cx, PRBool freeit) argument
355 (vector->p_RC4_DestroyContext)(cx, freeit);
359 RC4_Encrypt(RC4Context *cx, unsigned char *output, unsigned int *outputLen, argument
365 return (vector->p_RC4_Encrypt)(cx, output, outputLen, maxOutputLen, input,
370 RC4_Decrypt(RC4Context *cx, unsigned char *output, unsigned int *outputLen, argument
376 return (vector->p_RC4_Decrypt)(cx, output, outputLen, maxOutputLen, input,
390 RC2_DestroyContext(RC2Context *cx, PRBool freeit) argument
394 (vector->p_RC2_DestroyContext)(cx, freeit);
398 RC2_Encrypt(RC2Context *cx, unsigned char *output, unsigned int *outputLen, argument
404 return (vector->p_RC2_Encrypt)(cx, outpu
409 RC2_Decrypt(RC2Context *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
429 RC5_DestroyContext(RC5Context *cx, PRBool freeit) argument
437 RC5_Encrypt(RC5Context *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
448 RC5_Decrypt(RC5Context *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
468 DES_DestroyContext(DESContext *cx, PRBool freeit) argument
476 DES_Encrypt(DESContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
487 DES_Decrypt(DESContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
506 SEED_DestroyContext(SEEDContext *cx, PRBool freeit) argument
514 SEED_Encrypt(SEEDContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
525 SEED_Decrypt(SEEDContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
547 AES_DestroyContext(AESContext *cx, PRBool freeit) argument
555 AES_Encrypt(AESContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
566 AES_Decrypt(AESContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
601 MD5_DestroyContext(MD5Context *cx, PRBool freeit) argument
609 MD5_Begin(MD5Context *cx) argument
617 MD5_Update(MD5Context *cx, const unsigned char *input, unsigned int inputLen) argument
625 MD5_End(MD5Context *cx, unsigned char *digest, unsigned int *digestLen, unsigned int maxDigestLen) argument
634 MD5_FlattenSize(MD5Context *cx) argument
642 MD5_Flatten(MD5Context *cx,unsigned char *space) argument
658 MD5_TraceState(MD5Context *cx) argument
682 MD2_DestroyContext(MD2Context *cx, PRBool freeit) argument
690 MD2_Begin(MD2Context *cx) argument
698 MD2_Update(MD2Context *cx, const unsigned char *input, unsigned int inputLen) argument
706 MD2_End(MD2Context *cx, unsigned char *digest, unsigned int *digestLen, unsigned int maxDigestLen) argument
715 MD2_FlattenSize(MD2Context *cx) argument
723 MD2_Flatten(MD2Context *cx,unsigned char *space) argument
764 SHA1_DestroyContext(SHA1Context *cx, PRBool freeit) argument
772 SHA1_Begin(SHA1Context *cx) argument
780 SHA1_Update(SHA1Context *cx, const unsigned char *input, unsigned int inputLen) argument
789 SHA1_End(SHA1Context *cx, unsigned char *digest, unsigned int *digestLen, unsigned int maxDigestLen) argument
798 SHA1_TraceState(SHA1Context *cx) argument
806 SHA1_FlattenSize(SHA1Context *cx) argument
814 SHA1_Flatten(SHA1Context *cx,unsigned char *space) argument
961 SHA256_DestroyContext(SHA256Context *cx, PRBool freeit) argument
969 SHA256_Begin(SHA256Context *cx) argument
977 SHA256_Update(SHA256Context *cx, const unsigned char *input, unsigned int inputLen) argument
986 SHA256_End(SHA256Context *cx, unsigned char *digest, unsigned int *digestLen, unsigned int maxDigestLen) argument
995 SHA256_TraceState(SHA256Context *cx) argument
1003 SHA256_FlattenSize(SHA256Context *cx) argument
1011 SHA256_Flatten(SHA256Context *cx,unsigned char *space) argument
1051 SHA512_DestroyContext(SHA512Context *cx, PRBool freeit) argument
1059 SHA512_Begin(SHA512Context *cx) argument
1067 SHA512_Update(SHA512Context *cx, const unsigned char *input, unsigned int inputLen) argument
1076 SHA512_End(SHA512Context *cx, unsigned char *digest, unsigned int *digestLen, unsigned int maxDigestLen) argument
1085 SHA512_TraceState(SHA512Context *cx) argument
1093 SHA512_FlattenSize(SHA512Context *cx) argument
1101 SHA512_Flatten(SHA512Context *cx,unsigned char *space) argument
1142 SHA384_DestroyContext(SHA384Context *cx, PRBool freeit) argument
1150 SHA384_Begin(SHA384Context *cx) argument
1158 SHA384_Update(SHA384Context *cx, const unsigned char *input, unsigned int inputLen) argument
1167 SHA384_End(SHA384Context *cx, unsigned char *digest, unsigned int *digestLen, unsigned int maxDigestLen) argument
1176 SHA384_TraceState(SHA384Context *cx) argument
1184 SHA384_FlattenSize(SHA384Context *cx) argument
1192 SHA384_Flatten(SHA384Context *cx,unsigned char *space) argument
1218 AESKeyWrap_DestroyContext(AESKeyWrapContext *cx, PRBool freeit) argument
1226 AESKeyWrap_Encrypt(AESKeyWrapContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
1236 AESKeyWrap_Decrypt(AESKeyWrapContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
1376 AES_InitContext(AESContext *cx, const unsigned char *key, unsigned int keylen, const unsigned char *iv, int mode, unsigned int encrypt, unsigned int blocklen) argument
1387 AESKeyWrap_InitContext(AESKeyWrapContext *cx, const unsigned char *key, unsigned int keylen, const unsigned char *iv, int mode, unsigned int encrypt, unsigned int blocklen) argument
1398 DES_InitContext(DESContext *cx, const unsigned char *key, unsigned int keylen, const unsigned char *iv, int mode, unsigned int encrypt, unsigned int xtra) argument
1408 SEED_InitContext(SEEDContext *cx, const unsigned char *key, unsigned int keylen, const unsigned char *iv, int mode, unsigned int encrypt, unsigned int xtra) argument
1418 RC2_InitContext(RC2Context *cx, const unsigned char *key, unsigned int keylen, const unsigned char *iv, int mode, unsigned int effectiveKeyLen, unsigned int xtra) argument
1429 RC4_InitContext(RC4Context *cx, const unsigned char *key, unsigned int keylen, const unsigned char *x1, int x2, unsigned int x3, unsigned int x4) argument
1505 HMAC_Destroy(HMACContext *cx, PRBool freeit) argument
1522 HMAC_Init(HMACContext *cx, const SECHashObject *hashObj, const unsigned char *secret, unsigned int secret_len, PRBool isFIPS) argument
1531 HMAC_Begin(HMACContext *cx) argument
1539 HMAC_Update(HMACContext *cx, const unsigned char *data, unsigned int data_len) argument
1547 HMAC_Finish(HMACContext *cx, unsigned char *result, unsigned int *result_len, unsigned int max_result_len) argument
1556 HMAC_Clone(HMACContext *cx) argument
1593 Camellia_InitContext(CamelliaContext *cx, const unsigned char *key, unsigned int keylen, const unsigned char *iv, int mode, unsigned int encrypt, unsigned int unused) argument
1623 Camellia_DestroyContext(CamelliaContext *cx, PRBool freeit) argument
1631 Camellia_Encrypt(CamelliaContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
1642 Camellia_Decrypt(CamelliaContext *cx, unsigned char *output, unsigned int *outputLen, unsigned int maxOutputLen, const unsigned char *input, unsigned int inputLen) argument
[all...]
/external/webkit/WebCore/platform/graphics/brew/
H A DIntSizeBrew.cpp34 : m_width(size.cx)
42 size.cx = width();
/external/skia/src/xml/
H A DSkJSDisplayable.cpp70 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, argument
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, ob
222 Destructor(JSContext *cx, JSObject *obj) argument
226 GetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) argument
304 SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) argument
382 InitializeDisplayables(const SkBitmap& bitmap, JSContext *cx, JSObject *obj, JSObject *proto) argument
[all...]
H A DSkJS.cpp85 global_enumerate(JSContext *cx, JSObject *obj) argument
88 return JS_EnumerateStandardClasses(cx, obj);
95 global_resolve(JSContext *cx, JSObject *obj, jsval id, uintN flags, JSObject **objp) argument
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/
H A DIntSizeWin.cpp34 : m_width(s.cx)
/external/grub/stage2/
H A Dapm.S47 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
H A Dnbloader.S64 movw $0x4000, %cx
106 addw $1, %cx
107 shrw $1, %cx
/external/skia/src/svg/
H A DSkSVGCircle.cpp24 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;
H A DSkSVGEllipse.cpp24 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/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/WebCore/svg/
H A DSVGCircleElement.idl35 readonly attribute SVGAnimatedLength cx;
H A DSVGEllipseElement.idl34 readonly attribute SVGAnimatedLength cx;
H A DSVGRadialGradientElement.idl29 readonly attribute SVGAnimatedLength cx;
H A DSVGTransform.cpp121 void SVGTransform::setRotate(float angle, float cx, float cy) argument
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/
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...]
H A Dconsole.h45 void Con_DrawCharacter (int cx, int line, int num);
/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...]
H A Dconsole.h31 void Con_DrawCharacter (int cx, int line, int num);
/external/skia/src/core/
H A DSkBlitBWMaskTemplate.h38 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;
/external/chromium/third_party/icu/source/common/
H A Ducnv_ext.c120 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState, argument
131 if(cx==NULL || cx[UCNV_EXT_TO_U_LENGTH]<=0) {
136 toUTable=UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_INDEX, uint32_t);
233 ucnv_extWriteToU(UConverter *cnv, const int32_t *cx, argument
250 UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_UCHARS_INDEX, UChar)+
275 ucnv_extInitialMatchToU(UConverter *cnv, const int32_t *cx, argument
286 match=ucnv_extMatchToU(cx, (int8_t)UCNV_SISO_STATE(cnv),
296 ucnv_extWriteToU(cnv, cx,
329 ucnv_extSimpleMatchToU(const int32_t *cx, argument
518 ucnv_extMatchFromU(const int32_t *cx, UChar32 firstCP, const UChar *pre, int32_t preLength, const UChar *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) argument
669 ucnv_extWriteFromU(UConverter *cnv, const int32_t *cx, uint32_t value, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UErrorCode *pErrorCode) argument
744 ucnv_extInitialMatchFromU(UConverter *cnv, const int32_t *cx, UChar32 cp, const UChar **src, const UChar *srcLimit, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UBool flush, UErrorCode *pErrorCode) argument
807 ucnv_extSimpleMatchFromU(const int32_t *cx, UChar32 cp, uint32_t *pValue, UBool useFallback) argument
946 ucnv_extGetUnicodeSetString(const UConverterSharedData *sharedData, const int32_t *cx, const USetAdder *sa, UBool useFallback, int32_t minLength, UChar32 c, UChar s[UCNV_EXT_MAX_UCHARS], int32_t length, int32_t sectionIndex, UErrorCode *pErrorCode) argument
1011 const int32_t *cx; local
[all...]
/external/icu4c/common/
H A Ducnv_ext.c120 ucnv_extMatchToU(const int32_t *cx, int8_t sisoState, argument
131 if(cx==NULL || cx[UCNV_EXT_TO_U_LENGTH]<=0) {
136 toUTable=UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_INDEX, uint32_t);
233 ucnv_extWriteToU(UConverter *cnv, const int32_t *cx, argument
250 UCNV_EXT_ARRAY(cx, UCNV_EXT_TO_U_UCHARS_INDEX, UChar)+
275 ucnv_extInitialMatchToU(UConverter *cnv, const int32_t *cx, argument
286 match=ucnv_extMatchToU(cx, (int8_t)UCNV_SISO_STATE(cnv),
296 ucnv_extWriteToU(cnv, cx,
329 ucnv_extSimpleMatchToU(const int32_t *cx, argument
518 ucnv_extMatchFromU(const int32_t *cx, UChar32 firstCP, const UChar *pre, int32_t preLength, const UChar *src, int32_t srcLength, uint32_t *pMatchValue, UBool useFallback, UBool flush) argument
669 ucnv_extWriteFromU(UConverter *cnv, const int32_t *cx, uint32_t value, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UErrorCode *pErrorCode) argument
744 ucnv_extInitialMatchFromU(UConverter *cnv, const int32_t *cx, UChar32 cp, const UChar **src, const UChar *srcLimit, char **target, const char *targetLimit, int32_t **offsets, int32_t srcIndex, UBool flush, UErrorCode *pErrorCode) argument
807 ucnv_extSimpleMatchFromU(const int32_t *cx, UChar32 cp, uint32_t *pValue, UBool useFallback) argument
946 ucnv_extGetUnicodeSetString(const UConverterSharedData *sharedData, const int32_t *cx, const USetAdder *sa, UBool useFallback, int32_t minLength, UChar32 c, UChar s[UCNV_EXT_MAX_UCHARS], int32_t length, int32_t sectionIndex, UErrorCode *pErrorCode) argument
1011 const int32_t *cx; local
[all...]

Completed in 1164 milliseconds

12345