Lines Matching defs:values
207 /* The uint32_t values that map to this case */
208 struct util_dynarray values;
531 * stored as SPIR-V SSA values.
709 struct vtn_value *values;
769 return &b->values[value_id];
775 vtn_fail_if(value <= b->values, "vtn_value pointer outside the range of valid values");
776 uint32_t value_id = value - b->values;
777 vtn_fail_if(value_id >= b->value_id_bound, "vtn_value pointer outside the range of valid values");
801 return &b->values[value_id];
857 case 8: return val->constant->values[0].u8;
858 case 16: return val->constant->values[0].u16;
859 case 32: return val->constant->values[0].u32;
860 case 64: return val->constant->values[0].u64;
875 case 8: return val->constant->values[0].i8;
876 case 16: return val->constant->values[0].i16;
877 case 32: return val->constant->values[0].i32;
878 case 64: return val->constant->values[0].i64;