Home
last modified time | relevance | path

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

/PHP-8.1/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-8.1/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-8.1/ext/mysqlnd/
H A Dmysqlnd_wireprotocol.c1153 total_len += len + 1; \
1173 size_t total_len = 0; in php_mysqlnd_rset_field_read() local
1277 root_ptr = meta->root = packet->memory_pool->get_chunk(packet->memory_pool, total_len); in php_mysqlnd_rset_field_read()
1278 meta->root_len = total_len; in php_mysqlnd_rset_field_read()
/PHP-8.1/ext/hash/xxhash/
H A Dxxhash.h631 XXH64_hash_t total_len; member
1998 state->total_len += len; in XXH64_update()
2050 if (state->total_len >= 32) { in XXH64_digest()
2065 h64 += (xxh_u64) state->total_len; in XXH64_digest()
2067 return XXH64_finalize(h64, (const xxh_u8*)state->mem64, (size_t)state->total_len, XXH_aligned); in XXH64_digest()

Completed in 61 milliseconds