Home
last modified time | relevance | path

Searched refs:TO_BASE64 (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dunicodeobject.c1575 #define TO_BASE64(n) \ macro
1866 *out++ = TO_BASE64(base64buffer << (6-base64bits)); in PyUnicode_EncodeUTF7()
1904 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in PyUnicode_EncodeUTF7()
1914 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in PyUnicode_EncodeUTF7()
1919 *out++= TO_BASE64(base64buffer << (6-base64bits) ); in PyUnicode_EncodeUTF7()
1930 #undef TO_BASE64
/external/python/cpython3/Objects/
Dunicodeobject.c4335 #define TO_BASE64(n) \ macro
4641 *out++ = TO_BASE64(base64buffer << (6-base64bits)); in _PyUnicode_EncodeUTF7()
4680 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in _PyUnicode_EncodeUTF7()
4689 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in _PyUnicode_EncodeUTF7()
4694 *out++= TO_BASE64(base64buffer << (6-base64bits) ); in _PyUnicode_EncodeUTF7()
4720 #undef TO_BASE64