Searched refs:padSize (Results 1 – 5 of 5) sorted by relevance
457 unsigned padSize = 0; in Xz_Compress() local459 while((((unsigned)block.packSize + padSize) & 3) != 0) in Xz_Compress()460 buf[padSize++] = 0; in Xz_Compress()461 SeqCheckInStream_GetDigest(&checkInStream, buf + padSize); in Xz_Compress()462 RINOK(WriteBytes(&seqSizeOutStream.p, buf, padSize + XzFlags_GetCheckSize(xz->flags))); in Xz_Compress()463 … RINOK(Xz_AddIndexRecord(xz, block.unpackSize, seqSizeOutStream.processed - padSize, &g_Alloc)); in Xz_Compress()
837 p->padSize = 0; in XzUnpacker_Code()848 if (((UInt32)p->padSize & 3) != 0) in XzUnpacker_Code()857 p->padSize++; in XzUnpacker_Code()874 return (p->state == XZ_STATE_STREAM_PADDING) && (((UInt32)p->padSize & 3) == 0); in XzUnpacker_IsStreamWasFinished()
210 UInt64 padSize; member
915 int padSize = padWidth * padHeight; in BlurGroundTruth() local917 SkAutoTMalloc<uint8_t> padPixels(padSize); in BlurGroundTruth()918 memset(padPixels, 0, padSize); in BlurGroundTruth()
547 _packSize -= xzu.p.padSize; in Extract()