Searched defs:Loc1 (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafety.h138 /// \param Loc1 -- The location of the first lock expression.
141 SourceLocation Loc1,
140 handleExclusiveAndShared(StringRef Kind, Name LockName, SourceLocation Loc1, SourceLocation Loc2) argument
/external/clang/lib/AST/
H A DRawCommentList.cpp225 SourceLocation Loc1, SourceLocation Loc2,
227 std::pair<FileID, unsigned> Loc1Info = SM.getDecomposedLoc(Loc1);
240 assert(Loc1Info.second <= Loc2Info.second && "Loc1 after Loc2!");
224 onlyWhitespaceBetween(SourceManager &SM, SourceLocation Loc1, SourceLocation Loc2, unsigned MaxNewlinesAllowed) argument
/external/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp235 MemoryLocation Loc1 = MemoryLocation::get(Load1); local
236 if (Load0->isSameOperationAs(Load1) && AA->isMustAlias(Loc0, Loc1) &&
388 MemoryLocation Loc1 = MemoryLocation::get(Store1); local
389 if (AA->isMustAlias(Loc0, Loc1) && Store0->isSameOperationAs(Store1) &&
390 !isStoreSinkBarrierInRange(*Store1->getNextNode(), BB1->back(), Loc1) &&
/external/clang/include/clang/Basic/
H A DSourceManager.h1338 bool isWrittenInSameFile(SourceLocation Loc1, SourceLocation Loc2) const { argument
1339 return getFileID(Loc1) == getFileID(Loc2);
/external/clang/include/clang/Sema/
H A DInitialization.h479 InitializationKind(InitKind Kind, InitContext Context, SourceLocation Loc1, argument
483 Locations[0] = Loc1;
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp507 /// \p Loc1 is the location of \p Inst1. It is passed explicitly because it
509 bool isAliased(const MemoryLocation &Loc1, Instruction *Inst1, argument
520 if (Loc1.Ptr && Loc2.Ptr && isSimple(Inst1) && isSimple(Inst2)) {
522 aliased = AA->alias(Loc1, Loc2);

Completed in 232 milliseconds