Home
last modified time | relevance | path

Searched refs:b64c (Results 1 – 25 of 114) sorted by relevance

12345

/dports/mail/mpop/mpop-1.4.15/src/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/mail/msmtp/msmtp-1.8.19/src/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/security/libgsasl/gsasl-1.10.0/lib/gl/
H A Dbase64.c62 static const char b64c[64] =
73 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f];
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f];
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f];
76 *out++ = b64c[to_uchar (in[2]) & 0x3f];
106 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f];
109 *out++ = b64c[((to_uchar (in[0]) << 4)
116 ? b64c[((to_uchar (in[1]) << 2)
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '=';
/dports/archivers/sharutils/sharutils-4.15.2/lib/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/databases/recutils/recutils-1.8/lib/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/net-mgmt/nagios-plugins/nagios-plugins-2.3.3/gl/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/devel/gnulib/gnulib-20140202-stable/lib/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/sysutils/cmogstored/cmogstored-1.8.1/lib/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/sysutils/coreutils/coreutils-8.32/lib/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/security/gss/gss-1.0.3/src/gl/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/security/gsasl/gsasl-1.10.0/lib/gl/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/math/octave/octave-6.4.0/libgnu/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/misc/gnuls/coreutils-8.30/lib/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/lib/
H A Dbase64.c64 static const char b64c[64] = variable
75 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
77 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
78 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
108 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode()
111 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
118 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
124 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/sysutils/pies/pies-1.5/gnu/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/security/oath-toolkit/oath-toolkit-2.6.2/libpskc/gl/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[to_uchar (in[0]) >> 2]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/textproc/datamash/datamash-1.7/lib/
H A Dbase64.c62 static const char b64c[64] = variable
73 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode_fast()
74 *out++ = b64c[((to_uchar (in[0]) << 4) + (to_uchar (in[1]) >> 4)) & 0x3f]; in base64_encode_fast()
75 *out++ = b64c[((to_uchar (in[1]) << 2) + (to_uchar (in[2]) >> 6)) & 0x3f]; in base64_encode_fast()
76 *out++ = b64c[to_uchar (in[2]) & 0x3f]; in base64_encode_fast()
106 *out++ = b64c[(to_uchar (in[0]) >> 2) & 0x3f]; in base64_encode()
109 *out++ = b64c[((to_uchar (in[0]) << 4) in base64_encode()
116 ? b64c[((to_uchar (in[1]) << 2) in base64_encode()
122 *out++ = inlen ? b64c[to_uchar (in[2]) & 0x3f] : '='; in base64_encode()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gcc.target/powerpc/
H A Dbswap-run.c18 unsigned long long b64c (unsigned long long a) { return __builtin_bswap64 (a); } in b64c() function
80 if (b64c (b64_inp) != b64_exp) in main()
93 if (b64c (b64_inp) != b64_exp) in main()

12345