Searched refs:MB_CUR_MAX (Results 1 – 25 of 29) sorted by relevance
12
/glibc-2.36/stdlib/ |
D | testmb.c | 50 char mbc[MB_CUR_MAX]; in main() 52 if ((r = mbtowc (&wc, &c, MB_CUR_MAX)) <= 0) in main()
|
D | testmb2.c | 17 if (mbtowc (&wc, "\xc3\xa1", MB_CUR_MAX) != 2 || wc != 0xE1) in main()
|
D | stdlib.h | 97 #define MB_CUR_MAX (__ctype_get_mb_cur_max ()) macro
|
/glibc-2.36/wcsmbs/ |
D | tst-mbrtowc.c | 184 char buf[MB_CUR_MAX]; in check_ascii() 189 for (i = 0; i < MB_CUR_MAX; ++i) in check_ascii() 194 n = mbrtowc (&wc, buf, MB_CUR_MAX, &s); in check_ascii()
|
D | tst-wcrtomb.c | 59 char buf[2 * MB_CUR_MAX]; in check_ascii()
|
D | wcsmbs-tst1.c | 23 printf ("MB_CUR_MAX %Zd\n", MB_CUR_MAX); in main()
|
/glibc-2.36/sysdeps/arm/ |
D | aeabi_mb_cur_max.c | 26 return MB_CUR_MAX; in __aeabi_MB_CUR_MAX()
|
/glibc-2.36/debug/ |
D | wctomb_chk.c | 31 if (buflen < MB_CUR_MAX) in __wctomb_chk()
|
D | tst-fortify.c | 1453 assert (MB_CUR_MAX <= 10); in do_test()
|
/glibc-2.36/localedata/tests-mbwc/ |
D | tst_mblen.c | 35 n = MB_CUR_MAX; in tst_mblen()
|
D | tst_mbrlen.c | 52 n = MB_CUR_MAX; in tst_mbrlen()
|
D | tst_mbrtowc.c | 54 n = MB_CUR_MAX; in tst_mbrtowc()
|
D | tst_mbtowc.c | 42 n = MB_CUR_MAX; in tst_mbtowc()
|
D | tst_mbsrtowcs.c | 50 n = MB_CUR_MAX; in tst_mbsrtowcs()
|
/glibc-2.36/include/ |
D | stdlib.h | 314 # undef MB_CUR_MAX 315 # define MB_CUR_MAX (_NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MB_CUR_MAX)) macro
|
/glibc-2.36/posix/ |
D | fnmatch.c | 255 if (__glibc_unlikely (MB_CUR_MAX != 1)) in fnmatch()
|
D | regex_internal.h | 119 #if (defined MB_CUR_MAX && HAVE_WCTYPE_H && HAVE_ISWCTYPE) || _LIBC
|
D | regcomp.c | 869 dfa->mb_cur_max = MB_CUR_MAX; in init_dfa()
|
D | tst-regex.input | 3566 * locale/C-ctype.c (_nl_C_LC_CTYPE): Define MB_CUR_MAX for C locale 5296 * wcsmbs/mbsrtowcs.c: Include stdlib.h for MB_CUR_MAX.
|
/glibc-2.36/conform/data/ |
D | stdlib.h-data | 13 macro MB_CUR_MAX
|
/glibc-2.36/manual/ |
D | charset.texi | 408 @deftypevr Macro int MB_CUR_MAX 410 @code{MB_CUR_MAX} expands into a positive integer expression that is the 417 @code{MB_CUR_MAX} is defined in @file{stdlib.h}. 432 fread (&buf[len], 1, MB_CUR_MAX - len, fp); 442 variable size. The @code{fread} call makes sure that @code{MB_CUR_MAX} 444 a problem if @code{MB_CUR_MAX} is not a compile-time constant. 671 value greater than or equal to @code{MB_CUR_MAX} since the input might 889 @var{MB_CUR_MAX} bytes long, but programs that need to run on @glibcadj{} 1215 @r{@code{MB_CUR_MAX} cannot portably be used here.} */ 1275 if ((eof && filled > 0) || filled >= MB_CUR_MAX) [all …]
|
D | stdio.texi | 3549 @code{MB_CUR_MAX} bytes for each wide character read. In case 3565 @code{MB_CUR_MAX} bytes for each wide character read. In case 3579 to @code{MB_CUR_MAX} bytes for each character. If @samp{%lc} is used in 3799 of the width or precision by @code{MB_CUR_MAX}.
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.14 | 4320 instead of MB_CUR_MAX. 4322 instead of MB_CUR_MAX. 4326 of MB_CUR_MAX. 4328 dfa->mb_cur_max instead of MB_CUR_MAX. 4333 Use mb_cur_max instead of MB_CUR_MAX. 4335 MB_CUR_MAX. 4338 MB_CUR_MAX. 4340 instead of MB_CUR_MAX. 4344 MB_CUR_MAX. 4345 (extend_buffers): Use pstr->mb_cur_max instead of MB_CUR_MAX. [all …]
|
D | ChangeLog.5 | 1536 when the macro MB_CUR_MAX is used. 1542 * stdlib/stdlib.h (MB_CUR_MAX): Not constant anymore. Get value
|
D | ChangeLog.8 | 3566 * locale/C-ctype.c (_nl_C_LC_CTYPE): Define MB_CUR_MAX for C locale 5296 * wcsmbs/mbsrtowcs.c: Include stdlib.h for MB_CUR_MAX.
|
12