Home
last modified time | relevance | path

Searched refs:mbstate_get_byte (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/bionic/
Dmbrtoc16.cpp37 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 reset_and_return(mbstate_get_byte(state, 3), state); in finish_surrogate()
Dmbrtoc32.cpp43 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()
Dc16rtomb.cpp62 char32_t c32 = ((mbstate_get_byte(state, 3) << 16) | in c16rtomb()
63 (mbstate_get_byte(state, 2) << 8) | in c16rtomb()
Dmbstate.cpp44 __LIBC_HIDDEN__ uint8_t mbstate_get_byte(const mbstate_t* ps, int n) { in mbstate_get_byte() function
/bionic/libc/private/
Dbionic_mbstate.h48 uint8_t mbstate_get_byte(const mbstate_t* ps, int n);