Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dunicodeobject.c1570 #define TO_BASE64(n) \ macro
1859 *out++ = TO_BASE64(base64buffer << (6-base64bits)); in PyUnicode_EncodeUTF7()
1897 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in PyUnicode_EncodeUTF7()
1907 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in PyUnicode_EncodeUTF7()
1912 *out++= TO_BASE64(base64buffer << (6-base64bits) ); in PyUnicode_EncodeUTF7()
1923 #undef TO_BASE64
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dunicodeobject.c1501 #define TO_BASE64(n) \ macro
1792 *out++ = TO_BASE64(base64buffer << (6-base64bits)); in PyUnicode_EncodeUTF7()
1830 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in PyUnicode_EncodeUTF7()
1840 *out++ = TO_BASE64(base64buffer >> (base64bits-6)); in PyUnicode_EncodeUTF7()
1845 *out++= TO_BASE64(base64buffer << (6-base64bits) ); in PyUnicode_EncodeUTF7()
1856 #undef TO_BASE64