max_file_size    1440 ext/opcache/ZendAccelerator.c 	    ZCG(accel_directives).max_file_size > 0) {
max_file_size    1446 ext/opcache/ZendAccelerator.c 		timestamp = zend_get_file_handle_timestamp(file_handle, ZCG(accel_directives).max_file_size > 0 ? &size : NULL);
max_file_size    1463 ext/opcache/ZendAccelerator.c 		if (ZCG(accel_directives).max_file_size > 0 && size > (size_t)ZCG(accel_directives).max_file_size) {
max_file_size     217 ext/opcache/ZendAccelerator.h 	zend_long           max_file_size;
max_file_size     290 ext/opcache/zend_accelerator_module.c 	STD_PHP_INI_ENTRY("opcache.max_file_size"         , "0"   , PHP_INI_SYSTEM, OnUpdateLong,	             accel_directives.max_file_size,             zend_accel_globals, accel_globals)
max_file_size     705 ext/opcache/zend_accelerator_module.c 	add_assoc_long(&directives,   "opcache.max_file_size",          ZCG(accel_directives).max_file_size);
max_file_size     694 main/rfc1867.c 	int64_t total_bytes = 0, max_file_size = 0;
max_file_size     916 main/rfc1867.c 					max_file_size = atoll(value);
max_file_size     918 main/rfc1867.c 					max_file_size = strtoll(value, NULL, 10);
max_file_size    1049 main/rfc1867.c 				} else if (max_file_size && ((zend_long)(total_bytes+blen) > max_file_size)) {
max_file_size    1051 main/rfc1867.c 					sapi_module.sapi_error(E_NOTICE, "MAX_FILE_SIZE of " ZEND_LONG_FMT " bytes exceeded - file [%s=%s] not saved", max_file_size, param, filename);