Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dmbrtoc16.cpp45 mbstate_set_byte(state, 0, trail & 0x00ff); in begin_surrogate()
46 mbstate_set_byte(state, 1, (trail & 0xff00) >> 8); in begin_surrogate()
47 mbstate_set_byte(state, 3, nconv & 0xff); in begin_surrogate()
Dc16rtomb.cpp49 mbstate_set_byte(state, 3, (c32 & 0xff0000) >> 16); in c16rtomb()
50 mbstate_set_byte(state, 2, (c32 & 0x00ff00) >> 8); in c16rtomb()
Dmbstate.cpp40 __LIBC_HIDDEN__ void mbstate_set_byte(mbstate_t* ps, int i, char byte) { in mbstate_set_byte() function
Dmbrtoc32.cpp112 mbstate_set_byte(state, bytes_so_far + i, *s++); in mbrtoc32()
/bionic/libc/private/
Dbionic_mbstate.h47 void mbstate_set_byte(mbstate_t* ps, int i, char byte);