Lines Matching defs:texconst
1378 dump_tex_const(uint32_t *texconst, int num_unit, int level)
1384 if ((num_unit == 16) && (texconst[0] == 0) && (texconst[1] == 0) &&
1385 (texconst[2] == 0) && (texconst[3] == 0))
1389 dump_domain(texconst, 4, level + 2, "A3XX_TEX_CONST");
1390 dump_hex(texconst, 4, level + 1);
1391 texconst += 4;
1393 dump_domain(texconst, 8, level + 2, "A4XX_TEX_CONST");
1395 uint32_t addr = texconst[4] & ~0x1f;
1398 dump_hex(texconst, 8, level + 1);
1399 texconst += 8;
1401 dump_domain(texconst, 12, level + 2, "A5XX_TEX_CONST");
1404 (((uint64_t)texconst[5] & 0x1ffff) << 32) | texconst[4];
1407 dump_hex(texconst, 12, level + 1);
1408 texconst += 12;
1410 dump_domain(texconst, 16, level + 2, "A6XX_TEX_CONST");
1413 (((uint64_t)texconst[5] & 0x1ffff) << 32) | texconst[4];
1416 dump_hex(texconst, 16, level + 1);
1417 texconst += 16;