Home
last modified time | relevance | path

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

/PHP-8.2/ext/standard/
H A Dstring.c2010 static zend_string *php_chunk_split(const char *src, size_t srclen, const char *end, size_t endlen,… argument
2026 dest = zend_string_safe_alloc(chunks, endlen, srclen, 0);
2031 memcpy(q, end, endlen);
2032 q += endlen;
2039 memcpy(q, end, endlen);
2040 q += endlen;
2055 size_t endlen = 2; local
2063 Z_PARAM_STRING(end, endlen)
2073 result = zend_string_safe_alloc(ZSTR_LEN(str), 1, endlen, 0);
2075 memcpy(ZSTR_VAL(result) + ZSTR_LEN(str), end, endlen);
[all …]

Completed in 25 milliseconds