Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/
H A DAArch64AsmParser.cpp3159 size_t DotPosition = Name.find('.'); in tryParseMatrixRegister() local
3160 assert(DotPosition != StringRef::npos && "Unexpected register"); in tryParseMatrixRegister()
3162 StringRef Head = Name.take_front(DotPosition); in tryParseMatrixRegister()
3163 StringRef Tail = Name.drop_front(DotPosition); in tryParseMatrixRegister()
3868 size_t DotPosition = Name.find('.'); in tryParseMatrixTileList() local
3869 if (DotPosition == StringRef::npos) in tryParseMatrixTileList()
3876 StringRef Tail = Name.drop_front(DotPosition); in tryParseMatrixTileList()