Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dphp_string.h63 # define php_mblen(ptr, len) ((int) mbrlen(ptr, len, &BG(mblen_state))) macro
66 # define php_mblen(ptr, len) mblen(ptr, len) macro
H A Dexec.c303 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_cmd()
416 int mb_len = php_mblen(str + x, (l - x)); in php_escape_shell_arg()
H A Dfile.c1624 inc_len = (*ptr == '\0' ? 1 : php_mblen(ptr, len)); in php_fgetcsv_lookup_trailing_spaces()
1928 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2080 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2104 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
2134 inc_len = (bptr < limit ? (*bptr == '\0' ? 1 : php_mblen(bptr, limit - bptr)): 0); in php_fgetcsv()
H A Dstring.c1421 int inc_len = (*s == '\0' ? 1 : php_mblen(s, len));

Completed in 27 milliseconds