• Home
  • Raw
  • Download

Lines Matching refs:dword

1790 				int width, height, pitch, dword;  in decode_3d_1d()  local
1793 dword = data[i]; in decode_3d_1d()
1796 dword & (1 << 31) ? in decode_3d_1d()
1798 dword & (1 << 1) ? in decode_3d_1d()
1800 dword & (1 << 0) ? in decode_3d_1d()
1803 dword = data[i]; in decode_3d_1d()
1804 width = ((dword >> 10) & ((1 << 11) - 1)) + 1; in decode_3d_1d()
1805 height = ((dword >> 21) & ((1 << 11) - 1)) + 1; in decode_3d_1d()
1808 if (dword & (1 << 2)) in decode_3d_1d()
1810 else if (dword & (1 << 1)) in decode_3d_1d()
1811 tiling = dword & (1 << 0) ? "Y" : "X"; in decode_3d_1d()
1814 switch ((dword >> 7) & 0x7) { in decode_3d_1d()
1817 switch ((dword >> 3) & 0xf) { in decode_3d_1d()
1834 switch ((dword >> 3) & 0xf) { in decode_3d_1d()
1863 switch ((dword >> 3) & 0xf) { in decode_3d_1d()
1916 switch ((dword >> 3) & 0xf) { in decode_3d_1d()
1933 switch ((dword >> 3) & 0x7) { in decode_3d_1d()
1953 switch ((dword >> 3) & 0xf) { in decode_3d_1d()
1960 dword = data[i]; in decode_3d_1d()
1965 dword & (1 << 9) ? " palette select" : in decode_3d_1d()
1968 dword = data[i]; in decode_3d_1d()
1970 4 * (((dword >> 21) & ((1 << 11) - 1)) + 1); in decode_3d_1d()
1973 map, pitch, (dword >> 9) & 0x3f, in decode_3d_1d()
1974 dword & 0xff, (dword >> 15) & 0x3f, in decode_3d_1d()
1975 dword & (1 << 8) ? "miplayout legacy" in decode_3d_1d()
2037 uint32_t dword; in decode_3d_1d() local
2040 dword = data[i]; in decode_3d_1d()
2041 switch ((dword >> 20) & 0x3) { in decode_3d_1d()
2057 dword & (1 << 31) ? " reverse gamma," in decode_3d_1d()
2059 dword & (1 << 30) ? " packed2planar," in decode_3d_1d()
2061 dword & (1 << 29) ? in decode_3d_1d()
2063 (dword >> 22) & 0x1f, mip_filter, in decode_3d_1d()
2064 decode_sample_filter(dword >> 17), in decode_3d_1d()
2065 decode_sample_filter(dword >> 14), in decode_3d_1d()
2066 ((dword >> 5) & 0x1ff) / (0x10 * 1.0), in decode_3d_1d()
2067 dword & (1 << 4) ? " shadow," : "", in decode_3d_1d()
2068 dword & (1 << 3) ? 4 : 2, in decode_3d_1d()
2069 decode_compare_func(dword)); in decode_3d_1d()
2070 dword = data[i]; in decode_3d_1d()
2075 ((dword >> 24) & 0xff) / (0x10 * 1.0), in decode_3d_1d()
2076 dword & (1 << 17) ? in decode_3d_1d()
2078 decode_tex_coord_mode(dword >> 12), in decode_3d_1d()
2079 decode_tex_coord_mode(dword >> 9), in decode_3d_1d()
2080 decode_tex_coord_mode(dword >> 6), in decode_3d_1d()
2081 dword & (1 << 5) ? in decode_3d_1d()
2083 (dword >> 1) & 0xf, in decode_3d_1d()
2084 dword & (1 << 0) ? " deinterlacer," : in decode_3d_1d()
2086 dword = data[i]; in decode_3d_1d()