Searched refs:endlen (Results 1 – 1 of 1) sorted by relevance
/php-src/ext/standard/ |
H A D | string.c | 2158 static zend_string *php_chunk_split(const char *src, size_t srclen, const char *end, size_t endlen,… argument 2174 dest = zend_string_safe_alloc(chunks, endlen, srclen, 0); 2178 q = zend_mempcpy(q, end, endlen); 2184 q = zend_mempcpy(q, end, endlen); 2199 size_t endlen = 2; local 2207 Z_PARAM_STRING(end, endlen) 2217 result = zend_string_safe_alloc(ZSTR_LEN(str), 1, endlen, 0); 2219 memcpy(ZSTR_VAL(result) + ZSTR_LEN(str), end, endlen); 2228 result = php_chunk_split(ZSTR_VAL(str), ZSTR_LEN(str), end, endlen, (size_t)chunklen);
|
Completed in 22 milliseconds