Searched refs:php_mblen (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_3/ext/standard/ |
| H A D | exec.c | 291 int mb_len = php_mblen(str + x, (l - x)); 387 int mb_len = php_mblen(str + x, (l - x));
|
| H A D | php_string.h | 152 # define php_mblen(ptr, len) 1 macro 155 # define php_mblen(ptr, len) ((ptr) == NULL ? mbsinit(&BG(mblen_state)): (int)mbrlen(ptr, len, &BG(mblen_state))) macro 157 # define php_mblen(ptr, len) mblen(ptr, len) macro
|
| H A D | string.c | 1351 inc_len = (*c == '\0' ? 1: php_mblen(c, cnt)); 1357 php_mblen(NULL, 0);
|
| H A D | file.c | 1916 inc_len = (*ptr == '\0' ? 1: php_mblen(ptr, len)); 1921 php_mblen(NULL, 0); 2175 php_mblen(NULL, 0); 2200 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); 2289 php_mblen(NULL, 0); 2344 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); 2357 php_mblen(NULL, 0); 2368 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0); 2388 php_mblen(NULL, 0); 2399 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bpt [all...] |
Completed in 26 milliseconds