Home
last modified time | relevance | path

Searched refs:php_mblen (Results 1 – 4 of 4) sorted by relevance

/PHP-8.0/ext/standard/
H A Dphp_string.h70 # define php_mblen(ptr, len) ((int) mbrlen(ptr, len, &BG(mblen_state))) macro
73 # define php_mblen(ptr, len) mblen(ptr, len) macro
H A Dexec.c301 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_cmd()
410 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_arg()
H A Dfile.c1753 inc_len = (*ptr == '\0' ? 1 : php_mblen(ptr, len)); in php_fgetcsv_lookup_trailing_spaces()
2039 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2184 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2208 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2239 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
H A Dstring.c1474 int inc_len = (*s == '\0' ? 1 : php_mblen(s, len));

Completed in 30 milliseconds