Searched refs:extraSize (Results 1 – 4 of 4) sorted by relevance
134 uint16_t extraSize = 20; in TestBigZipEntry() local149 centralDir->extraSize = extraSize; in TestBigZipEntry()
47 uint16_t extraSize = 0; member81 uint16_t extraSize = 0; member
330 centralDir->extraSize = 0; in EncodeCentralDirEntry()368 header->extraSize = 0; in EncodeLocalFileHeader()421 uint16_t extraSize = ReadLE16(buffer.buffer + offsetof(CentralDirEntry, extraSize)); in DecodeCentralDirEntry() local423 size_t currLen = sizeof(CentralDirEntry) + nameSize + extraSize + commentSize; in DecodeCentralDirEntry()443 if (extraSize <= 0) { in DecodeCentralDirEntry()525 uint16_t extraSize = ReadLE16(data.buffer + offsetof(LocalFileHeader, extraSize)); in DecodeLocalFileHeader() local526 size_t currLen = sizeof(LocalFileHeader) + nameSize + extraSize; in DecodeLocalFileHeader()
348 static int32_t CheckAndCalculateSize(const uint32_t inSize, const uint32_t extraSize, uint32_t *out… in CheckAndCalculateSize() argument362 if ((((inSize + 2) / 3) * 4) > UINT32_MAX - extraSize) { // 2: fill it up to a multiple of three in CheckAndCalculateSize()366 *outSize = (((inSize + 2) / 3) * 4) + extraSize; // 2: fill it up to a multiple of three in CheckAndCalculateSize()