Searched refs:total_len (Results 1 – 3 of 3) sorted by relevance
131 size_t len, total_len=0; in php_uudecode() local154 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()
631 size_t total_len; in _php_iconv_substr() local634 err = _php_iconv_strlen(&total_len, str, nbytes, enc); in _php_iconv_substr()640 if ((offset += total_len) < 0) { in _php_iconv_substr()643 } else if ((size_t)offset > total_len) { in _php_iconv_substr()644 offset = total_len; in _php_iconv_substr()648 if ((len += (total_len - offset)) < 0) { in _php_iconv_substr()651 } else if ((size_t)len > total_len) { in _php_iconv_substr()652 len = total_len; in _php_iconv_substr()655 if ((size_t)(offset + len) > total_len ) { in _php_iconv_substr()657 len = total_len - offset; in _php_iconv_substr()
1166 total_len += len + 1; \1186 size_t total_len = 0; in php_mysqlnd_rset_field_read() local1290 root_ptr = meta->root = packet->memory_pool->get_chunk(packet->memory_pool, total_len); in php_mysqlnd_rset_field_read()1291 meta->root_len = total_len; in php_mysqlnd_rset_field_read()
Completed in 23 milliseconds