HomeSort by: relevance | last modified time | path
    Searched refs:Stored (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CanonicalType.h 54 /// BuiltinType, etc.). The type stored within @c CanQual<T> will be of that
67 QualType Stored;
83 const T *getTypePtr() const { return cast<T>(Stored.getTypePtr()); }
88 return cast_or_null<T>(Stored.getTypePtrOrNull());
92 operator QualType() const { return Stored; }
98 return Stored.isNull();
101 SplitQualType split() const { return Stored.split(); }
129 Qualifiers getQualifiers() const { return Stored.getLocalQualifiers(); }
132 unsigned getCVRQualifiers() const { return Stored.getLocalCVRQualifiers(); }
135 bool hasQualifiers() const { return Stored.hasLocalQualifiers();
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
GlobalStatus.h 42 /// This global is stored to, but the only thing stored is the constant it
46 /// This global is stored to, but only its initializer and one other value
47 /// is ever stored to it. If this global isStoredOnce, we track the value
48 /// stored to it in StoredOnceValue below. This is only tracked for scalar
52 /// This global is stored to by multiple values or something else that we
54 Stored
57 /// If only one value (besides the initializer constant) is ever stored to
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
GlobalStatus.cpp 107 if (GS.StoredType != GlobalStatus::Stored) {
114 // The stored value changes between threads; don't track it.
133 GS.StoredType = GlobalStatus::Stored;
136 GS.StoredType = GlobalStatus::Stored;
159 GS.StoredType = GlobalStatus::Stored;
166 GS.StoredType = GlobalStatus::Stored;
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stack_store.h 110 bool Stored(uptr n);
sanitizer_stack_store.cpp 49 *pack += blocks_[GetBlockIdx(idx)].Stored(h.size + 1);
88 // Mark tail/head of these blocks as "stored".to avoid waiting before we can
90 *pack += blocks_[block_idx].Stored(in_first);
91 *pack += blocks_[last_idx].Stored(count - in_first);
315 if (!ptr || !Stored(0))
369 bool StackStore::BlockInfo::Stored(uptr n) {
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ASTWriter.h 115 /// stored in the stream, the ID number is shifted by 2 bits to
170 /// offset table where information about that input file is stored.
176 DeclOrType(Decl *D) : Stored(D), IsType(false) {}
177 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {}
184 return QualType::getFromOpaquePtr(Stored);
189 return static_cast<Decl *>(Stored);
193 void *Stored;
252 /// stored in the stream, the ID number is shifted by 2 bits to
402 /// headers. The declarations themselves are stored as declaration
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Template.h 79 /// The template argument lists, stored from the innermost template
300 /// set of instantiated parameters. This is stored as a DeclArgumentPack
385 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored =
388 Stored = I->second.get<Decl *>();
392 Stored = NewPack;
542 // will be stored in LA.
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleSummaryAnalysis.cpp 288 // (stored value) can't be treated either as read- or as write-only
291 Value *Stored = I.getOperand(0);
292 if (auto *GV = dyn_cast<GlobalValue>(Stored))
296 else if (auto *U = dyn_cast<User>(Stored))
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiate.cpp 3624 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
3625 if (Stored.isNull()) {
3635 Stored = Inst;
3636 } else if (DeclArgumentPack *Pack = Stored.dyn_cast<DeclArgumentPack *>()) {
3639 assert(Stored.get<Decl *>() == Inst && "Already instantiated this local");
3660 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D];
3662 Stored = Pack;
  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 1319 Stmt **Stored = getStoredStmts();
1321 *Stored++ = CaptureInits[I];
1324 *Stored = S;
ExprCXX.cpp 1142 Stmt **Stored = getStoredStmts();
1144 *Stored++ = CaptureInits[I];
1147 *Stored++ = getCallOperator()->getBody();
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp 2997 // stored.
2998 const MachineOperand &Stored =
3000 if (!Stored.isReg())
3004 if (Op.isReg() && Op.isDef() && Op.getReg() == Stored.getReg())

Completed in 27 milliseconds