Lines Matching refs:xblocks
868 int xblocks = (dim_x + block_x - 1) / block_x; in compress_image() local
871 int block_count = zblocks * yblocks * xblocks; in compress_image()
873 int row_blocks = xblocks; in compress_image()
874 int plane_blocks = xblocks * yblocks; in compress_image()
986 int offset = ((z * yblocks + y) * xblocks + x) * 16; in compress_image()
1102 unsigned int xblocks = (image.dim_x + block_x - 1) / block_x; in astcenc_compress_image()
1107 size_t size_needed = xblocks * yblocks * zblocks * 16; in astcenc_compress_image()
1209 unsigned int xblocks = (image_out.dim_x + block_x - 1) / block_x; in astcenc_decompress_image() local
1213 int row_blocks = xblocks; in astcenc_decompress_image()
1214 int plane_blocks = xblocks * yblocks; in astcenc_decompress_image()
1217 size_t size_needed = xblocks * yblocks * zblocks * 16; in astcenc_decompress_image()
1233 ctxo->manage_decompress.init(zblocks * yblocks * xblocks); in astcenc_decompress_image()
1253 unsigned int offset = (((z * yblocks + y) * xblocks) + x) * 16; in astcenc_decompress_image()