Searched refs:mb_cur_max (Results 1 - 25 of 28) sorted by relevance

12

/macosx-10.10/Libc-1044.1.2/locale/FreeBSD/
H A Dwcsnrtombs.c66 int mb_cur_max = runeLocale->__mb_cur_max; local
85 if (len > (size_t)mb_cur_max) {
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dregex_internal.c48 if (init_len < dfa->mb_cur_max)
49 init_len = dfa->mb_cur_max;
60 pstr->valid_len = (pstr->mbs_allocated || dfa->mb_cur_max > 1) ? 0 : len;
87 if (dfa->mb_cur_max > 1)
96 if (pstr->bufs_len > pstr->valid_len + dfa->mb_cur_max)
110 if (dfa->mb_cur_max > 1)
135 if (pstr->mb_cur_max > 1)
182 pstr->mb_cur_max = dfa->mb_cur_max;
208 assert (MB_LEN_MAX >= pstr->mb_cur_max);
[all...]
H A Dregex_internal.h415 int mb_cur_max; member in struct:re_string_t
696 int mb_cur_max; member in struct:re_dfa_t
813 if (pstr->mb_cur_max == 1)
825 if (pstr->mb_cur_max == 1)
H A Dregcomp.c314 bool icase = (dfa->mb_cur_max == 1 && (bufp->syntax & RE_ICASE));
324 if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
382 if (dfa->mb_cur_max > 1)
395 if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
872 dfa->mb_cur_max = MB_CUR_MAX;
874 if (dfa->mb_cur_max == 6
889 if (dfa->mb_cur_max > 1)
1039 to speed things up, set dfa->mb_cur_max to 1, clear is_utf8 and change
1111 dfa->mb_cur_max = 1;
1769 if (input->mb_cur_max >
[all...]
H A Dregexec.c749 sb = dfa->mb_cur_max == 1;
3467 if (dest_states[i] != dest_states_word[i] && dfa->mb_cur_max > 1)
3609 if (dfa->mb_cur_max > 1)
3663 if (dfa->mb_cur_max > 1)
3682 if (dfa->mb_cur_max > 1)
4154 if (pstr->mb_cur_max > 1)
4167 if (pstr->mb_cur_max > 1)
/macosx-10.10/nano-12/src/
H A Dprompt.c322 char *char_buf = charalloc(mb_cur_max());
516 char_mb = charalloc(mb_cur_max());
581 char_mb = charalloc(mb_cur_max());
812 bracket_set = charalloc((mb_cur_max() * 2) + 1);
817 found_ch = charalloc(mb_cur_max() + 1);
1191 prompt = charalloc(((COLS - 4) * mb_cur_max()) + 1);
1196 vsnprintf(prompt, (COLS - 4) * mb_cur_max(), msg, ap);
H A Dwinio.c1912 buf_mb = charalloc(mb_cur_max());
1924 * 1 byte ('^') + mb_cur_max() bytes + 1 byte ('\0')
1926 * mb_cur_max() bytes + 1 byte ('\0')
1928 * mb_cur_max() bytes + (tabsize - 1) bytes + 1 byte ('\0')
1932 alloc_len = (mb_cur_max() + tabsize + 1) * MAX_BUF_SIZE;
1945 char *ctrl_buf_mb = charalloc(mb_cur_max());
1982 if (index + mb_cur_max() + tabsize + 1 >= alloc_len - 1) {
1983 alloc_len += (mb_cur_max() + tabsize + 1) * MAX_BUF_SIZE;
2007 char *ctrl_buf_mb = charalloc(mb_cur_max());
2039 char *nctrl_buf_mb = charalloc(mb_cur_max());
[all...]
H A Dmove.c216 char_mb = charalloc(mb_cur_max());
311 char_mb = charalloc(mb_cur_max());
H A Dutils.c261 char *p = charalloc(mb_cur_max()), *r = charalloc(mb_cur_max());
H A Dhelp.c401 allocsize += (24 * mb_cur_max()) + strlen(s->help) + 2;
H A Dsearch.c1210 bracket_set = charalloc((mb_cur_max() * 2) + 1);
1215 found_ch = charalloc(mb_cur_max() + 1);
H A Dchars.c332 int mb_cur_max(void) function
H A Dproto.h192 int mb_cur_max(void);
H A Dfiles.c2279 char *match1_mb = charalloc(mb_cur_max() + 1);
2280 char *match2_mb = charalloc(mb_cur_max() + 1);
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dvfwscanf.c166 int mb_cur_max = MB_CUR_MAX_L(loc); local
425 if (width >= mb_cur_max &&
489 if (width >= mb_cur_max &&
552 if (width >= mb_cur_max &&
H A Dvfscanf.c156 int mb_cur_max; local
163 mb_cur_max = MB_CUR_MAX_L(loc);
403 if (n == mb_cur_max) {
482 if (n == mb_cur_max) {
582 if (n == mb_cur_max) {
H A Dvfwprintf.c289 int mb_cur_max = MB_CUR_MAX_L(loc); local
307 nconv = mbrlen_l(p, mb_cur_max, &mbs, loc);
/macosx-10.10/ksh-23/ksh/src/lib/libast/astsa/
H A Dast.h74 int mb_cur_max; member in struct:__anon9306
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dglob.c198 int mb_cur_max = MB_CUR_MAX_L(loc); local
213 while (bufend - bufnext >= mb_cur_max) {
225 while (bufend - bufnext >= mb_cur_max) {
964 int mb_cur_max = MB_CUR_MAX_L(loc); local
967 while (len >= mb_cur_max) {
/macosx-10.10/ksh-23/ksh/src/lib/libast/include/
H A Dast_std.h245 int mb_cur_max; member in struct:__anon9327
H A Dast.h181 #define mbmax() (ast.mb_cur_max)
/macosx-10.10/ICU-531.30/icuSources/data/mappings/
H A Diso-8859_10-1998.ucm46 <mb_cur_max> 1
H A Diso-8859_11-2001.ucm48 <mb_cur_max> 1
H A Diso-8859_14-1998.ucm43 <mb_cur_max> 1
H A Diso-8859_16-2001.ucm40 <mb_cur_max> 1

Completed in 172 milliseconds

12