/external/openssl/apps/ |
rand.c | 206 BIO *b64 = BIO_new(BIO_f_base64()); local 207 if (b64 == NULL) 209 out = BIO_push(b64, out);
|
asn1pars.c | 92 BIO *in=NULL,*out=NULL,*b64=NULL, *derout = NULL; local 284 if ((b64=BIO_new(BIO_f_base64())) == NULL) 286 BIO_push(b64,in); 288 in=b64; 289 b64=tmp; 376 if (b64 != NULL) BIO_free(b64);
|
enc.c | 127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local 507 if ((b64=BIO_new(BIO_f_base64())) == NULL) 511 BIO_set_callback(b64,BIO_debug_callback); 512 BIO_set_callback_arg(b64,(char *)bio_err); 515 BIO_set_flags(b64,BIO_FLAGS_BASE64_NO_NL); 517 wbio=BIO_push(b64,wbio); 519 rbio=BIO_push(b64,rbio); 703 if (b64 != NULL) BIO_free(b64);
|
/external/chromium_org/net/base/ |
int128.h | 291 uint64 b64 = b.hi_ & 0xffffffffu; local 297 uint64 c96 = a96 * b00 + a64 * b32 + a32 * b64 + a00 * b96; 298 uint64 c64 = a64 * b00 + a32 * b32 + a00 * b64;
|
/external/openssl/crypto/asn1/ |
asn_mime.c | 151 BIO *b64; local 153 b64 = BIO_new(BIO_f_base64()); 154 if(!b64) 159 /* prepend the b64 BIO so all data is base64 encoded. 161 out = BIO_push(b64, out); 165 BIO_free(b64); 184 BIO *b64; local 186 if(!(b64 = BIO_new(BIO_f_base64()))) { 190 bio = BIO_push(b64, bio); 196 BIO_free(b64); [all...] |
/external/openfst/src/include/fst/extensions/ngram/ |
ngram-fst.h | 179 uint64 b64; local 184 offset += sizeof(b64) * ( 404 uint64 b64; local 422 offset += BitmapIndex::StorageSize(num_states * 2 + 1) * sizeof(b64); 425 BitmapIndex::StorageSize(num_futures + num_states + 1) * sizeof(b64); 427 offset += BitmapIndex::StorageSize(num_states) * sizeof(b64);
|
/external/ipsec-tools/src/racoon/ |
crypto_openssl.c | 2577 BIO *bio=NULL, *b64=NULL; local 2614 BIO *bio=NULL, *b64=NULL; local [all...] |
/external/owasp/sanitizer/lib/commons-codec-1.4/ |
commons-codec-1.4.jar | |