Home
last modified time | relevance | path

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

/PHP-5.3/ext/standard/
H A Dformatted_print.c78 int copy_len; in php_sprintf_appendstring() local
81 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
82 npad = min_width - copy_len; in php_sprintf_appendstring()
90 m_width = MAX(min_width, copy_len); in php_sprintf_appendstring()
113 copy_len--; in php_sprintf_appendstring()
120 memcpy(&(*buffer)[*pos], add, copy_len + 1); in php_sprintf_appendstring()
121 *pos += copy_len; in php_sprintf_appendstring()
/PHP-5.3/main/
H A Dfopen_wrappers.c849 int copy_len; local
876 copy_len = strlen(filepath) > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : strlen(filepath);
877 real_path = estrndup(filepath, copy_len);
897 copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length;
898 memcpy(real_path, new_state.cwd, copy_len);
899 real_path[copy_len] = '\0';
/PHP-5.3/ext/oci8/
H A Doci8_lob.c535 ub4 length_dest, length_from, copy_len; in php_oci_lob_copy() local
546 copy_len = length_from - descriptor_from->lob_current_position; in php_oci_lob_copy()
548 copy_len = length; in php_oci_lob_copy()
551 if ((int)copy_len <= 0) { in php_oci_lob_copy()
562 copy_len, in php_oci_lob_copy()
/PHP-5.3/TSRM/
H A Dtsrm_virtual_cwd.c1974 int copy_len = new_state.cwd_length>MAXPATHLEN-1 ? MAXPATHLEN-1 : new_state.cwd_length; in tsrm_realpath() local
1975 memcpy(real_path, new_state.cwd, copy_len); in tsrm_realpath()
1976 real_path[copy_len] = '\0'; in tsrm_realpath()

Completed in 28 milliseconds