Home
last modified time | relevance | path

Searched refs:nbwc (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libcpp/
H A Dcharset.c1310 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()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dcharset.cc1343 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()
[all …]