Home | History | Annotate | Download | only in lib

Lines Matching full:bytes

73      relocates iterator when the string is moved by ptrdiff bytes.
122 size_t cur.bytes number of bytes of current character
141 iter->cur.bytes = 1;
150 iter->cur.bytes = mbrtowc (&iter->cur.wc, iter->cur.ptr,
153 if (iter->cur.bytes == (size_t) -1)
156 iter->cur.bytes = 1;
161 else if (iter->cur.bytes == (size_t) -2)
164 iter->cur.bytes = strlen (iter->cur.ptr);
171 if (iter->cur.bytes == 0)
174 iter->cur.bytes = 1;
215 ((iter).cur.ptr += (iter).cur.bytes, (iter).next_done = false)