| /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/lib/libc/gen/ |
| Lint_bswap64.c | 8 bswap64(u_int64_t b64)
|
| /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/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/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/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/apache2/openssl/dist/include/crypto/ |
| bn_conf.h.in | 30 {- $config{b64} ? "#define" : "#undef" -} SIXTY_FOUR_BIT
|
| /src/sys/external/isc/libsodium/dist/src/libsodium/sodium/ |
| codecs.c | 179 sodium_bin2base64(char * const b64, const size_t b64_maxlen, 211 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc >> acc_len) & 0x3F); 215 b64[b64_pos++] = (char) b64_byte_to_urlsafe_char((acc << (6 - acc_len)) & 0x3F); 223 b64[b64_pos++] = (char) b64_byte_to_char((acc >> acc_len) & 0x3F); 227 b64[b64_pos++] = (char) b64_byte_to_char((acc << (6 - acc_len)) & 0x3F); 232 b64[b64_pos++] = '='; 235 b64[b64_pos++] = 0U; 238 return b64; 242 _sodium_base642bin_skip_padding(const char * const b64, const size_t b64_len, 253 c = b64[*b64_pos_p] [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| 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...] |
| 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...] |
| /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/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/crypto/external/bsd/netpgp/libpaa/client/ |
| Makefile | 8 SRCS= b64.c libpaa.c client.c
|
| /src/crypto/external/bsd/netpgp/libpaa/server/ |
| Makefile | 8 SRCS= b64.c libpaa.c server.c
|
| /src/crypto/external/bsd/openssh/dist/ |
| sshbuf-misc.c | 128 sshbuf_dtob64(const struct sshbuf *d, struct sshbuf *b64, int wrap) 134 if (d == NULL || b64 == NULL || sshbuf_len(d) >= SIZE_MAX / 2) 147 if ((r = sshbuf_put_u8(b64, s[i])) != 0) 149 if (i % 70 == 69 && (r = sshbuf_put_u8(b64, '\n')) != 0) 152 if ((i - 1) % 70 != 69 && (r = sshbuf_put_u8(b64, '\n')) != 0) 155 if ((r = sshbuf_put(b64, s, strlen(s))) != 0) 183 sshbuf_b64tod(struct sshbuf *buf, const char *b64) 185 size_t plen = strlen(b64); 193 if ((nlen = b64_pton(b64, p, plen)) < 0) { 206 sshbuf_dtourlb64(const struct sshbuf *d, struct sshbuf *b64, int wrap [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/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/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);
|
| /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);
|
| /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/bsd/netpgp/pgp2ssh/ |
| Makefile | 8 SRCS= b64.c hkpc.c main.c
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| configuration.h.in | 68 {- $config{b64} ? "# define" : "# undef" -} SIXTY_FOUR_BIT
|
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| configuration.h.in | 59 {- $config{b64} ? "# define" : "# undef" -} SIXTY_FOUR_BIT
|
| /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);
|