Home
last modified time | relevance | path

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

/PHP-7.0/ext/standard/
H A Dformatted_print.c79 size_t copy_len; in php_sprintf_appendstring() local
82 copy_len = (expprec ? MIN(max_width, len) : len); in php_sprintf_appendstring()
83 npad = (min_width < copy_len) ? 0 : min_width - copy_len; in php_sprintf_appendstring()
87 m_width = MAX(min_width, copy_len); in php_sprintf_appendstring()
111 copy_len--; in php_sprintf_appendstring()
118 memcpy(&ZSTR_VAL(*buffer)[*pos], add, copy_len + 1); in php_sprintf_appendstring()
119 *pos += copy_len; in php_sprintf_appendstring()
/PHP-7.0/main/
H A Dfopen_wrappers.c768 int copy_len; local
800 copy_len = path_len > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : path_len;
802 memcpy(real_path, filepath, copy_len);
803 real_path[copy_len] = '\0';
805 real_path = estrndup(filepath, copy_len);
826 copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length;
827 memcpy(real_path, new_state.cwd, copy_len);
828 real_path[copy_len] = '\0';
/PHP-7.0/ext/oci8/
H A Doci8_lob.c510 ub4 length_dest, length_from, copy_len; in php_oci_lob_copy() local
522 copy_len = length_from - descriptor_from->lob_current_position; in php_oci_lob_copy()
524 copy_len = (ub4) length; in php_oci_lob_copy()
527 if ((int)copy_len <= 0) { in php_oci_lob_copy()
538 copy_len, in php_oci_lob_copy()
/PHP-7.0/Zend/
H A Dzend_virtual_cwd.c1967 int copy_len = new_state.cwd_length>MAXPATHLEN-1 ? MAXPATHLEN-1 : new_state.cwd_length; in tsrm_realpath() local
1968 memcpy(real_path, new_state.cwd, copy_len); in tsrm_realpath()
1969 real_path[copy_len] = '\0'; in tsrm_realpath()

Completed in 22 milliseconds