| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| bfp-test.c | 22 double b64; variable 28 b64 = 2.25;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| bfp-test.c | 22 double b64; variable 28 b64 = 2.25;
|
| /src/external/bsd/openldap/dist/servers/slapd/back-sock/ |
| extended.c | 38 struct berval b64; local 58 b64.bv_len = LUTIL_BASE64_ENCODE_LEN( op->ore_reqdata->bv_len ) + 1; 59 b64.bv_val = op->o_tmpalloc( b64.bv_len + 1, op->o_tmpmemctx ); 63 b64.bv_val, b64.bv_len ); 65 b64.bv_len = rc; 66 assert( strlen(b64.bv_val) == b64.bv_len ); 68 fprintf( fp, "value: %s\n", b64.bv_val ) [all...] |
| /src/sys/external/isc/libsodium/dist/test/default/ |
| codecs.c | 10 const char *b64; local 120 b64 = "VGhpcyBpcyBhIGpvdXJu" "\n" "ZXkgaW50by" " " "Bzb3VuZA=="; 122 assert(sodium_base642bin(buf4, sizeof buf4, b64, strlen(b64), "\n\r ", &bin_len, 129 assert(sodium_base642bin(buf1, sizeof buf1, b64, strlen(b64), "\n\r ", &bin_len, 136 assert(sodium_base642bin(buf1, sizeof buf1, b64, strlen(b64), NULL, &bin_len, 142 assert(sodium_base642bin(buf1, sizeof buf1, b64, strlen(b64), NULL, NULL [all...] |
| /src/crypto/external/bsd/libsaslc/dist/src/ |
| crypto.c | 64 BIO *b64; local 77 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { 81 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); 82 b64 = BIO_push(b64, bio); 83 if (BIO_write(b64, in, (int)inlen) != (int)inlen) { 84 BIO_free_all(b64); 88 (void)BIO_flush(b64); 90 BIO_free_all(b64); 116 BIO *b64; local [all...] |
| /src/external/ibm-public/postfix/dist/src/util/ |
| dict_random.c | 95 VSTRING *b64 = 0; local 100 if ((b64 = dict_file_to_b64(dict, arg)) != 0) { 101 argv_add(argvp, vstring_str(b64), (char *) 0);
|
| /src/crypto/external/apache2/openssl/dist/apps/ |
| rand.c | 195 BIO *b64 = BIO_new(BIO_f_base64()); local 196 if (b64 == NULL) 198 out = BIO_push(b64, out);
|
| asn1parse.c | 46 { "inform", OPT_INFORM, 'A', "input format - one of DER PEM B64" }, 75 BIO *in = NULL, *b64 = NULL, *derout = NULL; local 216 if ((b64 = BIO_new(BIO_f_base64())) == NULL) 218 BIO_push(b64, in); 220 in = b64; 221 b64 = tmp; 320 BIO_free(b64);
|
| /src/crypto/external/bsd/openssl/dist/apps/ |
| rand.c | 110 BIO *b64 = BIO_new(BIO_f_base64()); local 111 if (b64 == NULL) 113 out = BIO_push(b64, out);
|
| asn1parse.c | 64 BIO *in = NULL, *b64 = NULL, *derout = NULL; local 206 if ((b64 = BIO_new(BIO_f_base64())) == NULL) 208 BIO_push(b64, in); 210 in = b64; 211 b64 = tmp; 308 BIO_free(b64);
|
| /src/crypto/external/bsd/openssl.old/dist/apps/ |
| rand.c | 94 BIO *b64 = BIO_new(BIO_f_base64()); local 95 if (b64 == NULL) 97 out = BIO_push(b64, out);
|
| asn1pars.c | 59 BIO *in = NULL, *b64 = NULL, *derout = NULL; local 198 if ((b64 = BIO_new(BIO_f_base64())) == NULL) 200 BIO_push(b64, in); 202 in = b64; 203 b64 = tmp; 300 BIO_free(b64);
|
| /src/external/bsd/wpa/dist/hostapd/ |
| sae_pk_gen.c | 25 char *b64 = NULL, *pw = NULL, *pos, *src; local 134 b64 = base64_encode(der, der_len, NULL); 135 if (!b64) 137 src = pos = b64; 175 printf("sae_password=%s|pk=%s:%s\n", pw, m_hex, b64); 190 os_free(b64);
|
| /src/regress/lib/libc/divrem/ |
| divremtest.c | 85 intmax_t a64, b64, sr64; local 132 b64 = IM(1) << j; 135 T64S( a64 + k, b64 + l, sr64); 136 T64S( a64 + k, -b64 + l, sr64); 137 T64S(-a64 + k, b64 + l, sr64); 138 T64S(-a64 + k, -b64 + l, sr64); 139 T64U(UIM(a64) + k, UIM(b64) + l, ur64); 147 for(b64 = -(1 << KLE); b64 < 1 << KLE; ++b64) { [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| bio_enc_test.c | 276 BIO *mem = NULL, *b64 = NULL, *cbio = NULL; local 286 || !TEST_ptr(b64 = BIO_new(BIO_f_base64())) 288 || !TEST_ptr(BIO_push(b64, mem)) 289 || !TEST_ptr(BIO_push(cbio, b64)) 299 BIO_free(b64); 300 b64 = cbio = NULL; 305 || !TEST_ptr(b64 = BIO_new(BIO_f_base64())) 307 || !TEST_ptr(BIO_push(b64, mem)) 308 || !TEST_ptr(BIO_push(cbio, b64)) 325 BIO_free(b64); [all...] |
| bio_base64_test.c | 96 static const unsigned char b64[65] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; local 111 if (memoutws(mem, b64[v >> 18], wscnt, llen, &pos) == 0 112 || memoutws(mem, b64[(v >> 12) & 0x3f], wscnt, llen, &pos) == 0 113 || memoutws(mem, b64[(v >> 6) & 0x3f], wscnt, llen, &pos) == 0 114 || memoutws(mem, b64[v & 0x3f], wscnt, llen, &pos) == 0) 124 if (memoutws(mem, b64[(v >> 10) & 0x3f], wscnt, llen, &pos) == 0 125 || memoutws(mem, b64[(v >> 4) & 0x3f], wscnt, llen, &pos) == 0 126 || memoutws(mem, b64[(v & 0xf) << 2], wscnt, llen, &pos) == 0 132 if (memoutws(mem, b64[v >> 2], wscnt, llen, &pos) == 0 133 || memoutws(mem, b64[(v & 0x3) << 4], wscnt, llen, &pos) == 190 BIO *bio, *b64; local [all...] |
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| http_server.c | 269 BIO *cbio = *pcbio, *getbio = NULL, *b64 = NULL; local 391 || (b64 = BIO_new(BIO_f_base64())) == NULL) { 396 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); 397 getbio = BIO_push(b64, getbio);
|
| /src/crypto/external/bsd/openssl/dist/apps/lib/ |
| http_server.c | 292 BIO *cbio = *pcbio, *getbio = NULL, *b64 = NULL; local 398 || (b64 = BIO_new(BIO_f_base64())) == NULL) { 404 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); 405 getbio = BIO_push(b64, getbio);
|
| /src/crypto/external/cpl/tpm-tools/dist/lib/ |
| tpm_unseal.c | 90 BIO *bdata = NULL, *b64 = NULL, *bmem = NULL; local 162 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { 169 bmem = BIO_push( b64, bmem ); 184 bmem = BIO_pop(b64); 185 BIO_free(b64); 186 b64 = NULL; 234 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { 241 bmem = BIO_push( b64, bmem ); 256 bmem = BIO_pop(b64); 257 BIO_free(b64); [all...] |
| /src/crypto/external/cpl/tpm-tools/dist/src/cmds/ |
| tpm_sealdata.c | 122 BIO *bin = NULL, *bdata=NULL, *b64=NULL; local 297 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { 322 bdata = BIO_push(b64, bdata); 328 bdata = BIO_pop(b64); 334 bdata = BIO_push(b64, bdata); 340 bdata = BIO_pop(b64); 344 bdata = BIO_push(b64, bdata); 361 bdata = BIO_pop(b64); 376 if (b64) 377 BIO_free(b64); [all...] |
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| ldif.c | 103 int b64, url; local 145 b64 = 0; 154 b64 = 1; 169 if ( b64 ) { 576 int b64 = 0; local 582 b64 = 1; 593 if( !b64 ) { 620 /* get b64 digit from high order 6 bits */ 646 /* get b64 digit from low order 6 bits */
|
| /src/external/bsd/wpa/dist/src/utils/ |
| json.c | 634 char *b64; local 636 b64 = base64_url_encode(val, len, NULL); 637 if (!b64) 639 json_add_string(json, name, b64); 640 os_free(b64); 648 char *b64; local 650 b64 = base64_encode_no_lf(val, len, NULL); 651 if (!b64) 653 json_add_string(json, name, b64); 654 os_free(b64); [all...] |
| /src/usr.bin/mail/ |
| mime_codecs.c | 202 * b64: buffer holding the encoded (base64) source. 203 * cnt: number of bytes in the b64 buffer to decode (see note 2). 210 * 2) The b64 buffer should always contain a multiple of 4 bytes of 214 mime_b64tobin(char *bin, const char *b64, size_t cnt) 234 q = (const unsigned char *)b64; 268 * b64: buffer to hold the encoded (base64) result (see note). 272 * NOTE: it is the callers responsibility to ensure that 'b64' is 276 mime_bintob64(char *b64, const char *bin, size_t cnt) 288 b64[0] = b64table[a >> 2]; 291 b64[1] = b64table[((a & 0x3) << 4)] 317 static char b64[MIME_BASE64_LINE_MAX]; local [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/base/ |
| json.c | 182 char *b64 = NULL; local 189 ret = rk_base64_encode(data->data, data->length, &b64); 190 if (ret < 0 || b64 == NULL) 196 j->out(j->ctx, b64); /* base64-encode; hope there's no aliasing */ 198 free(b64); 210 free(b64); 213 v = heim_string_ref_create(b64, free); 215 free(b64);
|
| /src/external/bsd/unbound/dist/sldns/ |
| parseutil.c | 668 char* b64; local 672 b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123" 675 b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123" 682 target[o] = b64[src[i] >> 2]; 683 target[o+1] = b64[ ((src[i]&0x03)<<4) | (src[i+1]>>4) ]; 684 target[o+2] = b64[ ((src[i+1]&0x0f)<<2) | (src[i+2]>>6) ]; 685 target[o+3] = b64[ (src[i+2]&0x3f) ]; 693 target[o] = b64[src[i] >> 2]; 694 target[o+1] = b64[ ((src[i]&0x03)<<4) | (src[i+1]>>4) ]; 695 target[o+2] = b64[ ((src[i+1]&0x0f)<<2) ] [all...] |