Home
last modified time | relevance | path

Searched refs:byte_x (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/iris/
Diris_resource.c1592 uint32_t byte_x = x % tile_width; in s8_offset() local
1597 + 512 * (byte_x / 8) in s8_offset()
1600 + 16 * ((byte_x / 4) % 2) in s8_offset()
1602 + 4 * ((byte_x / 2) % 2) in s8_offset()
1604 + 1 * (byte_x % 2); in s8_offset()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_mipmap_tree.c2281 uint32_t byte_x = x % tile_width; in intel_offset_S8() local
2286 + 512 * (byte_x / 8) in intel_offset_S8()
2289 + 16 * ((byte_x / 4) % 2) in intel_offset_S8()
2291 + 4 * ((byte_x / 2) % 2) in intel_offset_S8()
2293 + 1 * (byte_x % 2); in intel_offset_S8()
2297 if (((byte_x / 8) % 2) == 1) { in intel_offset_S8()