Lines Matching refs:texconst
1365 dump_tex_const(uint32_t *texconst, int num_unit, int level) in dump_tex_const() argument
1372 (texconst[0] == 0) && (texconst[1] == 0) && in dump_tex_const()
1373 (texconst[2] == 0) && (texconst[3] == 0)) in dump_tex_const()
1377 dump_domain(texconst, 4, level+2, "A3XX_TEX_CONST"); in dump_tex_const()
1378 dump_hex(texconst, 4, level+1); in dump_tex_const()
1379 texconst += 4; in dump_tex_const()
1381 dump_domain(texconst, 8, level+2, "A4XX_TEX_CONST"); in dump_tex_const()
1383 uint32_t addr = texconst[4] & ~0x1f; in dump_tex_const()
1386 dump_hex(texconst, 8, level+1); in dump_tex_const()
1387 texconst += 8; in dump_tex_const()
1389 dump_domain(texconst, 12, level+2, "A5XX_TEX_CONST"); in dump_tex_const()
1391 uint64_t addr = (((uint64_t)texconst[5] & 0x1ffff) << 32) | texconst[4]; in dump_tex_const()
1394 dump_hex(texconst, 12, level+1); in dump_tex_const()
1395 texconst += 12; in dump_tex_const()
1397 dump_domain(texconst, 16, level+2, "A6XX_TEX_CONST"); in dump_tex_const()
1399 uint64_t addr = (((uint64_t)texconst[5] & 0x1ffff) << 32) | texconst[4]; in dump_tex_const()
1402 dump_hex(texconst, 16, level+1); in dump_tex_const()
1403 texconst += 16; in dump_tex_const()