• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/gcclibs/libcpp/

Lines Matching refs:wide

35    Both are required by 5.2.1.2p1 to be multibyte encodings, not wide
38 5.2.1p3) is to be encoded in each with values one byte wide, and is
41 It is not explicitly mentioned, but there is also a "wide execution
42 character set" used to encode wide character constants and wide
140 not meet the requirements of the C standard for a wide character
692 /* This effectively means that wide strings are not supported,
1038 struct _cpp_strbuf *tbuf, bool wide)
1046 = wide ? pfile->wide_cset_desc : pfile->narrow_cset_desc;
1069 is true if it's a wide string that's being assembled in TBUF. This
1073 struct _cpp_strbuf *tbuf, bool wide)
1075 if (wide)
1123 struct _cpp_strbuf *tbuf, bool wide)
1127 size_t width = (wide ? CPP_OPTION (pfile, wchar_precision)
1161 emit_numeric_escape (pfile, n, tbuf, wide);
1174 struct _cpp_strbuf *tbuf, bool wide)
1178 size_t width = (wide ? CPP_OPTION (pfile, wchar_precision)
1200 emit_numeric_escape (pfile, n, tbuf, wide);
1211 struct _cpp_strbuf *tbuf, bool wide)
1224 = wide ? pfile->wide_cset_desc : pfile->narrow_cset_desc;
1231 return convert_ucn (pfile, from, limit, tbuf, wide);
1234 return convert_hex (pfile, from, limit, tbuf, wide);
1239 return convert_oct (pfile, from, limit, tbuf, wide);
1303 concatenated. WIDE indicates whether or not to produce a wide
1308 cpp_string *to, bool wide)
1314 = wide ? pfile->wide_cset_desc : pfile->narrow_cset_desc;
1342 p = convert_escape (pfile, p + 1, limit, &tbuf, wide);
1347 emit_numeric_escape (pfile, 0, &tbuf, wide);
1363 size_t count, cpp_string *to, bool wide)
1371 retval = cpp_interpret_string (pfile, from, count, to, wide);
1431 For single-character constants, the value is WIDTH bits wide.
1432 For multi-character constants, the value is INT_PRECISION bits wide. */
1449 to a number, for wide strings. STR is the string structure returned
1477 character exactly fills a wchar_t, so a multi-character wide
1498 /* Interpret a (possibly wide) character constant in TOKEN.
1507 bool wide = (token->type == CPP_WCHAR);
1511 if (token->val.str.len == (size_t) (2 + wide))
1516 else if (!cpp_interpret_string (pfile, &token->val.str, 1, &str, wide))
1519 if (wide)