Home
last modified time | relevance | path

Searched refs:b64 (Results 1 – 25 of 42) sorted by relevance

12

/minix/crypto/external/bsd/libsaslc/dist/src/
H A Dcrypto.c68 BIO *b64; in saslc__crypto_encode_base64() local
85 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in saslc__crypto_encode_base64()
86 b64 = BIO_push(b64, bio); in saslc__crypto_encode_base64()
88 BIO_free_all(b64); in saslc__crypto_encode_base64()
92 (void)BIO_flush(b64); in saslc__crypto_encode_base64()
94 BIO_free_all(b64); in saslc__crypto_encode_base64()
120 BIO *b64; in saslc__crypto_decode_base64() local
138 b64 = BIO_push(b64, bio); in saslc__crypto_decode_base64()
140 BIO_free_all(b64); in saslc__crypto_decode_base64()
143 n = BIO_read(b64, r, (int)declen); in saslc__crypto_decode_base64()
[all …]
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/NVPTX/
H A Dshift-parts.ll5 ; CHECK: shl.b64
9 ; CHECK: or.b64
11 ; CHECK: shl.b64
13 ; CHECK: selp.b64
14 ; CHECK: shl.b64
26 ; CHECK: shl.b64
27 ; CHECK: or.b64
31 ; CHECK: selp.b64
H A Drotate.ll6 declare i64 @llvm.nvvm.rotate.b64(i64, i32)
7 declare i64 @llvm.nvvm.rotate.right.b64(i64, i32)
24 ; SM20: shl.b64
26 ; SM20: shr.b64
30 %val = tail call i64 @llvm.nvvm.rotate.b64(i64 %a, i32 %b)
37 ; SM20: shr.b64
39 ; SM20: shl.b64
43 %val = tail call i64 @llvm.nvvm.rotate.right.b64(i64 %a, i32 %b)
H A Dcall-with-alloca-buffer.ll50 ; CHECK: .param .b64 param0;
51 ; CHECK-NEXT: st.param.b64 [param0+0], %rd[[A_REG]]
52 ; CHECK-NEXT: .param .b64 param1;
53 ; CHECK-NEXT: st.param.b64 [param1+0], %rd[[SP_REG]]
H A Dadd-128bit.ll11 ; CHECK: selp.b64
12 ; CHECK: selp.b64
H A Dctlz.ll22 ; CHECK: clz.b64
41 ; CHECK: clz.b64
H A Dcttz.ll23 ; CHECK: popc.b64
42 ; CHECK: popc.b64
H A Dconvert-int-sm20.ll52 ; CHECK: st.param.b64 [func_retval{{[0-9]+}}+0], %rd[[R0]]
60 ; CHECK: st.param.b64 [func_retval{{[0-9]+}}+0], %rd[[R0]]
H A Datomics.ll43 ; CHECK: atom.and.b64
68 ; CHECK: atom.or.b64
82 ; CHECK: atom.xor.b64
179 ; CHECK: atom.cas.b64
H A Dctpop.ll18 ; CHECK: popc.b64
/minix/crypto/external/bsd/openssl/dist/doc/crypto/
H A DBIO_f_base64.pod44 BIO *bio, *b64;
47 b64 = BIO_new(BIO_f_base64());
49 BIO_push(b64, bio);
50 BIO_write(b64, message, strlen(message));
51 BIO_flush(b64);
53 BIO_free_all(b64);
58 BIO *bio, *b64, *bio_out;
62 b64 = BIO_new(BIO_f_base64());
65 BIO_push(b64, bio);
66 while((inlen = BIO_read(b64, inbuf, 512)) > 0)
[all …]
H A DBIO_push.pod36 For these examples suppose B<md1> and B<md2> are digest BIOs, B<b64> is
41 BIO_push(b64, f);
43 is made then the new chain will be B<b64-f>. After making the calls
45 BIO_push(md2, b64);
48 the new chain is B<md1-md2-b64-f>. Data written to B<md1> will be digested
57 The call will return B<b64> and the new chain will be B<md1-b64-f> data can
/minix/crypto/external/bsd/openssl/dist/demos/
H A Db64.c92 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = local
213 if ((b64 = BIO_new(BIO_f_base64())) == NULL)
216 BIO_set_callback(b64, BIO_debug_callback);
217 BIO_set_callback_arg(b64, bio_err);
220 wbio = BIO_push(b64, wbio);
222 rbio = BIO_push(b64, rbio);
252 if (b64 != NULL)
253 BIO_free(b64);
/minix/lib/libc/gen/
H A DLint_bswap64.c8 bswap64(b64) in bswap64() argument
9 u_int64_t b64; in bswap64()
/minix/crypto/external/bsd/openssl/dist/apps/
H A Dasn1pars.c94 BIO *in = NULL, *out = NULL, *b64 = NULL, *derout = NULL; in MAIN() local
269 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in MAIN()
271 BIO_push(b64, in); in MAIN()
273 in = b64; in MAIN()
274 b64 = tmp; in MAIN()
359 if (b64 != NULL) in MAIN()
360 BIO_free(b64); in MAIN()
H A Denc.c125 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = in MAIN() local
478 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in MAIN()
481 BIO_set_callback(b64, BIO_debug_callback); in MAIN()
482 BIO_set_callback_arg(b64, (char *)bio_err); in MAIN()
485 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in MAIN()
487 wbio = BIO_push(b64, wbio); in MAIN()
489 rbio = BIO_push(b64, rbio); in MAIN()
671 if (b64 != NULL) in MAIN()
672 BIO_free(b64); in MAIN()
H A Drand.c192 BIO *b64 = BIO_new(BIO_f_base64()); in MAIN() local
193 if (b64 == NULL) in MAIN()
195 out = BIO_push(b64, out); in MAIN()
/minix/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dasn_mime.c151 BIO *b64; in B64_write_ASN1() local
153 b64 = BIO_new(BIO_f_base64()); in B64_write_ASN1()
154 if (!b64) { in B64_write_ASN1()
161 out = BIO_push(b64, out); in B64_write_ASN1()
165 BIO_free(b64); in B64_write_ASN1()
183 BIO *b64; in b64_read_asn1() local
185 if (!(b64 = BIO_new(BIO_f_base64()))) { in b64_read_asn1()
189 bio = BIO_push(b64, bio); in b64_read_asn1()
195 BIO_free(b64); in b64_read_asn1()
/minix/crypto/external/bsd/netpgp/libpaa/client/
H A DMakefile8 SRCS= b64.c libpaa.c client.c
/minix/crypto/external/bsd/netpgp/libpaa/server/
H A DMakefile8 SRCS= b64.c libpaa.c server.c
/minix/crypto/external/bsd/netpgp/pgp2ssh/
H A DMakefile8 SRCS= b64.c hkpc.c main.c
/minix/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Ddata3 SRCS= b64.c bignum.c digest.c
H A DMakefile.lib.in5 OBJS= b64.o bignum.o bufgap.o digest.o
/minix/crypto/external/bsd/netpgp/lib/verify/
H A DMakefile4 SRCS+=b64.c
/minix/crypto/external/bsd/netpgp/libpaa/
H A DMakefile9 SRCS= b64.c libpaa.c

12