Lines Matching defs:size
119 static int num_4x4_blocks(int size) {
120 return ((size + 3) & ~3) >> 2;
123 static int num_6x6_blocks(int size) {
124 // Divide the image size by 6, rounding down
125 return (size + 5) / 6;
128 static int num_8x8_blocks(int size) {
129 // Divide the image size by 8, rounding down
130 return ((size + 7) & ~7) >> 3;
215 // The evil number 16 here is the constant size of ASTC 4x4 block
221 // The evil number 16 here is the constant size of ASTC 6x6 block
227 // The evil number 16 here is the constant size of ASTC 8x8 block