Searched refs:total_len (Results 1 – 5 of 5) sorted by relevance
/php-src/ext/standard/ |
H A D | uuencode.c | 131 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 D | iconv.c | 638 size_t total_len; in _php_iconv_substr() local 641 err = _php_iconv_strlen(&total_len, str, nbytes, enc); in _php_iconv_substr() 647 if ((offset += total_len) < 0) { in _php_iconv_substr() 650 } else if ((size_t)offset > total_len) { in _php_iconv_substr() 651 offset = total_len; in _php_iconv_substr() 655 if ((len += (total_len - offset)) < 0) { in _php_iconv_substr() 658 } else if ((size_t)len > total_len) { in _php_iconv_substr() 659 len = total_len; in _php_iconv_substr() 662 if ((size_t)(offset + len) > total_len ) { in _php_iconv_substr() 664 len = total_len - offset; in _php_iconv_substr()
|
/php-src/ext/mysqlnd/ |
H A D | mysqlnd_wireprotocol.c | 1181 total_len += len + 1; \ 1201 size_t total_len = 0; in php_mysqlnd_rset_field_read() local 1298 root_ptr = meta->root = packet->memory_pool->get_chunk(packet->memory_pool, total_len); in php_mysqlnd_rset_field_read() 1299 meta->root_len = total_len; in php_mysqlnd_rset_field_read()
|
/php-src/ext/hash/xxhash/ |
H A D | xxhash.h | 1000 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 D | mbstring.c | 3043 size_t total_len = 0; in trim_each_wchar() local 3048 total_len += out_len; in trim_each_wchar() 3071 return mb_get_substr(str, left, total_len - (right + left), enc); in trim_each_wchar()
|
Completed in 59 milliseconds