Searched refs:As (Results 1 - 25 of 50) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DErrno.h34 const Args &... As) -> decltype(F(As...)) {
35 decltype(F(As...)) Res;
38 Res = F(As...);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DEHScopeStack.h196 template <class T, class... As>
198 typedef std::tuple<typename DominatingValue<As>::saved_type...> SavedTuple;
205 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...};
209 restore(CGF, std::index_sequence_for<As...>()).Emit(CGF, flags);
213 ConditionalCleanup(typename DominatingValue<As>::saved_type... A)
272 template <class T, class... As> void pushCleanup(CleanupKind Kind, As... A) {
281 template <class T, class... As>
282 void pushCleanupTuple(CleanupKind Kind, std::tuple<As...> A) {
303 template <class T, class... As>
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp97 std::pair<Node *, bool> getOrCreateNode(bool CreateNewNodes, Args &&... As) { argument
105 T(std::forward<Args>(As)...),
110 profileCtor(ID, NodeKind<T>::Kind, As...);
124 T *Result = new (New->getNode()) T(std::forward<Args>(As)...);
130 Node *makeNode(Args &&...As) { argument
131 return getOrCreateNode<T>(true, std::forward<Args>(As)...).first;
146 template<typename T, typename ...Args> Node *makeNodeSimple(Args &&...As) { argument
148 getOrCreateNode<T>(CreateNewNodes, std::forward<Args>(As)...);
168 template<typename ...Args> Node *make(Args &&...As) { argument
169 return Self.makeNodeSimple<T>(std::forward<Args>(As)
174 makeNode(Args &&....As) argument
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/Disassembler/
H A DMSP430Disassembler.cpp154 static AddrMode DecodeSrcAddrMode(unsigned Rs, unsigned As) { argument
157 if (As == 1) return amSymbolic;
158 if (As == 2) return amInvalid;
159 if (As == 3) return amImmediate;
162 if (As == 1) return amAbsolute;
163 if (As == 2) return amConstant;
164 if (As == 3) return amConstant;
171 switch (As) {
177 llvm_unreachable("As out of range");
183 unsigned As local
189 unsigned As = fieldFromInstruction(Insn, 4, 2); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPerfHintAnalysis.cpp303 unsigned As = PT->getAddressSpace(); local
305 return As == AMDGPUAS::GLOBAL_ADDRESS || As == AMDGPUAS::FLAT_ADDRESS;
344 unsigned As = PT->getAddressSpace(); local
345 return As == AMDGPUAS::CONSTANT_ADDRESS ||
346 As == AMDGPUAS::CONSTANT_ADDRESS_32BIT;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp37 template <> Expected<bool> python::As<bool>(Expected<PythonObject> &&obj) { function in class:python
44 Expected<long long> python::As<long long>(Expected<PythonObject> &&obj) { function in class:python
51 Expected<std::string> python::As<std::string>(Expected<PythonObject> &&obj) { function in class:python
840 cantFail(As<long long>(pyarginfo.get().GetAttribute("count")));
842 cantFail(As<bool>(pyarginfo.get().GetAttribute("has_varargs")));
928 // over `io.open()`, which returns some object derived from `io.IOBase`. As a
1041 Expected<std::string> backtrace = As<std::string>(
1060 auto readable = As<bool>(obj.CallMethod("readable"));
1063 auto writable = As<bool>(obj.CallMethod("writable"));
1100 auto closed = As<boo
[all...]
H A DPythonDataObjects.h388 template <typename T> llvm::Expected<T> As(llvm::Expected<PythonObject> &&obj) { function in namespace:lldb_private::python
397 template <> llvm::Expected<bool> As<bool>(llvm::Expected<PythonObject> &&obj);
400 llvm::Expected<long long> As<long long>(llvm::Expected<PythonObject> &&obj);
403 llvm::Expected<std::string> As<std::string>(llvm::Expected<PythonObject> &&obj);
/freebsd-12-stable/contrib/gcc/config/rs6000/
H A Ddarwin-vecsave.asm28 * As a special exception, if you link this library with files
135 /* As restVec, but the original VRsave value passed in R10. */
H A Deabi-ci.asm28 As a special exception, if you link this library with files
H A Deabi-cn.asm28 As a special exception, if you link this library with files
H A Dsol-ci.asm29 # As a special exception, if you link this library with files
H A Dsol-cn.asm29 # As a special exception, if you link this library with files
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DProcess.inc103 // Windows also has modal pop-up message boxes. As this method is used by
/freebsd-12-stable/contrib/gcc/config/i386/
H A Dsol2-ci.asm29 ! As a special exception, if you link this library with files
H A Dcygwin.asm29 * As a special exception, if you link this library with files
H A Dsol2-c1.asm29 ! As a special exception, if you link this library with files
62 ! As specified per page 3-32 of the ABI, %edx contains a function
H A Dsol2-gc1.asm29 ! As a special exception, if you link this library with files
65 ! As specified per page 3-32 of the ABI, %edx contains a function
/freebsd-12-stable/contrib/gcc/config/ia64/
H A Dcrti.asm27 # As a special exception, if you link this library with files
H A Dcrtend.asm21 /* As a special exception, if you link this library with other files,
/freebsd-12-stable/contrib/bmake/mk/
H A Dsys.dependfile.mk19 # As per dirdeps.mk we only require:
/freebsd-12-stable/share/mk/
H A Dsys.dependfile.mk20 # As per dirdeps.mk we only require:
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h368 template <class... As>
369 llvm::GlobalVariable *finishAndCreateGlobal(As &&...args) {
372 std::forward<As>(args)...);
/freebsd-12-stable/contrib/gcc/config/arm/
H A Dcrti.asm27 # As a special exception, if you link this library with files
/freebsd-12-stable/contrib/gcc/config/sparc/
H A Dsol2-ci.asm29 ! As a special exception, if you link this library with files
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h250 R_BasicBlock reduceBasicBlock(BasicBlock &Orig, Container<R_SExpr> &As, argument
252 return (As.Success && Is.Success && T);
255 R_SExpr reducePhi(Phi &Orig, Container<R_SExpr> &As) { argument
256 return As.Success;

Completed in 353 milliseconds

12