Searched refs:mbstate_set_byte (Results 1 – 5 of 5) sorted by relevance
/bionic/libc/bionic/ |
D | mbrtoc16.cpp | 45 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()
|
D | c16rtomb.cpp | 49 mbstate_set_byte(state, 3, (c32 & 0xff0000) >> 16); in c16rtomb() 50 mbstate_set_byte(state, 2, (c32 & 0x00ff00) >> 8); in c16rtomb()
|
D | mbstate.cpp | 40 __LIBC_HIDDEN__ void mbstate_set_byte(mbstate_t* ps, int i, char byte) { in mbstate_set_byte() function
|
D | mbrtoc32.cpp | 112 mbstate_set_byte(state, bytes_so_far + i, *s++); in mbrtoc32()
|
/bionic/libc/private/ |
D | bionic_mbstate.h | 47 void mbstate_set_byte(mbstate_t* ps, int i, char byte);
|