HomeSort by relevance Sort by last modified time
    Searched refs:mb_cur_max (Results 1 - 19 of 19) sorted by null

  /ndk/sources/host-tools/sed-4.2.1/sed/
mbcs.c 24 int mb_cur_max; variable
61 mb_cur_max = MB_CUR_MAX;
63 mb_cur_max = 1;
sed.h 243 extern int mb_cur_max;
249 (mb_cur_max == 1 ? \
254 (mb_cur_max == 1 ? \
266 (mb_cur_max == 1 ? 1 : mbsinit ((s)))
269 (mb_cur_max == 1 ? 1 : mbrtowc (NULL, s, n, ps))
272 (mb_cur_max == 1 ? 1 : brlen (ch, ps))
execute.c 254 if (mb_cur_max > 1 && !is_utf8)
295 if (to->alloc - to->length < length * mb_cur_max)
296 resize_line(to, to->length + length * mb_cur_max);
    [all...]
compile.c 1315 if (mb_cur_max > 1)
    [all...]
  /bionic/libc/bionic/
locale.cpp 40 size_t mb_cur_max; member in struct:__locale_t
42 __locale_t(size_t mb_cur_max) : mb_cur_max(mb_cur_max) {
47 mb_cur_max = __bionic_current_locale_is_utf8 ? 4 : 1;
49 mb_cur_max = other->mb_cur_max;
100 return l->mb_cur_max;
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 50 if (init_len < dfa->mb_cur_max)
51 init_len = dfa->mb_cur_max;
62 pstr->valid_len = (pstr->mbs_allocated || dfa->mb_cur_max > 1) ? 0 : len;
89 if (dfa->mb_cur_max > 1)
98 if (pstr->bufs_len > pstr->valid_len + dfa->mb_cur_max)
112 if (dfa->mb_cur_max > 1)
137 if (pstr->mb_cur_max > 1)
184 pstr->mb_cur_max = dfa->mb_cur_max;
210 assert (MB_LEN_MAX >= pstr->mb_cur_max);
    [all...]
regex_internal.h 90 #if (defined MB_CUR_MAX && HAVE_LOCALE_H && HAVE_WCTYPE_H && HAVE_ISWCTYPE && HAVE_WCSCOLL) || _LIBC
415 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)
regcomp.c 317 bool icase = (dfa->mb_cur_max == 1 && (bufp->syntax & RE_ICASE));
327 if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
389 if (dfa->mb_cur_max > 1
417 if ((bufp->syntax & RE_ICASE) && dfa->mb_cur_max > 1)
895 dfa->mb_cur_max = MB_CUR_MAX;
897 if (dfa->mb_cur_max == 6
912 if (dfa->mb_cur_max > 1)
    [all...]
regexec.c 752 sb = dfa->mb_cur_max == 1;
    [all...]
  /bionic/tests/
locale_test.cpp 109 TEST(locale, mb_cur_max) {
118 ASSERT_EQ(1U, MB_CUR_MAX);
120 ASSERT_EQ(4U, MB_CUR_MAX);
  /external/chromium_org/third_party/icu/source/data/mappings/
iso-8859_10-1998.ucm 46 <mb_cur_max> 1
iso-8859_11-2001.ucm 48 <mb_cur_max> 1
iso-8859_14-1998.ucm 43 <mb_cur_max> 1
iso-8859_16-2001.ucm 40 <mb_cur_max> 1
  /external/icu/icu4c/source/data/mappings/
iso-8859_10-1998.ucm 46 <mb_cur_max> 1
iso-8859_11-2001.ucm 48 <mb_cur_max> 1
iso-8859_14-1998.ucm 43 <mb_cur_max> 1
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
crtdefs.h 188 int mb_cur_max; member in struct:threadlocaleinfostruct
ctype.h 187 #ifndef MB_CUR_MAX
188 #define MB_CUR_MAX ___mb_cur_max_func()
203 #define _ischartype_l(_Char,_Flag,_Locale) (((_Locale)!=NULL && (((_locale_t)(_Locale))->locinfo->mb_cur_max) > 1) ? _isctype_l(_Char,(_Flag),_Locale) : _chvalidchk_l(_Char,_Flag,_Locale))

Completed in 908 milliseconds