Home | History | Annotate | Download | only in decompress

Lines Matching defs:margin

840     size_t margin = 0;
855 /* Add the frame header to our margin */
856 margin += zfh.headerSize;
857 /* Add the checksum to our margin */
858 margin += zfh.checksumFlag ? 4 : 0;
860 margin += 3 * frameSizeInfo.nbBlocks;
866 /* Add the entire skippable frame size to our margin. */
867 margin += compressedSize;
875 /* Add the max block size back to the margin. */
876 margin += maxBlockSize;
878 return margin;