Home
last modified time | relevance | path

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

/PHP-5.4/ext/bz2/
H A Dbz2.c496 unsigned int dest_len; /* Length of the destination buffer */ in PHP_FUNCTION() local
508 dest_len = (unsigned int) (source_len + (0.01 * source_len) + 600); in PHP_FUNCTION()
511 dest = emalloc(dest_len + 1); in PHP_FUNCTION()
522 error = BZ2_bzBuffToBuffCompress(dest, &dest_len, source, source_len, block_size, 0, work_factor); in PHP_FUNCTION()
529 dest = erealloc(dest, dest_len + 1); in PHP_FUNCTION()
530 dest[dest_len] = 0; in PHP_FUNCTION()
531 RETURN_STRINGL(dest, dest_len, 0); in PHP_FUNCTION()
/PHP-5.4/ext/oci8/
H A Doci8_lob.c780 ub4 dest_len, from_len; local
782 if (php_oci_lob_get_length(descriptor_dest, &dest_len TSRMLS_CC)) {
/PHP-5.4/ext/ftp/
H A Dphp_ftp.c1278 int src_len, dest_len; in PHP_FUNCTION() local
1280 …arameters(ZEND_NUM_ARGS() TSRMLS_CC, "rss", &z_ftp, &src, &src_len, &dest, &dest_len) == FAILURE) { in PHP_FUNCTION()
/PHP-5.4/ext/phar/
H A Dphar_object.c4195 static int phar_extract_file(zend_bool overwrite, phar_entry_info *entry, char *dest, int dest_len,… argument
4291 fullpath[dest_len + (slash - filename) + 1] = '\0';
4293 fullpath[dest_len] = '\0';
4315 fullpath[dest_len + (slash - filename) + 1] = '/';
4317 fullpath[dest_len] = '/';

Completed in 35 milliseconds