Lines Matching defs:packed
586 /* Use packed_const_indices to store tightly packed indices.
599 /* Constants are not packed and are stored in following dwords. */
843 /* For packed srcs of SSA ALUs, this field stores the swizzles. */
869 bool packed = src_components <= 4 && src_channels <= 4;
875 if (packed) {
885 if (!packed) {
942 bool packed = src_components <= 4 && src_channels <= 4;
949 if (packed) {
1531 union packed_tex_data packed = {
1544 blob_write_uint32(ctx->blob, packed.u32);
1567 union packed_tex_data packed;
1568 packed.u32 = blob_read_uint32(ctx->blob);
1569 tex->sampler_dim = packed.u.sampler_dim;
1570 tex->dest_type = packed.u.dest_type;
1571 tex->coord_components = packed.u.coord_components;
1572 tex->is_array = packed.u.is_array;
1573 tex->is_shadow = packed.u.is_shadow;
1574 tex->is_new_style_shadow = packed.u.is_new_style_shadow;
1575 tex->is_sparse = packed.u.is_sparse;
1576 tex->component = packed.u.component;
1577 tex->texture_non_uniform = packed.u.texture_non_uniform;
1578 tex->sampler_non_uniform = packed.u.sampler_non_uniform;
1579 tex->array_is_lowered_cube = packed.u.array_is_lowered_cube;