Lines Matching refs:nbwc
1310 size_t nbwc = width / cwidth; in emit_numeric_escape() local
1315 if (tbuf->len + nbwc > tbuf->asize) in emit_numeric_escape()
1321 for (i = 0; i < nbwc; i++) in emit_numeric_escape()
1325 tbuf->text[off + (bigend ? nbwc - i - 1 : i)] = c; in emit_numeric_escape()
1327 tbuf->len += nbwc; in emit_numeric_escape()
1969 size_t nbwc = width / cwidth; in wide_str_to_charconst() local
1973 if (str.len <= nbwc) in wide_str_to_charconst()
1987 off = str.len - (nbwc * 2); in wide_str_to_charconst()
1989 for (i = 0; i < nbwc; i++) in wide_str_to_charconst()
1991 c = bigend ? str.text[off + i] : str.text[off + nbwc - i - 1]; in wide_str_to_charconst()
1998 if (str.len > nbwc * 2) in wide_str_to_charconst()