Searched defs:ca (Results 1 - 25 of 60) sorted by relevance

123

/external/clang/test/CXX/over/over.built/
H A Dp25.cpp13 Color foo(bool cond, ConvertsToColorA ca, ConvertsToColorB cb) { argument
14 return cond? ca : cb;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCFlatButton.java70 Rectangle ca = getClientArea();
74 gc.drawRectangle(ca.x, ca.y, ca.width - 1, ca.height - 1);
75 cropClientArea(ca);
79 gc.fillGradientRectangle(ca.x, ca.y, ca.width, ca
137 cropClientArea(Rectangle ca) argument
[all...]
/external/javassist/src/main/javassist/
H A DCtConstructor.java151 CodeAttribute ca = getMethodInfo2().getCodeAttribute();
152 if (ca == null)
156 ConstPool cp = ca.getConstPool();
157 CodeIterator it = ca.iterator();
252 CodeAttribute ca = methodInfo.getCodeAttribute();
253 CodeIterator iterator = ca.iterator();
255 ca.getMaxStack(), ca.getMaxLocals());
256 b.setStackDepth(ca.getMaxStack());
261 ca
282 getStartPosOfBody(CodeAttribute ca) argument
371 removeConsCall(CodeAttribute ca) argument
[all...]
H A DCtBehavior.java428 CodeAttribute ca = (CodeAttribute)cattr.copy(cp, map);
429 destInfo.setCodeAttribute(ca);
547 CodeAttribute ca = methodInfo.getCodeAttribute();
548 if (ca == null)
551 LocalVariableAttribute va = (LocalVariableAttribute)ca.getAttribute(
555 ca.getAttributes().add(va);
558 int maxLocals = ca.getMaxLocals();
560 va.addEntry(0, ca.getCodeLength(),
562 ca.setMaxLocals(maxLocals + Descriptor.dataSize(desc));
607 CodeAttribute ca
1049 getStartPosOfBody(CodeAttribute ca) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java25 public CodeAnalyzer(CodeAttribute ca) { argument
26 codeAttr = ca;
27 constPool = ca.getConstPool();
61 private void initStack(int[] stack, CodeAttribute ca) { argument
63 ExceptionTable et = ca.getExceptionTable();
H A DCodeAttribute.java433 CodeAttribute ca)
437 code = CodeIterator.changeLdcToLdcW(code, etable, ca, ldc);
443 code = CodeIterator.insertGapCore0(code, where, 1, false, etable, ca);
432 doit(byte[] code, LdcEntry ldc, ExceptionTable etable, CodeAttribute ca) argument
/external/jpeg/
H A Dcdjpeg.c124 register int ca, ck; local
127 while ((ca = *arg++) != '\0') {
130 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
131 ca = tolower(ca);
132 if (ca != ck)
H A Drdjpgcom.c413 register int ca, ck; local
416 while ((ca = *arg++) != '\0') {
419 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
420 ca = tolower(ca);
421 if (ca != ck)
H A Dwrjpgcom.c389 register int ca, ck; local
392 while ((ca = *arg++) != '\0') {
395 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
396 ca = tolower(ca);
397 if (ca != ck)
/external/openssl/crypto/bn/
H A Dbn_recp.c108 const BIGNUM *ca; local
118 ca = a;
121 ca=x; /* Just do the mod */
123 ret = BN_div_recp(NULL,r,ca,recp,ctx);
/external/openssl/crypto/pkcs12/
H A Dp12_crt.c80 STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter, int mac_iter,
101 if(!pkey && !cert && !ca)
124 for(i = 0; i < sk_X509_num(ca); i++)
126 if (!PKCS12_add_cert(&bags, sk_X509_value(ca, i)))
79 PKCS12_create(char *pass, char *name, EVP_PKEY *pkey, X509 *cert, STACK_OF(X509) *ca, int nid_key, int nid_cert, int iter, int mac_iter, int keytype) argument
H A Dp12_kiss.c75 * and other (CA) certs. Note either ca should be NULL, *ca should be NULL,
81 STACK_OF(X509) **ca)
144 if (ca && x)
146 if (!*ca)
147 *ca = sk_X509_new_null();
148 if (!*ca)
150 if (!sk_X509_push(*ca, x))
80 PKCS12_parse(PKCS12 *p12, const char *pass, EVP_PKEY **pkey, X509 **cert, STACK_OF(X509) **ca) argument
/external/qemu/distrib/jpeg-6b/
H A Dcdjpeg.c124 register int ca, ck; local
127 while ((ca = *arg++) != '\0') {
130 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
131 ca = tolower(ca);
132 if (ca != ck)
H A Drdjpgcom.c413 register int ca, ck; local
416 while ((ca = *arg++) != '\0') {
419 if (isupper(ca)) /* force arg to lcase (assume ck is already) */
420 ca = tolower(ca);
421 if (ca != ck)
/external/openssl/crypto/rc2/
H A Drc2speed.c185 long ca,cb,cc; local
207 ca=count/512;
210 printf("Doing RC2_set_key %ld times\n",ca);
222 for (count=0,run=1; COND(ca); count+=4)
231 a=((double)COUNT(ca))/d;
/external/openssl/crypto/rc4/
H A Drc4speed.c185 long ca,cb,cc; local
207 ca=count/512;
209 printf("Doing RC4_set_key %ld times\n",ca);
221 for (count=0,run=1; COND(ca); count+=4)
230 a=((double)COUNT(ca))/d;
/external/sqlite/android/
H A DOldPhoneNumberUtils.cpp219 char ca, cb; local
222 ca = a[ia];
224 if (!isNonSeparator(ca)) {
239 if (cb != ca) {
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DMapMaker.java46 CodeAttribute ca = minfo.getCodeAttribute();
47 if (ca != null)
48 ca.setAttribute(make(cp, minfo));
65 CodeAttribute ca = minfo.getCodeAttribute();
66 if (ca == null) {
71 TypedBlock[] blocks = TypedBlock.makeBlocks(minfo, ca, false);
72 MapMaker mm = new MapMaker(cp, minfo, ca);
73 mm.make(blocks, ca.getCode());
87 CodeAttribute ca = minfo.getCodeAttribute();
88 if (ca
121 MapMaker(ClassPool classes, MethodInfo minfo, CodeAttribute ca) argument
[all...]
H A DTypedBlock.java40 public static TypedBlock[] makeBlocks(MethodInfo minfo, CodeAttribute ca, argument
51 blocks[0].initFirstBlock(ca.getMaxStack(), ca.getMaxLocals(),
54 new Liveness().compute(ca.iterator(), blocks, ca.getMaxLocals(),
/external/javassist/src/main/javassist/compiler/
H A DJavac.java269 public boolean recordLocalVariables(CodeAttribute ca, int pc) argument
274 ca.getAttribute(LocalVariableAttribute.tag);
299 public boolean recordParamNames(CodeAttribute ca, int numOfLocalVars) argument
304 ca.getAttribute(LocalVariableAttribute.tag);
/external/openssl/crypto/des/
H A Ddes_opts.c431 long ca,cb,cc,cd,ce; local
463 ca=count;
H A Dspeed.c189 long ca,cb,cc,cd,ce; local
214 ca=count;
219 printf("Doing set_key %ld times\n",ca);
231 for (count=0,run=1; COND(ca); count++)
235 a=((double)COUNT(ca))/d;
/external/openssl/ssl/
H A Dssl_rsa.c777 X509 *ca; local
787 while ((ca = PEM_read_bio_X509(in,NULL,ctx->default_passwd_callback,ctx->default_passwd_callback_userdata))
790 r = SSL_CTX_add_extra_chain_cert(ctx, ca);
793 X509_free(ca);
/external/srtp/crypto/test/
H A Dcipher_driver.c81 cipher_array_test_throughput(cipher_t *ca[], int num_cipher);
345 cipher_array_alloc_init(cipher_t ***ca, int num_ciphers, argument
357 /* set ca to location of cipher_array */
358 *ca = cipher_array;
458 cipher_array_test_throughput(cipher_t *ca[], int num_cipher) { argument
465 (ca[0])->type->description, num_cipher);
469 cipher_array_bits_per_second(ca, num_cipher, i, num_trials) / 1e9);
476 cipher_t **ca = NULL; local
479 status = cipher_array_alloc_init(&ca, num_cipher, ct, klen);
486 cipher_array_test_throughput(ca, num_ciphe
[all...]
/external/openssl/crypto/x509v3/
H A Dv3_purp.c67 static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca);
68 static int check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
69 static int check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca);
70 static int purpose_smime(const X509 *x, int ca);
71 static int check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
72 static int check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca);
73 static int check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
74 static int check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca);
75 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
76 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
109 X509_check_purpose(X509 *x, int id, int ca) argument
552 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca) argument
563 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
576 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
587 purpose_smime(const X509 *x, int ca) argument
607 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
616 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca) argument
625 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
640 ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) argument
649 check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
684 no_check(const X509_PURPOSE *xp, const X509 *x, int ca) argument
[all...]

Completed in 322 milliseconds

123