Searched refs:utf7_write_c (Results 1 – 2 of 2) sorted by relevance
/reactos/dll/win32/kernel32/winnls/string/ |
H A D | nls.c | 1837 static inline BOOL utf7_write_c(char *dst, int dstlen, int *index, char character) in utf7_write_c() function 1864 if (!utf7_write_c(dst, dstlen, &dest_index, '+')) in WideCharToUtf7() 1869 if (!utf7_write_c(dst, dstlen, &dest_index, '-')) in WideCharToUtf7() 1878 if (!utf7_write_c(dst, dstlen, &dest_index, *src)) in WideCharToUtf7() 1890 if (!utf7_write_c(dst, dstlen, &dest_index, '+')) in WideCharToUtf7() 1902 …if (!utf7_write_c(dst, dstlen, &dest_index, base64_encoding_table[(byte_pair >> (offset - 6)) & 0x… in WideCharToUtf7() 1923 … if (!utf7_write_c(dst, dstlen, &dest_index, base64_encoding_table[byte_pair & 0x3F])) in WideCharToUtf7() 1932 if (!utf7_write_c(dst, dstlen, &dest_index, '-')) in WideCharToUtf7()
|
H A D | locale.c | 2576 static inline BOOL utf7_write_c(char *dst, int dstlen, int *index, char character) in utf7_write_c() function 2612 if (!utf7_write_c(dst, dstlen, &dest_index, '+')) in utf7_wcstombs() 2614 if (!utf7_write_c(dst, dstlen, &dest_index, '-')) in utf7_wcstombs() 2620 if (!utf7_write_c(dst, dstlen, &dest_index, *src)) in utf7_wcstombs() 2629 if (!utf7_write_c(dst, dstlen, &dest_index, '+')) in utf7_wcstombs() 2638 …if (!utf7_write_c(dst, dstlen, &dest_index, base64_encoding_table[(byte_pair >> (offset - 6)) & 0x… in utf7_wcstombs() 2653 … if (!utf7_write_c(dst, dstlen, &dest_index, base64_encoding_table[byte_pair & 0x3F])) in utf7_wcstombs() 2659 if (!utf7_write_c(dst, dstlen, &dest_index, '-')) in utf7_wcstombs()
|