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

1 2

  /external/chromium_org/third_party/openssl/openssl/apps/
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);
rand.c 206 BIO *b64 = BIO_new(BIO_f_base64()); local
207 if (b64 == NULL)
209 out = BIO_push(b64, out);
enc.c 125 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
493 if ((b64=BIO_new(BIO_f_base64())) == NULL)
497 BIO_set_callback(b64,BIO_debug_callback);
498 BIO_set_callback_arg(b64,(char *)bio_err);
501 BIO_set_flags(b64,BIO_FLAGS_BASE64_NO_NL);
503 wbio=BIO_push(b64,wbio);
505 rbio=BIO_push(b64,rbio);
689 if (b64 != NULL) BIO_free(b64);
  /external/chromium_org/third_party/opus/src/silk/
MacroDebug.h 167 static inline opus_int64 silk_ADD_SAT64_( opus_int64 a64, opus_int64 b64, char *file, int line) {
170 res = ((((a64) + (b64)) & 0x8000000000000000LL) == 0 ? \
171 ((((a64) & (b64)) & 0x8000000000000000LL) != 0 ? silk_int64_MIN : (a64)+(b64)) : \
172 ((((a64) | (b64)) & 0x8000000000000000LL) == 0 ? silk_int64_MAX : (a64)+(b64)) );
173 if( res != a64 + b64 ) {
175 if ( !(( res == silk_int64_MAX && ( ( a64 >> 1 ) + ( b64 >> 1 ) > ( silk_int64_MAX >> 3 ) ) ) ||
176 ( res == silk_int64_MIN && ( ( a64 >> 1 ) + ( b64 >> 1 ) < ( silk_int64_MIN >> 3 ) ) ) ) )
182 fail = res != a64 + b64;
    [all...]
MacroCount.h 567 static inline opus_int64 silk_ADD_SAT64( opus_int64 a64, opus_int64 b64 ) {
570 res = ((((a64) + (b64)) & 0x8000000000000000LL) == 0 ? \
571 ((((a64) & (b64)) & 0x8000000000000000LL) != 0 ? silk_int64_MIN : (a64)+(b64)) : \
572 ((((a64) | (b64)) & 0x8000000000000000LL) == 0 ? silk_int64_MAX : (a64)+(b64)) );
596 static inline opus_int64 silk_SUB_SAT64( opus_int64 a64, opus_int64 b64 ) {
599 res = ((((a64)-(b64)) & 0x8000000000000000LL) == 0 ? \
600 (( (a64) & ((b64)^0x8000000000000000LL) & 0x8000000000000000LL) ? silk_int64_MIN : (a64)-(b64)) :
    [all...]
  /external/openssl/apps/
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);
rand.c 206 BIO *b64 = BIO_new(BIO_f_base64()); local
207 if (b64 == NULL)
209 out = BIO_push(b64, out);
enc.c 125 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
493 if ((b64=BIO_new(BIO_f_base64())) == NULL)
497 BIO_set_callback(b64,BIO_debug_callback);
498 BIO_set_callback_arg(b64,(char *)bio_err);
501 BIO_set_flags(b64,BIO_FLAGS_BASE64_NO_NL);
503 wbio=BIO_push(b64,wbio);
505 rbio=BIO_push(b64,rbio);
689 if (b64 != NULL) BIO_free(b64);
  /system/core/adb/
adb_auth_host.c 135 BIO *bio, *b64, *bfile; local
157 b64 = BIO_new(BIO_f_base64());
158 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
160 bio = BIO_push(b64, bfile);
163 BIO_pop(b64);
164 BIO_free(b64);
  /external/ppp/pppd/plugins/
winbind.c 203 static const char *b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; variable
224 result[out_cnt++] = b64[bits >> 18];
225 result[out_cnt++] = b64[(bits >> 12) & 0x3f];
226 result[out_cnt++] = b64[(bits >> 6) & 0x3f];
227 result[out_cnt++] = b64[bits & 0x3f];
236 result[out_cnt++] = b64[bits >> 18];
237 result[out_cnt++] = b64[(bits >> 12) & 0x3f];
242 result[out_cnt++] = b64[(bits >> 6) & 0x3f];
  /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/chromium_org/third_party/openssl/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/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/wpa_supplicant_8/src/eap_peer/
tncc.c 196 unsigned char *b64; local
208 b64 = base64_encode(message, messageLength, &b64len);
209 if (b64 == NULL)
217 os_free(b64);
225 (unsigned int) messageType, b64);
227 os_free(b64);
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 250 unsigned char *b64; local
266 b64 = base64_encode(message, messageLength, &b64len);
267 if (b64 == NULL)
274 os_free(b64);
283 (unsigned int) messageType, b64);
285 os_free(b64);
  /external/chromium/net/base/
transport_security_state.cc 320 std::string b64; local
321 base::Base64Encode(hash_str, &b64);
322 pins->Append(new StringValue("sha1/" + b64));
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 42 String b64 = Base64.encodeToString(in.getBytes(), flags); local
43 String dec = decodeString(b64);
45 return b64;
  /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/chromium/chrome/browser/resources/file_manager/js/
exif_reader.js 129 var b64 = br.readBase64(tags[exif.TAG_JPG_THUMB_LENGTH].value);
130 metadata.thumbnailURL = 'data:image/jpeg;base64,' + b64;
  /external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc 1087 std::string b64; local
1133 std::string b64 = type_and_b64.substr(5, type_and_b64.size() - 5); local
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 2577 BIO *bio=NULL, *b64=NULL; local
2614 BIO *bio=NULL, *b64=NULL; local
    [all...]
  /external/ppp/pppd/
eap.c 653 struct b64state b64; local
784 BZERO(&b64, sizeof (b64));
786 outp += b64enc(&b64, cipher, 8, outp);
789 outp += b64enc(&b64, cipher, 8, outp);
801 outp += b64enc(&b64, cipher, 8, outp);
803 outp += b64flush(&b64, outp);
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/metadata/
byte_reader.js 246 var b64 = ByteReader.readBase64(dataView, pos, size, opt_end);
247 return 'data:image/' + mime + ';base64,' + b64;
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 

Completed in 712 milliseconds

1 2