HomeSort by relevance Sort by last modified time
    Searched refs:mbstate_get_byte (Results 1 - 4 of 4) sorted by null

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

Completed in 167 milliseconds