Lines Matching defs:packed
35 * inserting appropriate ALU code to perform the conversion from the packed
208 /* For <= 8-bits per channel, [U,S]NORM formats are packed like [U,S]NORM 8,
257 /* RGB10_A2 is packed in the tilebuffer as the bottom 3 bytes being the top
258 * 8-bits of RGB and the top byte being RGBA as 2-bits packed. As imirkin
309 pan_unpack_int_1010102(nir_builder *b, nir_ssa_def *packed, bool is_signed)
311 nir_ssa_def *v = pan_replicate_4(b, nir_channel(b, packed, 0));
379 nir_ssa_def *packed)
390 return d.size == 32 ? pan_unpack_pure_32(b, packed, desc->nr_channels) :
391 pan_unpack_pure_16(b, packed, desc->nr_channels);
394 return pan_unpack_pure_8(b, packed, desc->nr_channels);
403 return pan_unpack_int_1010102(b, packed, false);
406 return pan_unpack_int_1010102(b, packed, true);
408 return pan_unpack_r11g11b10(b, packed);
500 nir_ssa_def *packed = pan_pack(b, desc, unpacked);
502 nir_store_raw_output_pan(b, packed);
519 nir_ssa_def *packed =
524 nir_ssa_def *unpacked = pan_unpack(b, desc, packed);