/src/lib/libc/gen/ |
Lint_bswap64.c | 8 bswap64(u_int64_t b64)
|
/src/regress/lib/libc/divrem/ |
divremtest.c | 85 intmax_t a64, b64, sr64; local in function:main 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/sys/external/isc/libsodium/dist/test/default/ |
codecs.c | 10 const char *b64; local in function:main 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/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/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 in function:mime_fB64_encode [all...] |
mime_attach.c | 136 char *b64; local in function:getrandstring 145 b64 = salloc(roundup(length, 4)); 146 mime_bintob64(b64, vbin, binlen); 147 b64[length] = '\0'; 149 return b64;
|
/src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/ |
utils.h | 85 char *sodium_bin2base64(char * const b64, const size_t b64_maxlen, 91 const char * const b64, const size_t b64_len,
|
/src/sys/ufs/lfs/ |
lfs_accessors.h | 1410 bp->b64 = p; 1423 bp->b64 = (int64_t *)firstblock; 1433 return bp->b64[idx]; 1443 bp->b64[idx] = val; 1453 bp->b64++; 1463 return bp1->b64 == bp2->b64; 1474 return bp1->b64 - bp2->b64;
|
lfs.h | 1165 int64_t *b64; member in union:lfs_blocks
|
/src/sys/compat/netbsd32/ |
netbsd32_drm.c | 394 struct drm_buf_desc b64; local in function:compat_drm_markbufs 400 b64.size = b32.size; 401 b64.low_mark = b32.low_mark; 402 b64.high_mark = b32.high_mark; 405 return drm_ioctl(file, DRM_IOCTL_MARK_BUFS, &b64);
|
/src/sbin/cgdconfig/ |
cgdconfig.c | 1717 char *b64; local in function:printkey 1735 b64 = emalloc(nb64 + 2); 1736 ret = __b64_ntop(raw, nbytes, b64, nb64 + 1); 1738 b64[nb64] = '\n'; 1739 b64[nb64 + 1] = '\0'; 1744 if (fwrite(b64, nb64 + 1, 1, stdout) != 1)
|
/src/lib/libcrypt/ |
crypt.c | 89 * define "B64" to be the declaration for a 64 bit integer. 93 #define B64 long 96 #define B64 long long 150 * machines which support it, a 64 bit value "b64". This data structure, 235 #if defined(B64) 236 B64 b64; member in union:__anonc87fd5ce010a
|