Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Duuencode.c131 size_t len, total_len=0; in php_uudecode() local
154 total_len += len; in php_uudecode()
181 if ((len = total_len) > (size_t)(p - ZSTR_VAL(dest))) { in php_uudecode()
191 ZSTR_LEN(dest) = total_len; in php_uudecode()
/php-src/ext/iconv/
H A Diconv.c639 size_t total_len; in _php_iconv_substr() local
642 err = _php_iconv_strlen(&total_len, str, nbytes, enc); in _php_iconv_substr()
648 if ((offset += total_len) < 0) { in _php_iconv_substr()
651 } else if ((size_t)offset > total_len) { in _php_iconv_substr()
652 offset = total_len; in _php_iconv_substr()
656 if ((len += (total_len - offset)) < 0) { in _php_iconv_substr()
659 } else if ((size_t)len > total_len) { in _php_iconv_substr()
660 len = total_len; in _php_iconv_substr()
663 if ((size_t)(offset + len) > total_len ) { in _php_iconv_substr()
665 len = total_len - offset; in _php_iconv_substr()
/php-src/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c1125 total_len += len + 1; \
1145 size_t total_len = 0; in php_mysqlnd_rset_field_read() local
1249 root_ptr = meta->root = packet->memory_pool->get_chunk(packet->memory_pool, total_len); in php_mysqlnd_rset_field_read()
1250 meta->root_len = total_len; in php_mysqlnd_rset_field_read()
/php-src/ext/hash/xxhash/
H A Dxxhash.h1000 XXH64_hash_t total_len; /*!< Total length hashed. This is always 64-bit. */ member
2630 state->total_len += len; in XXH64_update()
2675 if (state->total_len >= 32) { in XXH64_digest()
2685 h64 += (xxh_u64) state->total_len; in XXH64_digest()
2687 return XXH64_finalize(h64, (const xxh_u8*)state->mem64, (size_t)state->total_len, XXH_aligned); in XXH64_digest()
/php-src/ext/mbstring/
H A Dmbstring.c3028 size_t total_len = 0; in trim_each_wchar() local
3033 total_len += out_len; in trim_each_wchar()
3056 return mb_get_substr(str, left, total_len - (right + left), enc); in trim_each_wchar()

Completed in 75 milliseconds