Lines Matching defs:staticValues
190 /// Return a vector of OpFoldResults with the same size a staticValues, but all
193 SmallVector<OpFoldResult> getMixedValues(ArrayRef<int64_t> staticValues,
197 res.reserve(staticValues.size());
199 unsigned count = static_cast<unsigned>(staticValues.size());
201 int64_t value = staticValues[idx];
205 IntegerType::get(context, 64), staticValues[idx])});
209 SmallVector<OpFoldResult> getMixedValues(ArrayRef<int64_t> staticValues,
211 return getMixedValues(staticValues, dynamicValues, b.getContext());
218 SmallVector<int64_t> staticValues;
222 staticValues.push_back(cast<IntegerAttr>(attr).getInt());
224 staticValues.push_back(ShapedType::kDynamic);
228 return {staticValues, dynamicValues};