Home
last modified time | relevance | path

Searched refs:ENCODE_TO_NATIVE (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/apr/encoding/
H A Dapr_encode.c412 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE( in apr_decode_base64()
414 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE( in apr_decode_base64()
424 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE( in apr_decode_base64()
428 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE( in apr_decode_base64()
432 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE( in apr_decode_base64()
858 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE(pr2[bufin[0]] << 3 in apr_decode_base32()
860 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE(pr2[bufin[1]] << 6 in apr_decode_base32()
862 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE(pr2[bufin[3]] << 4 in apr_decode_base32()
876 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE( in apr_decode_base32()
883 *(bufout++) = (unsigned char)ENCODE_TO_NATIVE( in apr_decode_base32()
[all …]
H A Dapr_escape.c134 digit = ENCODE_TO_NATIVE[0xFF & strtol(xstr, NULL, 16)]; in x2c()
/freebsd-13.1/contrib/apr/include/private/
H A Dapr_encode_private.h73 #define decode ENCODE_TO_NATIVE(ch) convert_a2e[(unsigned char)ch]
76 #define ENCODE_TO_NATIVE(ch) (ch)
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dapr_escape.c59 #define ENCODE_TO_NATIVE(ch) (ch) macro