Lines Matching refs:nbwc
1343 size_t nbwc = width / cwidth; in emit_numeric_escape() local
1348 if (tbuf->len + nbwc > tbuf->asize) in emit_numeric_escape()
1354 for (i = 0; i < nbwc; i++) in emit_numeric_escape()
1358 tbuf->text[off + (bigend ? nbwc - i - 1 : i)] = c; in emit_numeric_escape()
1360 tbuf->len += nbwc; in emit_numeric_escape()
2001 size_t nbwc = width / cwidth; in wide_str_to_charconst() local
2005 if (str.len <= nbwc) in wide_str_to_charconst()
2019 off = str.len - (nbwc * 2); in wide_str_to_charconst()
2021 for (i = 0; i < nbwc; i++) in wide_str_to_charconst()
2023 c = bigend ? str.text[off + i] : str.text[off + nbwc - i - 1]; in wide_str_to_charconst()
2030 if (str.len > nbwc * 2) in wide_str_to_charconst()