Lines Matching defs:more
647 enum utf8_state more;
651 if ((more = utf8_open(&ud, *src)) == UTF8_MORE) {
652 while (++src < end && more == UTF8_MORE)
653 more = utf8_append(&ud, *src);
654 if (more == UTF8_DONE) {
713 enum utf8_state more;
717 if ((more = utf8_open(&ud, *s)) == UTF8_MORE) {
718 while (++s < end && more == UTF8_MORE)
719 more = utf8_append(&ud, *s);
720 if (more == UTF8_DONE)
741 enum utf8_state more;
747 if ((more = utf8_open(&ud, *src)) == UTF8_MORE) {
748 while (*++src != '\0' && more == UTF8_MORE)
749 more = utf8_append(&ud, *src);
750 if (more == UTF8_DONE) {
805 enum utf8_state more;
809 if ((more = utf8_open(&dst[n], *src)) == UTF8_MORE) {
810 while (*++src != '\0' && more == UTF8_MORE)
811 more = utf8_append(&dst[n], *src);
812 if (more == UTF8_DONE) {
850 enum utf8_state more;
854 if ((more = utf8_open(&tmp, *s)) == UTF8_MORE) {
855 while (*++s != '\0' && more == UTF8_MORE)
856 more = utf8_append(&tmp, *s);
857 if (more == UTF8_DONE) {