copy_len         1991 Zend/zend_virtual_cwd.c 		int copy_len = new_state.cwd_length>MAXPATHLEN-1 ? MAXPATHLEN-1 : new_state.cwd_length;
copy_len         1992 Zend/zend_virtual_cwd.c 		memcpy(real_path, new_state.cwd, copy_len);
copy_len         1993 Zend/zend_virtual_cwd.c 		real_path[copy_len] = '\0';
copy_len          515 ext/oci8/oci8_lob.c 	ub4 length_dest, length_from, copy_len;
copy_len          527 ext/oci8/oci8_lob.c 		copy_len = length_from - descriptor_from->lob_current_position;
copy_len          529 ext/oci8/oci8_lob.c 		copy_len = length;
copy_len          532 ext/oci8/oci8_lob.c 	if ((int)copy_len <= 0) {
copy_len          543 ext/oci8/oci8_lob.c 			 copy_len,
copy_len           80 ext/standard/formatted_print.c 	int copy_len;
copy_len           83 ext/standard/formatted_print.c 	copy_len = (expprec ? MIN(max_width, len) : len);
copy_len           84 ext/standard/formatted_print.c 	npad = min_width - copy_len;
copy_len           92 ext/standard/formatted_print.c 	m_width = MAX(min_width, copy_len);
copy_len          115 ext/standard/formatted_print.c 			copy_len--;
copy_len          122 ext/standard/formatted_print.c 	memcpy(&(*buffer)[*pos], add, copy_len + 1);
copy_len          123 ext/standard/formatted_print.c 	*pos += copy_len;
copy_len          750 main/fopen_wrappers.c 	int copy_len;
copy_len          777 main/fopen_wrappers.c 				copy_len = strlen(filepath) > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : strlen(filepath);
copy_len          779 main/fopen_wrappers.c 					memcpy(real_path, filepath, copy_len);
copy_len          780 main/fopen_wrappers.c 					real_path[copy_len] = '\0';
copy_len          782 main/fopen_wrappers.c 					real_path = estrndup(filepath, copy_len);
copy_len          803 main/fopen_wrappers.c 		copy_len = new_state.cwd_length > MAXPATHLEN - 1 ? MAXPATHLEN - 1 : new_state.cwd_length;
copy_len          804 main/fopen_wrappers.c 		memcpy(real_path, new_state.cwd, copy_len);
copy_len          805 main/fopen_wrappers.c 		real_path[copy_len] = '\0';