Lines Matching refs:compressed_size
78 ctx->chunks[i].compressed_size = bytestream2_get_le32(gbc);
108 if (ctx->chunks[i].compressed_size > UINT32_MAX - running_size)
110 running_size += ctx->chunks[i].compressed_size;
125 running_offset += ctx->chunks[i].compressed_size;
161 ctx->chunks[0].compressed_size = ctx->texture_section_size;
191 if (chunk->compressed_offset + (uint64_t)chunk->compressed_size > bytestream2_get_bytes_left(gbc))
203 chunk->compressed_size);
210 chunk->uncompressed_size = chunk->compressed_size;
231 bytestream2_init(&gbc, ctx->gbc.buffer + chunk->compressed_offset, chunk->compressed_size);
244 bytestream2_get_buffer(&gbc, dst, chunk->compressed_size);