Searched refs:mb_len (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/ |
D | regexec.c | 1668 int mb_len; in match_at() local 1671 mb_len = enclen(encode, s); in match_at() 1672 DATA_ENSURE(mb_len); in match_at() 1674 s += mb_len; in match_at() 1729 int mb_len = enclen(encode, s); in match_at() local 1731 if (! DATA_ENSURE_CHECK(mb_len)) { in match_at() 1739 s += mb_len; in match_at() 1778 int mb_len; in match_at() local 1783 mb_len = enclen(encode, s); in match_at() 1785 s += mb_len; in match_at() [all …]
|
D | regcomp.c | 319 select_str_opcode(int mb_len, int str_len, int ignore_case) in select_str_opcode() argument 330 switch (mb_len) { in select_str_opcode() 423 add_compile_string_length(UChar* s ARG_UNUSED, int mb_len, int str_len, in add_compile_string_length() argument 427 int op = select_str_opcode(mb_len, str_len, ignore_case); in add_compile_string_length() 435 len += mb_len * str_len; in add_compile_string_length() 440 add_compile_string(UChar* s, int mb_len, int str_len, in add_compile_string() argument 443 int op = select_str_opcode(mb_len, str_len, ignore_case); in add_compile_string() 447 add_length(reg, mb_len); in add_compile_string() 451 add_length(reg, mb_len * str_len); in add_compile_string() 456 add_bytes(reg, s, mb_len * str_len); in add_compile_string() [all …]
|