Searched defs:fileSize (Results 1 - 6 of 6) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/ |
H A D | LzmaCompress.c | 100 static SRes Encode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) argument 103 size_t inSize = (size_t)fileSize; 127 outSize = (size_t)fileSize / 20 * 21 + (1 << 16); 137 outBuffer[i + LZMA_PROPS_SIZE] = (Byte)(fileSize >> (8 * i)); 184 static SRes Decode(ISeqOutStream *outStream, ISeqInStream *inStream, UInt64 fileSize) argument 187 size_t inSize = (size_t)fileSize; 258 UInt64 fileSize; local 342 File_GetLength(&inStream.file, &fileSize); 349 res = Encode(&outStream.s, &inStream.s, fileSize); 356 res = Decode(&outStream.s, &inStream.s, fileSize); [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/tools/ |
H A D | httpget.c | 329 PRUint32 fileSize; local 442 fileSize = 0; 444 fileSize = 10 * fileSize + (*p - '0'); 455 if (fileName == NULL || fileSize == 0) { 458 FastFetchFile(socket, file, fileSize);
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsStringStream.cpp | 275 PRInt32 fileSize = LengthRemaining(); local 281 case NS_SEEK_END: newPosition = fileSize + offset32; break; 288 if (newPosition >= fileSize) 290 newPosition = fileSize;
|
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/ |
H A D | xptiManifest.cpp | 293 PRInt64 fileSize; local 314 if(NS_FAILED(aFile->GetFileSize(&fileSize)) || !(flen = nsInt64(fileSize))) 543 // fileSize
|
H A D | xptiInterfaceInfoManager.cpp | 379 PRInt64 fileSize; local 385 if(NS_FAILED(aFile->GetFileSize(&fileSize)) || !(flen = nsInt64(fileSize)))
|
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsIFileStream.cpp | 335 nsInt64 fileSize = position + available; local 341 case NS_SEEK_END: newPosition += fileSize; break; 349 if (newPosition >= fileSize) // nb: not "else if". 351 newPosition = fileSize;
|
Completed in 60 milliseconds