Searched refs:MB_LEN_MAX (Results 1 - 25 of 50) sorted by relevance

12

/haiku-fatelf/src/system/libroot/posix/glibc/iconv/
H A Dgconv_builtin.h22 __gconv_transform_multibyte_wchar, NULL, 4, 4, 1, MB_LEN_MAX)
25 __gconv_transform_wchar_multibyte, NULL, 4, 4, 1, MB_LEN_MAX)
H A Dgconv_simple.c106 #define MAX_NEEDED_FROM MB_LEN_MAX
151 #define MIN_NEEDED_TO MB_LEN_MAX
152 #define MAX_NEEDED_TO MB_LEN_MAX
/haiku-fatelf/src/bin/gdb/readline/
H A Drlmbutil.h54 /* Make sure MB_LEN_MAX is at least 16 on systems that claim to be able to
55 handle multibyte chars (some systems define MB_LEN_MAX as 1) */
58 # if defined(MB_LEN_MAX) && (MB_LEN_MAX < 16)
59 # undef MB_LEN_MAX macro
61 # if !defined (MB_LEN_MAX)
62 # define MB_LEN_MAX 16 macro
96 #undef MB_LEN_MAX macro
99 #define MB_LEN_MAX 1 macro
H A Dsearch.c185 char mb[MB_LEN_MAX];
212 c = _rl_read_mbstring (c, mb, MB_LEN_MAX);
H A Disearch.c174 char mb[MB_LEN_MAX];
258 c = _rl_read_mbstring (c, mb, MB_LEN_MAX);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dhuman.h36 so multiply by MB_LEN_MAX + 1 and then subtract MB_LEN_MAX.
40 ((2 * sizeof (uintmax_t) * CHAR_BIT * 146 / 485 + 1) * (MB_LEN_MAX + 1) \
41 - MB_LEN_MAX + 1 + 3)
H A Dmbsrtowcs.c50 src_avail = strnlen1 (src, MB_LEN_MAX); */
57 else if (MB_LEN_MAX <= 4 || src[3] == '\0')
60 src_avail = 4 + strnlen1 (src + 4, MB_LEN_MAX - 4);
67 or that is longer than MB_LEN_MAX bytes. Cannot happen. */
97 src_avail = strnlen1 (src, MB_LEN_MAX); */
104 else if (MB_LEN_MAX <= 4 || src[3] == '\0')
107 src_avail = 4 + strnlen1 (src + 4, MB_LEN_MAX - 4);
114 or that is longer than MB_LEN_MAX bytes. Cannot happen. */
H A Dhuman.c180 if (0 < pointlen && pointlen <= MB_LEN_MAX)
186 if (strlen (l->thousands_sep) <= MB_LEN_MAX)
H A Dstriconv.c33 /* Get MB_LEN_MAX, CHAR_BIT. */
265 if (result_size <= approx_sqrt_SIZE_MAX / MB_LEN_MAX)
266 result_size *= MB_LEN_MAX;
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dhuman.h36 so multiply by MB_LEN_MAX + 1 and then subtract MB_LEN_MAX.
40 ((2 * sizeof (uintmax_t) * CHAR_BIT * 146 / 485 + 1) * (MB_LEN_MAX + 1) \
41 - MB_LEN_MAX + 1 + 3)
H A Dhuman.c180 if (0 < pointlen && pointlen <= MB_LEN_MAX)
186 if (strlen (l->thousands_sep) <= MB_LEN_MAX)
/haiku-fatelf/src/system/libroot/posix/wchar/
H A Dwctob.c14 char internalBuffer[MB_LEN_MAX];
/haiku-fatelf/src/bin/bash/lib/readline/
H A Drlmbutil.h68 /* Make sure MB_LEN_MAX is at least 16 on systems that claim to be able to
69 handle multibyte chars (some systems define MB_LEN_MAX as 1) */
72 # if defined(MB_LEN_MAX) && (MB_LEN_MAX < 16)
73 # undef MB_LEN_MAX macro
75 # if !defined (MB_LEN_MAX)
76 # define MB_LEN_MAX 16 macro
128 #undef MB_LEN_MAX macro
131 #define MB_LEN_MAX 1 macro
H A Dvi_mode.c92 static char _rl_vi_last_search_mbchar[MB_LEN_MAX];
769 char mb[MB_LEN_MAX+1];
1276 c = _rl_vi_last_search_mblen = _rl_read_mbchar (_rl_vi_last_search_mbchar, MB_LEN_MAX);
1352 c = _rl_read_mbchar (_rl_vi_last_search_mbchar, MB_LEN_MAX);
1549 char mb[MB_LEN_MAX];
1551 _rl_vi_last_replacement = c = _rl_vi_callback_getchar (mb, MB_LEN_MAX);
1568 char mb[MB_LEN_MAX];
1585 _rl_vi_last_replacement = c = _rl_vi_callback_getchar (mb, MB_LEN_MAX);
H A Dtext.c621 static char pending_bytes[MB_LEN_MAX];
637 char incoming[MB_LEN_MAX + 1];
819 char mbkey[MB_LEN_MAX];
824 k = _rl_read_mbstring (c, mbkey, MB_LEN_MAX);
1248 char mb[MB_LEN_MAX+1];
1527 char mbchar[MB_LEN_MAX];
1530 mb_len = _rl_read_mbchar (mbchar, MB_LEN_MAX);
/haiku-fatelf/src/bin/bash/
H A Dconfig-bot.h172 /* Make sure MB_LEN_MAX is at least 16 (some systems define
173 MB_LEN_MAX as 1) */
176 # if defined(MB_LEN_MAX) && (MB_LEN_MAX < 16)
177 # undef MB_LEN_MAX macro
179 # if !defined (MB_LEN_MAX)
180 # define MB_LEN_MAX 16 macro
/haiku-fatelf/src/system/libroot/posix/glibc/wcsmbs/
H A Dwcsmbsload.c39 .__max_needed_from = MB_LEN_MAX,
59 .__max_needed_to = MB_LEN_MAX,
/haiku-fatelf/headers/build/gcc-2.95.3/
H A Dlimits.h25 #ifndef MB_LEN_MAX
26 #define MB_LEN_MAX 16 macro
/haiku-fatelf/headers/posix/
H A Dlimits.h22 #define MB_LEN_MAX 16 macro
/haiku-fatelf/src/libs/ncurses/ncurses/widechar/
H A Dcharable.c54 char temp[MB_LEN_MAX];
H A Dlib_get_wch.c64 char buffer[(MB_LEN_MAX * 9) + 1]; /* allow some redundant shifts */
/haiku-fatelf/src/bin/bash/lib/glob/
H A Dxmbsrtowcs.c199 mblength = mbrtowc(&wc, p, MB_LEN_MAX, &state);
202 mblength = mbrtowc(&wc, p, MB_LEN_MAX, &state);
/haiku-fatelf/src/libs/ncurses/form/
H A Dform.priv.h45 #ifndef MB_LEN_MAX
46 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */ macro
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dtrio.c65 #if defined(__STDC_ISO_10646__) || defined(MB_LEN_MAX) || defined(USE_MULTIBYTE) || TRIO_WIDECHAR
67 # if !defined(MB_LEN_MAX)
68 # define MB_LEN_MAX 6 macro
367 MAX_LOCALE_SEPARATOR_LENGTH = MB_LEN_MAX,
1212 charlen = mblen(&format[index], MB_LEN_MAX);
2480 char buffer[MB_LEN_MAX + 1];
3081 charlen = mblen(&format[index], MB_LEN_MAX);
5007 * string to enable multibyte characters. At most MB_LEN_MAX characters
5651 char buffer[MB_LEN_MAX + 1];
6050 charlen = mblen(&format[index], MB_LEN_MAX);
[all...]
/haiku-fatelf/src/bin/bash/include/
H A Dshmbutil.h51 #undef MB_LEN_MAX macro
54 #define MB_LEN_MAX 1 macro

Completed in 314 milliseconds

12