Searched refs:Argument (Results 1 - 25 of 267) sorted by relevance

1234567891011

/external/swiftshader/third_party/LLVM/include/llvm/
H A DArgument.h1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
10 // This file declares the Argument class.
31 /// @brief LLVM Argument representation
32 class Argument : public Value, public ilist_node<Argument> { class in namespace:llvm
35 friend class SymbolTableListTraits<Argument, Function>;
39 /// Argument ctor - If Function argument is specified, this argument is
42 explicit Argument(Type *Ty, const Twine &Name = "", Function *F = 0);
83 static inline bool classof(const Argument *) { retur
[all...]
H A DFunction.h24 #include "llvm/Argument.h"
53 template<> struct ilist_traits<Argument>
54 : public SymbolTableListTraits<Argument, Function> {
56 Argument *createSentinel() const {
57 return static_cast<Argument*>(&Sentinel);
59 static void destroySentinel(Argument*) {}
61 Argument *provideInitialHead() const { return createSentinel(); }
62 Argument *ensureHead(Argument*) const { return createSentinel(); }
63 static void noteHead(Argument*, Argumen
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h428 TemplateArgument Argument; member in class:clang::TemplateArgumentLoc
434 TemplateArgumentLoc(const TemplateArgument &Argument, argument
436 : Argument(Argument), LocInfo(Opaque) {
439 TemplateArgumentLoc(const TemplateArgument &Argument, TypeSourceInfo *TInfo) argument
440 : Argument(Argument), LocInfo(TInfo) {
441 assert(Argument.getKind() == TemplateArgument::Type);
444 TemplateArgumentLoc(const TemplateArgument &Argument, Expr *E) argument
445 : Argument(Argumen
449 TemplateArgumentLoc(const TemplateArgument &Argument, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateNameLoc, SourceLocation EllipsisLoc = SourceLocation()) argument
[all...]
H A DASTDiagnostic.h40 StringRef Argument,
/external/llvm/include/llvm/IR/
H A DArgument.h1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
10 // This file declares the Argument class.
26 /// \brief LLVM Argument representation
34 class Argument : public Value, public ilist_node<Argument> { class in namespace:llvm
38 friend class SymbolTableListTraits<Argument>;
46 explicit Argument(Type *Ty, const Twine &Name = "", Function *F = nullptr);
H A DIntrinsics.h93 Argument, ExtendArgument, TruncArgument, HalfVecArgument, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
114 assert(Kind == Argument || Kind == ExtendArgument ||
121 assert(Kind == Argument || Kind == ExtendArgument ||
/external/mesa3d/src/amd/common/
H A Dac_llvm_helper.cpp42 llvm::Argument *A = llvm::unwrap<llvm::Argument>(val);
50 llvm::Argument *A = llvm::unwrap<llvm::Argument>(arg);
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DArgument.h1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
10 // This file declares the Argument class.
26 /// \brief LLVM Argument representation
34 class Argument : public Value, public ilist_node<Argument> { class in namespace:llvm
38 friend class SymbolTableListTraits<Argument>;
46 explicit Argument(Type *Ty, const Twine &Name = "", Function *F = nullptr);
H A DIntrinsics.h102 Argument, ExtendArgument, TruncArgument, HalfVecArgument, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
123 assert(Kind == Argument || Kind == ExtendArgument ||
130 assert(Kind == Argument || Kind == ExtendArgument ||
H A DSymbolTableListTraits.h38 class Argument;
50 DEFINE_SYMBOL_TABLE_PARENT_TYPE(Argument, Function)
/external/valgrind/memcheck/tests/
H A Dmalloc3.stderr.exp0 Argument 'size' of function malloc has a fishy (possibly negative) value: -1
5 Argument 'size' of function calloc has a fishy (possibly negative) value: -1
/external/llvm/lib/Target/NVPTX/
H A DNVPTXLowerKernelArgs.cpp105 void handleByValParam(Argument *Arg);
143 void NVPTXLowerKernelArgs::handleByValParam(Argument *Arg) {
171 if (Argument *Arg = dyn_cast<Argument>(Ptr)) {
208 if (Argument *Arg = dyn_cast<Argument>(UO)) {
220 for (Argument &Arg : F.args()) {
H A DNVPTXTargetTransformInfo.cpp52 if (const Argument *Arg = dyn_cast<Argument>(V))
/external/tensorflow/tensorflow/compiler/tf2xla/
H A Dxla_compiler.h47 // The XlaCompiler requires one Argument struct for each _Arg index, that
87 // being compiled. There must be one Argument for each _Arg index.
88 struct Argument { struct in class:tensorflow::XlaCompiler
93 // Argument is a compile-time constant. No associated runtime parameter.
96 // Argument is a Variable, TensorArray, or Stack resource. Has an
100 // Argument is a run-time parameter.
144 bool operator==(const Argument& other) const;
189 // The `shape` field has the same meaning as the Argument::shape field.
277 std::vector<Argument> args, CompilationResult* result);
284 const std::vector<Argument>
[all...]
H A Dgraph_compiler.cc52 std::vector<XlaCompiler::Argument>* args) {
61 XlaCompiler::Argument& arg = (*args)[i];
69 arg.kind = XlaCompiler::Argument::kConstant;
72 arg.kind = XlaCompiler::Argument::kConstant;
80 arg.kind = XlaCompiler::Argument::kParameter;
199 std::vector<XlaCompiler::Argument> arguments;
217 if (arguments[i].kind == XlaCompiler::Argument::kConstant) {
H A Dxla_compiler.cc50 const std::vector<XlaCompiler::Argument>& args) {
58 "Argument ", i, " has declared type ", DataTypeString(args[i].type),
67 bool XlaCompiler::Argument::operator==(
68 const XlaCompiler::Argument& other) const {
125 const std::pair<string, std::vector<Argument>>& signature) const {
175 std::vector<XlaCompiler::Argument> args,
232 Status XlaCompiler::XLAShapeForArgument(const XlaCompiler::Argument& arg,
235 case XlaCompiler::Argument::kConstant:
238 case XlaCompiler::Argument::kParameter:
240 case XlaCompiler::Argument
[all...]
/external/llvm/unittests/IR/
H A DFunctionTest.cpp60 SmallVector<Argument *, 4> Args;
61 for (Argument &A : F1->args())
73 for (Argument &A : F2->args()) {
82 for (Argument &A : F1->args()) {
97 for (Argument &A : F1->args()) {
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DFunction.cpp35 template class llvm::SymbolTableListTraits<Argument, Function>;
39 // Argument Implementation
42 Argument::Argument(Type *Ty, const Twine &Name, Function *Par) function in class:Argument
54 void Argument::setParent(Function *parent) {
64 unsigned Argument::getArgNo() const {
66 assert(F && "Argument is not in a function");
78 bool Argument::hasByValAttr() const {
83 unsigned Argument::getParamAlignment() const {
91 bool Argument
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp49 StringRef Modifier, StringRef Argument,
450 const char *Argument, unsigned ArgumentLen,
452 const char *ArgumentEnd = Argument+ArgumentLen;
456 const char *NextVal = ScanFormat(Argument, ArgumentEnd, '|');
459 Argument = NextVal+1; // Skip this string.
464 const char *EndPtr = ScanFormat(Argument, ArgumentEnd, '|');
467 DInfo.FormatDiagnostic(Argument, EndPtr, OutStr);
592 const char *Argument, unsigned ArgumentLen,
594 const char *ArgumentEnd = Argument + ArgumentLen;
596 assert(Argument < ArgumentEn
48 DummyArgToStringFn(DiagnosticsEngine::ArgumentKind AK, intptr_t QT, StringRef Modifier, StringRef Argument, ArrayRef<DiagnosticsEngine::ArgumentValue> PrevArgs, SmallVectorImpl<char> &Output, void *Cookie, ArrayRef<intptr_t> QualTypeVals) argument
449 HandleSelectModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
591 HandlePluralModifier(const Diagnostic &DInfo, unsigned ValNo, const char *Argument, unsigned ArgumentLen, SmallVectorImpl<char> &OutStr) argument
698 const char *Modifier = nullptr, *Argument = nullptr; local
[all...]
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/
H A DMain.java18 import org.kohsuke.args4j.Argument;
48 @Argument(handler = CommandHandler.class, required = true)
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
H A DMerge.java22 import org.kohsuke.args4j.Argument;
30 @Argument(usage = "list of JaCoCo *.exec files to read", metaVar = "<execfiles>")
H A DExecInfo.java28 import org.kohsuke.args4j.Argument;
35 @Argument(usage = "list of JaCoCo *.exec files to read", metaVar = "<execfiles>")
/external/spirv-llvm/lib/SPIRV/
H A DOCLTypeToSPIRV.cpp128 if (static_cast<Argument*>(A) == V)
135 static Argument*
139 return static_cast<Argument*>(AI);
249 if (!isa<Argument>(SamplerArg) ||
257 auto Caller = cast<Argument>(SamplerArg)->getParent();
294 addAdaptedType(static_cast<Argument*>(Arg), getSamplerType(M));
304 addAdaptedType(static_cast<Argument*>(Arg), getOrCreateOpaquePtrType(M,
/external/tensorflow/tensorflow/compiler/jit/
H A Dxla_compilation_cache.cc133 // Builds a XlaCompiler::Argument vector from the arguments to the _XlaLaunch
138 std::vector<XlaCompiler::Argument>* args) {
148 XlaCompiler::Argument& arg = (*args)[input_num];
149 arg.kind = XlaCompiler::Argument::kConstant;
164 XlaCompiler::Argument& arg = (*args)[input_num];
166 arg.kind = XlaCompiler::Argument::kParameter;
168 arg.kind = XlaCompiler::Argument::kConstant;
182 XlaCompiler::Argument& arg = (*args)[input_num];
185 arg.kind = XlaCompiler::Argument::kResource;
293 std::vector<XlaCompiler::Argument> arg
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Dir_function.h74 llvm::Argument* result_arg() { return result_arg_; }
108 llvm::Argument* result_arg_;

Completed in 4959 milliseconds

1234567891011