Lines Matching refs:original
292 * @param string $file path to the original file
293 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data, empty to take from original
300 * @param string $file path to the original file
301 * @param string|FileInfo $fileinfo either the name to use in archive (string) or a FileInfo oject with all meta data, empty to take from original
1005 * @param $original
1008 protected function encodeFilename($original)
1010 $cp437 = $this->utf8ToCp($original);
1011 if ($cp437 === $original) {
1012 return array($original, '');
1018 strlen($original) + 5, // length of file + version + crc
1020 crc32($original) // crc
1022 $extra .= $original;