Home
last modified time | relevance | path

Searched refs:max_char (Results 1 - 7 of 7) sorted by relevance

/third_party/python/Objects/stringlib/
H A Dfind_max_char.h73 Py_UCS4 max_char; in find_max_char() local
75 max_char = MAX_CHAR_ASCII; in find_max_char()
85 max_char = MAX_CHAR_UCS1; in find_max_char()
91 max_char = MAX_CHAR_UCS2; in find_max_char()
106 max_char = MAX_CHAR_UCS1; in find_max_char()
112 max_char = MAX_CHAR_UCS2; in find_max_char()
120 return max_char; in find_max_char()
/third_party/skia/third_party/externals/freetype/src/type42/
H A Dt42objs.c101 FT_Int charcode, idx, min_char, max_char; in T42_Open_Face() local
111 max_char = 0; in T42_Open_Face()
140 if ( charcode >= max_char ) in T42_Open_Face()
141 max_char = charcode + 1; in T42_Open_Face()
149 type1->encoding.code_last = max_char; in T42_Open_Face()
/third_party/node/deps/v8/src/regexp/
H A Dregexp-compiler.cc1103 // know that the character is in the range of min_char to max_char inclusive.
1108 base::uc32 min_char, base::uc32 max_char, in GenerateBranches()
1112 DCHECK_LE(max_char, String::kMaxUtf16CodeUnit); in GenerateBranches()
1152 max_char, fall_through, even_label, odd_label); in GenerateBranches()
1160 if ((max_char >> kBits) == (min_char >> kBits)) { in GenerateBranches()
1168 GenerateBranches(masm, ranges, start_index + 1, end_index, first, max_char, in GenerateBranches()
1197 DCHECK_LT(border, max_char); in GenerateBranches()
1212 GenerateBranches(masm, ranges, new_start_index, end_index, border, max_char, in GenerateBranches()
1240 const base::uc32 max_char = MaxCodeUnit(one_byte); in EmitCharClass() local
1241 if (ranges_length == 1 && ranges->at(0).IsEverything(max_char)) { in EmitCharClass()
1106 GenerateBranches(RegExpMacroAssembler* masm, ZoneList<base::uc32>* ranges, uint32_t start_index, uint32_t end_index, base::uc32 min_char, base::uc32 max_char, Label* fall_through, Label* even_label, Label* odd_label) GenerateBranches() argument
2563 const base::uc32 max_char = MaxCodeUnit(compiler->one_byte()); GetSuccessorOfOmnivorousTextNode() local
3831 int max_char = bm->max_char(); FillInBMInfo() local
[all...]
H A Dregexp-compiler.h170 int max_char() { return max_char_; } in max_char() function in v8::internal::BoyerMooreLookahead
H A Dregexp-compiler-tonode.cc1534 static constexpr base::uc32 max_char = String::kMaxOneByteCharCodeU; in RationalizeConsecutiveAtoms() local
1538 if (r.from() <= max_char) { in RationalizeConsecutiveAtoms()
1539 r.to_ = std::min(r.to_, max_char); in RationalizeConsecutiveAtoms()
/third_party/skia/third_party/externals/freetype/src/type1/
H A Dt1load.c2672 FT_Int charcode, idx, min_char, max_char; in FT_LOCAL_DEF() local
2681 max_char = 0; in FT_LOCAL_DEF()
2710 if ( charcode >= max_char ) in FT_LOCAL_DEF()
2711 max_char = charcode + 1; in FT_LOCAL_DEF()
2719 type1->encoding.code_last = max_char; in FT_LOCAL_DEF()
/third_party/python/Objects/
H A Dunicodeobject.c1576 Py_UCS4 max_char; in _copy_characters() local
1577 max_char = ucs1lib_find_max_char(from_data, in _copy_characters()
1579 if (max_char >= 128) in _copy_characters()
2398 unsigned char max_char; in _PyUnicode_FromUCS1() local
2408 max_char = ucs1lib_find_max_char(u, u + size); in _PyUnicode_FromUCS1()
2409 res = PyUnicode_New(size, max_char); in _PyUnicode_FromUCS1()
2421 Py_UCS2 max_char; in _PyUnicode_FromUCS2() local
2429 max_char = ucs2lib_find_max_char(u, u + size); in _PyUnicode_FromUCS2()
2430 res = PyUnicode_New(size, max_char); in _PyUnicode_FromUCS2()
2433 if (max_char > in _PyUnicode_FromUCS2()
2447 Py_UCS4 max_char; _PyUnicode_FromUCS4() local
2534 Py_UCS4 max_char; unicode_adjust_maxchar() local
14260 Py_UCS4 ch, max_char, kind_limit; unicode_subscript() local
[all...]

Completed in 24 milliseconds