Home
last modified time | relevance | path

Searched refs:fileSize (Results 351 – 375 of 5716) sorted by relevance

1...<<11121314151617181920>>...229

/dports/polish/napi/napi-ac404649571e470bf9494f788bd8a74843956851/actions/
H A Dlibnapi_scan.sh201 local fileSize=$(fs_stat_SO "$file")
205 $", o rozmiarze: " "$fileSize" \
345 local fileSize="${5:-}"
392 local fileSize="${5:-}"
408 "$fileHash" "$fileName" "$fileSize" "$xmlPath" "$lang" &&
461 local fileSize="${5:-}"
476 "$fileSize" \
505 local fileSize=$(fs_stat_SO "$filePath")
511 $", rozmiar:" "[$fileSize]" \
540 "$fileSize" \
[all …]
/dports/biology/sra-tools/sra-tools-2.11.0/tools/util/
H A Dtest-download.c146 size_t fileSize; member
436 rc = KFileSize ( self -> file, & self -> fileSize ); in DoMakeHttpFileAndSize()
438 self -> max = self -> fileSize; in DoMakeHttpFileAndSize()
478 url, self -> fileSize, pos , toRead ) ); in DoFile()
592 data . bufSize = data . fileSize / data . chunks + 1; in KMain()
593 if ( data . bufSize > data . fileSize ) in KMain()
594 data . bufSize = data . fileSize; in KMain()
631 else if ( data . fileSize == 0 ) in KMain()
639 if ( s > data . fileSize ) in KMain()
640 s = data . fileSize; in KMain()
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/debugging/
H A Dfile_based_ags_debugger.cpp71 soff_t fileSize = in->GetLength(); in GetNextMessage() local
72 char *msg = (char *)malloc(fileSize + 1); in GetNextMessage()
73 in->Read(msg, fileSize); in GetNextMessage()
76 msg[fileSize] = 0; in GetNextMessage()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.core/src/org/eclipse/equinox/internal/p2/core/helpers/
H A DTarInputStream.java259 int fileSize; in getNextEntryInternal() local
261 fileSize = Integer.decode(size.toString()).intValue(); in getNextEntryInternal()
266 entry.setSize(fileSize); in getNextEntryInternal()
267 nextEOF = fileSize; in getNextEntryInternal()
268 if (fileSize % 512 > 0) { in getNextEntryInternal()
269 nextEntry = fileSize + (512 - (fileSize % 512)); in getNextEntryInternal()
271 nextEntry = fileSize; in getNextEntryInternal()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/datatransfer/
H A DTarInputStream.java267 int fileSize; in getNextEntryInternal() local
269 fileSize = Integer.decode(size.toString()).intValue(); in getNextEntryInternal()
274 entry.setSize(fileSize); in getNextEntryInternal()
275 nextEOF = fileSize; in getNextEntryInternal()
276 if(fileSize % 512 > 0) { in getNextEntryInternal()
277 nextEntry = fileSize + (512 - (fileSize % 512)); in getNextEntryInternal()
279 nextEntry = fileSize; in getNextEntryInternal()
/dports/comms/limesuite/LimeSuite-20.10.0/src/protocols/
H A DConnectionImages.cpp156 std::streampos fileSize; in ProgramUpdate() local
158 fileSize = file.tellg(); in ProgramUpdate()
160 std::vector<char> progData(fileSize, 0); in ProgramUpdate()
161 file.read(progData.data(), fileSize); in ProgramUpdate()
180 std::streampos fileSize; in ProgramUpdate() local
182 fileSize = file.tellg(); in ProgramUpdate()
184 std::vector<char> progData(fileSize, 0); in ProgramUpdate()
185 file.read(progData.data(), fileSize); in ProgramUpdate()
/dports/www/bolt/bolt-2.2.24/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/
H A DBinaryFileResponse.php219 $fileSize = $this->file->getSize();
223 $end = ('' === $end) ? $fileSize - 1 : (int) $end;
226 $start = $fileSize - $end;
227 $end = $fileSize - 1;
233 if ($start < 0 || $end > $fileSize - 1) {
235 } elseif ($start !== 0 || $end !== $fileSize - 1) {
236 $this->maxlen = $end < $fileSize ? $end - $start + 1 : -1;
240 … $this->headers->set('Content-Range', sprintf('bytes %s-%s/%s', $start, $end, $fileSize));
/dports/security/vault/aws-sdk-go-v2-fdbaadbce5fd/feature/s3/manager/internal/integration/uploader/
H A Dmain_test.go43 func getUploadPartSize(fileSize, uploadPartSize int64) int64 { argument
46 if fileSize/partSize > int64(manager.MaxUploadParts) {
47 partSize = (fileSize / int64(manager.MaxUploadParts)) + 1
162 for _, fileSize := range benchConfig.FileSizes() {
163 b.Run(fmt.Sprintf("%s File", integration.SizeToName(int(fileSize))), func(b *testing.B) {
167 if partSize > fileSize {
170 partSize = getUploadPartSize(fileSize, partSize)
191 reader := manager.ReadSeekCloser(io.LimitReader(&awstesting.EndlessReader{}, fileSize))
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/nd/java/
H A DFileFingerprint.java171 long fileSize = fileInfo.getLength(); in test() local
173 if (lastModified != UNKNOWN && lastModified == this.time && fileSize == this.size) { in test()
179 hashCode = fileSize == 0 ? 0 : computeHashCode(path.toFile(), fileSize, subMonitor.split(90)); in test()
183 boolean matches = (hashCode == this.hash && fileSize == this.size); in test()
185 FileFingerprint newFingerprint = new FileFingerprint(lastModified, fileSize, hashCode); in test()
189 …private long computeHashCode(File toTest, long fileSize, IProgressMonitor monitor) throws IOExcept… in computeHashCode() argument
194 SubMonitor subMonitor = SubMonitor.convert(monitor, (int) (fileSize / (BUFFER_SIZE * 2))); in computeHashCode()
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/aws/aws-sdk-go-v2/feature/s3/manager/internal/integration/uploader/
H A Dmain_test.go43 func getUploadPartSize(fileSize, uploadPartSize int64) int64 { argument
46 if fileSize/partSize > int64(manager.MaxUploadParts) {
47 partSize = (fileSize / int64(manager.MaxUploadParts)) + 1
162 for _, fileSize := range benchConfig.FileSizes() {
163 b.Run(fmt.Sprintf("%s File", integration.SizeToName(int(fileSize))), func(b *testing.B) {
167 if partSize > fileSize {
170 partSize = getUploadPartSize(fileSize, partSize)
191 reader := manager.ReadSeekCloser(io.LimitReader(&awstesting.EndlessReader{}, fileSize))
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-a930583ec379/feature/s3/manager/internal/integration/uploader/
H A Dmain_test.go44 func getUploadPartSize(fileSize, uploadPartSize int64) int64 { argument
47 if fileSize/partSize > int64(manager.MaxUploadParts) {
48 partSize = (fileSize / int64(manager.MaxUploadParts)) + 1
163 for _, fileSize := range benchConfig.FileSizes() {
164 b.Run(fmt.Sprintf("%s File", integration.SizeToName(int(fileSize))), func(b *testing.B) {
168 if partSize > fileSize {
171 partSize = getUploadPartSize(fileSize, partSize)
192 reader := manager.ReadSeekCloser(io.LimitReader(&awstesting.EndlessReader{}, fileSize))
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-be1c89938486/feature/s3/manager/internal/integration/uploader/
H A Dmain_test.go43 func getUploadPartSize(fileSize, uploadPartSize int64) int64 { argument
46 if fileSize/partSize > int64(manager.MaxUploadParts) {
47 partSize = (fileSize / int64(manager.MaxUploadParts)) + 1
162 for _, fileSize := range benchConfig.FileSizes() {
163 b.Run(fmt.Sprintf("%s File", integration.SizeToName(int(fileSize))), func(b *testing.B) {
167 if partSize > fileSize {
170 partSize = getUploadPartSize(fileSize, partSize)
191 reader := manager.ReadSeekCloser(io.LimitReader(&awstesting.EndlessReader{}, fileSize))
/dports/net-p2p/go-ethereum/aws-sdk-go-v2-credentials-v1.1.1/feature/s3/manager/internal/integration/uploader/
H A Dmain_test.go43 func getUploadPartSize(fileSize, uploadPartSize int64) int64 { argument
46 if fileSize/partSize > int64(manager.MaxUploadParts) {
47 partSize = (fileSize / int64(manager.MaxUploadParts)) + 1
162 for _, fileSize := range benchConfig.FileSizes() {
163 b.Run(fmt.Sprintf("%s File", integration.SizeToName(int(fileSize))), func(b *testing.B) {
167 if partSize > fileSize {
170 partSize = getUploadPartSize(fileSize, partSize)
191 reader := manager.ReadSeekCloser(io.LimitReader(&awstesting.EndlessReader{}, fileSize))
/dports/www/itop/web/lib/silex/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/
H A DBinaryFileResponse.php219 $fileSize = $this->file->getSize();
223 $end = ('' === $end) ? $fileSize - 1 : (int) $end;
226 $start = $fileSize - $end;
227 $end = $fileSize - 1;
233 if ($start < 0 || $end > $fileSize - 1) {
235 } elseif ($start !== 0 || $end !== $fileSize - 1) {
236 $this->maxlen = $end < $fileSize ? $end - $start + 1 : -1;
240 … $this->headers->set('Content-Range', sprintf('bytes %s-%s/%s', $start, $end, $fileSize));
/dports/security/vault/aws-sdk-go-v2-1.5.0/feature/s3/manager/internal/integration/uploader/
H A Dmain_test.go43 func getUploadPartSize(fileSize, uploadPartSize int64) int64 { argument
46 if fileSize/partSize > int64(manager.MaxUploadParts) {
47 partSize = (fileSize / int64(manager.MaxUploadParts)) + 1
162 for _, fileSize := range benchConfig.FileSizes() {
163 b.Run(fmt.Sprintf("%s File", integration.SizeToName(int(fileSize))), func(b *testing.B) {
167 if partSize > fileSize {
170 partSize = getUploadPartSize(fileSize, partSize)
191 reader := manager.ReadSeekCloser(io.LimitReader(&awstesting.EndlessReader{}, fileSize))
/dports/security/vault/aws-sdk-go-v2-credentials-v1.1.5/feature/s3/manager/internal/integration/uploader/
H A Dmain_test.go43 func getUploadPartSize(fileSize, uploadPartSize int64) int64 { argument
46 if fileSize/partSize > int64(manager.MaxUploadParts) {
47 partSize = (fileSize / int64(manager.MaxUploadParts)) + 1
162 for _, fileSize := range benchConfig.FileSizes() {
163 b.Run(fmt.Sprintf("%s File", integration.SizeToName(int(fileSize))), func(b *testing.B) {
167 if partSize > fileSize {
170 partSize = getUploadPartSize(fileSize, partSize)
191 reader := manager.ReadSeekCloser(io.LimitReader(&awstesting.EndlessReader{}, fileSize))
/dports/math/pdal/PDAL-2.3.0/io/
H A DSbetReader.cpp72 size_t fileSize = FileUtils::fileSize(m_filename); in ready() local
74 if ((fileSize == 0)|| (fileSize % pointSize != 0)) in ready()
76 m_numPts = fileSize / pointSize; in ready()
/dports/textproc/p5-Spreadsheet-ParseXLSX/Spreadsheet-ParseXLSX-0.27/lib/Spreadsheet/ParseXLSX/Decryptor/
H A DStandard.pm20 my ($inFile, $outFile, $bufferLength, $fileSize) = @_;
28 while (($fileSize > 0) && (my $inlen = $inFile->read($inbuf, $bufferLength))) {
34 if ($fileSize < $inlen) {
35 $inlen = $fileSize;
40 $fileSize -= $inlen;
/dports/emulators/qemu/qemu-6.2.0/roms/edk2/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c97 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps… in Encode() argument
100 size_t inSize = (size_t)fileSize; in Encode()
120 outSize = (size_t)fileSize / 20 * 21 + (1 << 16); in Encode()
130 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i)); in Encode()
177 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) in Decode() argument
180 size_t inSize = (size_t)fileSize; in Decode()
251 UInt64 fileSize; in main2() local
360 File_GetLength(&inStream.file, &fileSize); in main2()
367 res = Encode(&outStream.vt, &inStream.vt, fileSize, &props); in main2()
374 res = Decode(&outStream.vt, &inStream.vt, fileSize); in main2()
/dports/emulators/qemu5/qemu-5.2.0/roms/edk2/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c97 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps… in Encode() argument
100 size_t inSize = (size_t)fileSize; in Encode()
120 outSize = (size_t)fileSize / 20 * 21 + (1 << 16); in Encode()
130 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i)); in Encode()
177 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) in Decode() argument
180 size_t inSize = (size_t)fileSize; in Decode()
251 UInt64 fileSize; in main2() local
360 File_GetLength(&inStream.file, &fileSize); in main2()
367 res = Encode(&outStream.vt, &inStream.vt, fileSize, &props); in main2()
374 res = Decode(&outStream.vt, &inStream.vt, fileSize); in main2()
/dports/sysutils/uefi-edk2-qemu/edk2-edk2-stable201911/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c97 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps… in Encode() argument
100 size_t inSize = (size_t)fileSize; in Encode()
120 outSize = (size_t)fileSize / 20 * 21 + (1 << 16); in Encode()
130 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i)); in Encode()
177 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) in Decode() argument
180 size_t inSize = (size_t)fileSize; in Decode()
251 UInt64 fileSize; in main2() local
360 File_GetLength(&inStream.file, &fileSize); in main2()
367 res = Encode(&outStream.vt, &inStream.vt, fileSize, &props); in main2()
374 res = Decode(&outStream.vt, &inStream.vt, fileSize); in main2()
/dports/sysutils/uefi-edk2-bhyve/edk2-edk2-stable202102/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c97 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps… in Encode() argument
100 size_t inSize = (size_t)fileSize; in Encode()
120 outSize = (size_t)fileSize / 20 * 21 + (1 << 16); in Encode()
130 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i)); in Encode()
177 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) in Decode() argument
180 size_t inSize = (size_t)fileSize; in Decode()
251 UInt64 fileSize; in main2() local
360 File_GetLength(&inStream.file, &fileSize); in main2()
367 res = Encode(&outStream.vt, &inStream.vt, fileSize, &props); in main2()
374 res = Decode(&outStream.vt, &inStream.vt, fileSize); in main2()
/dports/sysutils/edk2/edk2-edk2-stable202102/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c97 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps… in Encode() argument
100 size_t inSize = (size_t)fileSize; in Encode()
120 outSize = (size_t)fileSize / 20 * 21 + (1 << 16); in Encode()
130 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i)); in Encode()
177 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) in Decode() argument
180 size_t inSize = (size_t)fileSize; in Decode()
251 UInt64 fileSize; in main2() local
360 File_GetLength(&inStream.file, &fileSize); in main2()
367 res = Encode(&outStream.vt, &inStream.vt, fileSize, &props); in main2()
374 res = Decode(&outStream.vt, &inStream.vt, fileSize); in main2()
/dports/emulators/qemu60/qemu-6.0.0/roms/edk2/BaseTools/Source/C/LzmaCompress/
H A DLzmaCompress.c97 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize, CLzmaEncProps… in Encode() argument
100 size_t inSize = (size_t)fileSize; in Encode()
120 outSize = (size_t)fileSize / 20 * 21 + (1 << 16); in Encode()
130 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i)); in Encode()
177 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) in Decode() argument
180 size_t inSize = (size_t)fileSize; in Decode()
251 UInt64 fileSize; in main2() local
360 File_GetLength(&inStream.file, &fileSize); in main2()
367 res = Encode(&outStream.vt, &inStream.vt, fileSize, &props); in main2()
374 res = Decode(&outStream.vt, &inStream.vt, fileSize); in main2()
/dports/net/jcifs/jcifs_1.3.19/src/jcifs/smb/
H A DSmbComQueryInformationResponse.java29 private int fileSize = 0; field in SmbComQueryInformationResponse
46 return fileSize; in getSize()
62 fileSize = readInt4( buffer, bufferIndex ); in readParameterWordsWireFormat()
73 ",fileSize=" + fileSize + "]" ); in toString()

1...<<11121314151617181920>>...229