HomeSort by relevance Sort by last modified time
    Searched refs:bp (Results 76 - 100 of 289) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/openssl/crypto/pem/
pem_all.c 176 RSA *PEM_read_bio_RSAPrivateKey(BIO *bp, RSA **rsa, pem_password_cb *cb,
180 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
218 DSA *PEM_read_bio_DSAPrivateKey(BIO *bp, DSA **dsa, pem_password_cb *cb,
222 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
262 EC_KEY *PEM_read_bio_ECPrivateKey(BIO *bp, EC_KEY **key, pem_password_cb *cb,
266 pktmp = PEM_read_bio_PrivateKey(bp, NULL, cb, u);
pem_pkey.c 75 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
84 if (!PEM_bytes_read_bio(&data, &len, &nm, PEM_STRING_EVP_PKEY, bp, cb, u))
140 int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
146 return PEM_write_bio_PKCS8PrivateKey(bp, x, enc,
152 pem_str,bp,x,enc,kstr,klen,cb,u);
155 EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x)
165 bp, 0, NULL))
196 int PEM_write_bio_Parameters(BIO *bp, EVP_PKEY *x)
205 pem_str,bp,x,NULL,NULL,0,0,NULL);
  /external/openssl/include/openssl/
dh.h 164 #define d2i_DHparams_bio(bp,x) ASN1_d2i_bio_of(DH,DH_new,d2i_DHparams,bp,x)
165 #define i2d_DHparams_bio(bp,x) ASN1_i2d_bio_of_const(DH,i2d_DHparams,bp,x)
204 int DHparams_print(BIO *bp, const DH *x);
206 int DHparams_print(char *bp, const DH *x);
x509.h 659 int X509_signature_print(BIO *bp,X509_ALGOR *alg, ASN1_STRING *sig);
718 X509 *d2i_X509_bio(BIO *bp,X509 **x509);
719 int i2d_X509_bio(BIO *bp,X509 *x509);
720 X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl);
721 int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl);
722 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
723 int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req);
725 RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa);
726 int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa);
727 RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA **rsa)
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/
MessageTestUtils.java 81 final MimeBodyPart bp = new MimeBodyPart(null, mimeType); local
83 bp.setHeader(MimeHeader.HEADER_CONTENT_ID, contentId);
85 return bp;
187 final BodyPart bp = new MimeBodyPart(); local
188 bp.setBody(this.build());
189 return bp;
  /external/openssl/crypto/bn/asm/
armv4-mont.s 21 add r4,r2,r0 @ &bp[num-1]
25 ldr r2,[r2] @ bp[0]
29 str r4,[r0,#15*4] @ save &bp[num]
31 umull r10,r11,r5,r2 @ ap[0]*bp[0]
42 umlal r10,r11,r5,r2 @ ap[j]*bp[0]
55 ldr r4,[r0,#13*4] @ restore bp
65 ldr r2,[r4,#4]! @ *(++bp)
72 umlal r10,r11,r5,r2 @ ap[0]*bp[i]+tp[0]
73 str r4,[r0,#13*4] @ save bp
83 umlal r10,r11,r5,r2 @ ap[j]*bp[i
    [all...]
  /device/samsung/crespo/alsa-utils/aplay/
formats.h 16 #define VOC_DATALEN(bp) ((u_long)(bp->datalen) | \
17 ((u_long)(bp->datalen_m) << 8) | \
18 ((u_long)(bp->datalen_h) << 16) )
  /external/ipsec-tools/src/racoon/
vmbuf.h 38 * bp v
49 caddr_t bp; /* pointer to the buffer */ member in struct:_vchar_t_
  /external/openssl/crypto/pkcs12/
p12_utl.c 98 int i2d_PKCS12_bio(BIO *bp, PKCS12 *p12)
100 return ASN1_item_i2d_bio(ASN1_ITEM_rptr(PKCS12), bp, p12);
110 PKCS12 *d2i_PKCS12_bio(BIO *bp, PKCS12 **p12)
112 return ASN1_item_d2i_bio(ASN1_ITEM_rptr(PKCS12), bp, p12);
  /external/openssl/crypto/bn/
bn_add.c 108 BN_ULONG *ap,*bp,*rp,carry,t1,t2; local
127 bp=b->d;
130 carry=bn_add_words(rp,ap,bp,min);
133 bp+=min;
169 register BN_ULONG t1,t2,*ap,*bp,*rp; local
191 bp=b->d;
199 t2= *(bp++);
216 carry=bn_sub_words(rp,ap,bp,min);
218 bp+=min;
  /external/openssl/crypto/x509v3/
v3_prn.c 165 int X509V3_extensions_print(BIO *bp, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent)
173 BIO_printf(bp,"%*s%s:\n",indent, "", title);
182 if (indent && BIO_printf(bp,"%*s",indent, "") <= 0) return 0;
184 i2a_ASN1_OBJECT(bp,obj);
186 if (BIO_printf(bp,": %s\n",j?"critical":"") <= 0)
188 if(!X509V3_EXT_print(bp, ex, flag, indent + 4))
190 BIO_printf(bp, "%*s", indent + 4, "");
191 M_ASN1_OCTET_STRING_print(bp,ex->value);
193 if (BIO_write(bp,"\n",1) <= 0) return 0;
  /external/openssl/crypto/x509/
x509.h 659 int X509_signature_print(BIO *bp,X509_ALGOR *alg, ASN1_STRING *sig);
718 X509 *d2i_X509_bio(BIO *bp,X509 **x509);
719 int i2d_X509_bio(BIO *bp,X509 *x509);
720 X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl);
721 int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl);
722 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
723 int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req);
725 RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa);
726 int i2d_RSAPrivateKey_bio(BIO *bp,RSA *rsa);
727 RSA *d2i_RSAPublicKey_bio(BIO *bp,RSA **rsa)
    [all...]
  /external/grub/stage2/
start_eltorito.S 103 mov %ax, %bp /* boot file sectors */
134 * BP - Sector count
143 push %bp
145 cmp ABS(MaxTransfer), %bp
147 mov ABS(MaxTransfer), %bp
149 mov %bp, 2(%si)
154 pop %bp
157 sub %ax, %bp /* Sectors left */
164 cmp $0, %bp
  /external/openssl/crypto/bio/
bss_null.c 140 static int null_gets(BIO *bp, char *buf, int size)
145 static int null_puts(BIO *bp, const char *str)
  /external/quake/quake/src/QW/client/
d_spr8.s 415 cmpw (%ecx),%bp
420 movw %bp,(%ecx)
431 cmpw 2(%ecx),%bp
436 movw %bp,2(%ecx)
446 cmpw 4(%ecx),%bp
451 movw %bp,4(%ecx)
461 cmpw 6(%ecx),%bp
466 movw %bp,6(%ecx)
476 cmpw 8(%ecx),%bp
481 movw %bp,8(%ecx
    [all...]
  /external/quake/quake/src/WinQuake/
d_spr8.s 415 cmpw (%ecx),%bp
420 movw %bp,(%ecx)
431 cmpw 2(%ecx),%bp
436 movw %bp,2(%ecx)
446 cmpw 4(%ecx),%bp
451 movw %bp,4(%ecx)
461 cmpw 6(%ecx),%bp
466 movw %bp,6(%ecx)
476 cmpw 8(%ecx),%bp
481 movw %bp,8(%ecx
    [all...]
  /external/tcpdump/
print-ap1394.c 57 ap1394_hdr_print(register const u_char *bp, u_int length)
60 fp = (const struct firewire_header *)bp;
print-hsrp.c 101 hsrp_print(register const u_int8_t *bp, register u_int len)
103 struct hsrp *hp = (struct hsrp *) bp;
print-rt6.c 44 rt6_print(register const u_char *bp, const u_char *bp2 _U_)
52 dp = (struct ip6_rthdr *)bp;
print-symantec.c 48 symantec_hdr_print(register const u_char *bp, u_int length)
53 sp = (const struct symantec_header *)bp;
  /bionic/libc/unistd/
exec.c 139 char *bp, *cur, *path, buf[MAXPATHLEN]; local
151 bp = (char *)name;
155 bp = buf;
202 retry: (void)execve(bp, argv, environ);
218 memp[1] = bp;
  /system/core/sh/
exec.c 620 const struct builtincmd *bp; local
622 for (bp = builtincmd ; bp->name ; bp++) {
623 if (*bp->name == *name && equal(bp->name, name))
624 return bp->builtin;
633 const struct builtincmd *bp; local
635 for (bp = splbltincmd ; bp->name ; bp++)
652 const struct builtincmd *bp; local
    [all...]
  /bionic/libc/netbsd/nameser/
ns_name.c 208 u_char *label, *bp, *eom; local
213 bp = dst;
215 label = bp++;
225 &label, &bp, eom))
231 label = bp++;
265 c = (bp - label - 1);
278 if (bp >= eom) {
282 *bp++ = '\0';
284 if ((bp - dst) > MAXCDNAME) {
294 label = bp++
    [all...]
  /external/libpcap/
pcap-pf.c 90 register u_char *p, *bp; local
124 bp = pc->buffer + pc->offset;
126 bp = pc->bp;
150 pc->bp = bp;
160 if ((long)bp & 3) {
162 memcpy((char *)sp, (char *)bp, sizeof(*sp));
165 sp = (struct enstamp *)bp;
173 p = bp + sp->ens_stamplen
    [all...]
  /external/grub/netboot/
main.c 553 ip.bp.bp_op = BOOTP_REQUEST;
554 ip.bp.bp_htype = 1;
555 ip.bp.bp_hlen = ETH_ALEN;
560 ip.bp.bp_xid = xid += htonl (starttime);
561 grub_memmove (ip.bp.bp_hwaddr, arptable[ARP_CLIENT].node, ETH_ALEN);
563 etherboot_printf ("bp_op = %d\n", ip.bp.bp_op);
564 etherboot_printf ("bp_htype = %d\n", ip.bp.bp_htype);
565 etherboot_printf ("bp_hlen = %d\n", ip.bp.bp_hlen);
566 etherboot_printf ("bp_xid = %d\n", ip.bp.bp_xid);
567 etherboot_printf ("bp_hwaddr = %!\n", ip.bp.bp_hwaddr)
    [all...]

Completed in 626 milliseconds

1 2 34 5 6 7 8 91011>>