Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h68 QualType Stored; variable
84 const T *getTypePtr() const { return cast<T>(Stored.getTypePtr()); } in getTypePtr()
89 return cast_or_null<T>(Stored.getTypePtrOrNull()); in getTypePtrOrNull()
93 operator QualType() const { return Stored; } in QualType()
99 return Stored.isNull(); in isNull()
102 SplitQualType split() const { return Stored.split(); } in split()
130 Qualifiers getQualifiers() const { return Stored.getLocalQualifiers(); } in getQualifiers()
133 unsigned getCVRQualifiers() const { return Stored.getLocalCVRQualifiers(); } in getCVRQualifiers()
136 bool hasQualifiers() const { return Stored.hasLocalQualifiers(); } in hasQualifiers()
139 return Stored.isLocalConstQualified(); in isConstQualified()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DGlobalStatus.cpp114 if (GS.StoredType != GlobalStatus::Stored) { in analyzeGlobalAux()
140 GS.StoredType = GlobalStatus::Stored; in analyzeGlobalAux()
143 GS.StoredType = GlobalStatus::Stored; in analyzeGlobalAux()
165 GS.StoredType = GlobalStatus::Stored; in analyzeGlobalAux()
172 GS.StoredType = GlobalStatus::Stored; in analyzeGlobalAux()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.cpp52 *pack += blocks_[GetBlockIdx(idx)].Stored(h.size + 1);
95 *pack += blocks_[block_idx].Stored(in_first); in Map()
96 *pack += blocks_[last_idx].Stored(count - in_first); in Map()
320 if (!ptr || !Stored(0)) in Pack()
374 bool StackStore::BlockInfo::Stored(uptr n) { in IsPacked()
369 bool StackStore::BlockInfo::Stored(uptr n) { Stored() function in __sanitizer::StackStore::BlockInfo
H A Dsanitizer_stack_store.h110 bool Stored(uptr n);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/
H A DPPC.cpp469 unsigned Stored = 0; in EmitPPCBuiltinExpr() local
477 Stored += 8; in EmitPPCBuiltinExpr()
480 Result = StoreSubVec(4, NumBytes - Stored - 4, in EmitPPCBuiltinExpr()
481 IsLE ? (Stored >> 2) : 3 - (Stored >> 2)); in EmitPPCBuiltinExpr()
483 Stored += 4; in EmitPPCBuiltinExpr()
486 Result = StoreSubVec(2, NumBytes - Stored - 2, in EmitPPCBuiltinExpr()
487 IsLE ? (Stored >> 1) : 7 - (Stored >> 1)); in EmitPPCBuiltinExpr()
489 Stored += 2; in EmitPPCBuiltinExpr()
493 StoreSubVec(1, NumBytes - Stored - 1, IsLE ? Stored : 15 - Stored); in EmitPPCBuiltinExpr()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DGlobalStatus.h58 Stored enumerator
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h185 DeclOrType(Decl *D) : Stored(D), IsType(false) {} in DeclOrType()
186 DeclOrType(QualType T) : Stored(T.getAsOpaquePtr()), IsType(true) {} in DeclOrType()
193 return QualType::getFromOpaquePtr(Stored); in getType()
198 return static_cast<Decl *>(Stored); in getDecl()
202 void *Stored;
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplate.h487 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = in cloneScopes() local
490 Stored = D2; in cloneScopes()
494 Stored = NewPack; in cloneScopes()
/freebsd/crypto/krb5/src/lib/krb5/error_tables/
H A Dkdb5_err.et59 ec KRB5_KDB_BADSTORED_MKEY, "Stored master key is corrupted"
62 ec KRB5_KDB_STORED_MKEY_NOTCURRENT, "Stored master key is not current"
/freebsd/contrib/pam-krb5/tests/data/
H A Dcppcheck.supp39 // Stored in the returned ai struct, but cppcheck can't see the assignment
/freebsd/contrib/ntp/scripts/stats/
H A DREADME.stats208 Stored position status (must be "Stored")
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DModuleSummaryAnalysis.cpp387 Value *Stored = I.getOperand(0); in computeFunctionSummary() local
388 if (auto *GV = dyn_cast<GlobalValue>(Stored)) in computeFunctionSummary()
392 else if (auto *U = dyn_cast<User>(Stored)) in computeFunctionSummary()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1378 Stmt **Stored = getStoredStmts(); in CapturedStmt() local
1380 *Stored++ = CaptureInits[I]; in CapturedStmt()
1383 *Stored = S; in CapturedStmt()
H A DExprCXX.cpp1281 Stmt **Stored = getStoredStmts(); in LambdaExpr() local
1283 *Stored++ = CaptureInits[I]; in LambdaExpr()
1286 *Stored++ = getCallOperator()->getBody(); in LambdaExpr()
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dglossary.md255 processing. Stored in a queue known as the RXL. These structures belong to a
330 datagrams pending processing. Stored in a queue known as the URXL.
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp4653 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D]; in InstantiatedLocal() local
4654 if (Stored.isNull()) { in InstantiatedLocal()
4664 Stored = Inst; in InstantiatedLocal()
4665 } else if (DeclArgumentPack *Pack = dyn_cast<DeclArgumentPack *>(Stored)) { in InstantiatedLocal()
4668 assert(cast<Decl *>(Stored) == Inst && "Already instantiated this local"); in InstantiatedLocal()
4689 llvm::PointerUnion<Decl *, DeclArgumentPack *> &Stored = LocalDecls[D]; in MakeInstantiatedLocalArgPack() local
4691 Stored = Pack; in MakeInstantiatedLocalArgPack()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp3101 const MachineOperand &Stored = in canExecuteInBundle() local
3103 if (!Stored.isReg()) in canExecuteInBundle()
3107 if (Op.isReg() && Op.isDef() && Op.getReg() == Stored.getReg()) in canExecuteInBundle()
/freebsd/contrib/file/magic/Magdir/
H A Danimation796 # Stored AAC streams (instead of the MP4 format)
/freebsd/crypto/heimdal/lib/wind/
H A Drfc3454.txt832 stringprep profile are called "unassigned code points". Stored
910 Stored strings MUST NOT contain any code points outside of AO for the
/freebsd/crypto/krb5/src/po/
H A Dmit-krb5.pot493 msgid "Stored credentials\n"
8566 msgid "Stored master key is corrupted"
8578 msgid "Stored master key is not current"
H A Dka.po505 msgid "Stored credentials\n"
8766 msgid "Stored master key is corrupted"
8778 msgid "Stored master key is not current"
H A Dde.po433 msgid "Stored credentials\n"
8675 msgid "Stored master key is corrupted"
8687 msgid "Stored master key is not current"