Home
last modified time | relevance | path

Searched refs:floatValues (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/mlir/lib/AsmParser/
H A DAttributeParser.cpp473 std::vector<APFloat> &floatValues);
574 std::vector<APFloat> floatValues; in getAttr() local
575 if (failed(getFloatAttrElements(loc, floatTy, floatValues))) in getAttr()
580 reinterpret_cast<std::complex<APFloat> *>(floatValues.data()), in getAttr()
581 floatValues.size() / 2); in getAttr()
584 return DenseElementsAttr::get(type, floatValues); in getAttr()
638 std::vector<APFloat> &floatValues) { in getFloatAttrElements() argument
639 floatValues.reserve(storage.size()); in getFloatAttrElements()
652 floatValues.push_back(*result); in getFloatAttrElements()
672 floatValues.push_back(apVal); in getFloatAttrElements()