Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/mpi/
DBufferDerefCheck.cpp87 llvm::SmallVector<IndirectionType, 1> Indirections; in checkBuffers()
93 Indirections.push_back(IndirectionType::Pointer); in checkBuffers()
96 Indirections.push_back(IndirectionType::Array); in checkBuffers()
107 Indirections[0] == IndirectionType::Pointer && in checkBuffers()
108 Indirections[1] == IndirectionType::Array) in checkBuffers()
116 if (*It == IndirectionType::Pointer) { in checkBuffers()
DBufferDerefCheck.h43 enum class IndirectionType : unsigned char { Pointer, Array }; enum