Searched refs:mbstate_get_byte (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/bionic/ |
D | mbrtoc16.cpp | 37 return mbstate_get_byte(state, 3) != 0; in mbspartialc16() 55 char16_t trail = mbstate_get_byte(state, 1) << 8 | in finish_surrogate() 56 mbstate_get_byte(state, 0); in finish_surrogate() 58 return mbstate_reset_and_return(mbstate_get_byte(state, 3), state); in finish_surrogate()
|
D | mbrtoc32.cpp | 43 if (mbstate_get_byte(state, 3) != 0) { in mbrtoc32() 82 ch = bytes_so_far > 0 ? mbstate_get_byte(state, 0) : static_cast<uint8_t>(*s); in mbrtoc32() 120 char32_t c32 = mbstate_get_byte(state, 0) & mask; in mbrtoc32() 123 c32 |= mbstate_get_byte(state, i) & 0x3f; in mbrtoc32()
|
D | c16rtomb.cpp | 62 char32_t c32 = ((mbstate_get_byte(state, 3) << 16) | in c16rtomb() 63 (mbstate_get_byte(state, 2) << 8) | in c16rtomb()
|
/bionic/libc/private/ |
D | bionic_mbstate.h | 58 static inline __wur uint8_t mbstate_get_byte(const mbstate_t* ps, int n) { in mbstate_get_byte() function
|