Lines Matching defs:value

174               unsigned bit_size, const nir_const_value *value)
181 memcpy(load_const->value, value, sizeof(nir_const_value) * num_components);
1042 * Pad a value to N components with undefs of matching bit size.
1043 * If the value already contains >= num_components, it is returned without change.
1064 * Pad a value to N components with copies of the given immediate of matching
1065 * bit size. If the value already contains >= num_components, it is returned
1088 * Pad a value to 4 components with undefs of matching bit size.
1089 * If the value already contains >= 4 components, it is returned without change.
1388 nir_ssa_def *value, unsigned writemask,
1391 writemask &= (1u << value->num_components) - 1u;
1392 nir_build_store_deref(build, &deref->dest.ssa, value, writemask, access);
1398 nir_ssa_def *value, unsigned writemask)
1400 nir_store_deref_with_access(build, deref, value, writemask,
1449 nir_store_var(nir_builder *build, nir_variable *var, nir_ssa_def *value,
1452 nir_store_deref(build, nir_build_deref_var(build, var), value, writemask);
1480 nir_ssa_def *value, unsigned writemask)
1484 nir_store_deref(build, deref, value, writemask);
1489 nir_ssa_def *value, unsigned writemask)
1493 nir_store_deref(build, deref, value, writemask);
1515 nir_ssa_def *value, nir_component_mask_t write_mask)
1519 store->num_components = value->num_components;
1520 store->src[0] = nir_src_for_ssa(value);
1523 write_mask & BITFIELD_MASK(value->num_components));
1553 /* calculate a `(1 << value) - 1` in ssa without overflows */