HomeSort by relevance Sort by last modified time
    Searched defs:Args (Results 1 - 25 of 639) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/tools/llvm-stub/
llvm-stub.c 40 const char **Args;
44 Args = (const char**)malloc(sizeof(char*) * (argc+2));
46 Args[0] = Interp;
61 Args[1] = strcat(strcpy((char*)malloc(strlen(argv[0])+4), argv[0]), ".bc");
63 /* The rest of the args are as before. */
64 memcpy((char **)Args+2, argv+1, sizeof(char*)*argc);
68 execvp(Interp, (char **)Args); /* POSIX execvp takes a char *const[]. */
70 execvp(Interp, Args); /* windows execvp takes a const char *const *. */
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/HiiLib/
HiiLib.c 46 VA_LIST Args;
63 VA_START (Args, Guid);
66 *Package = VA_ARG (Args, VOID *);
70 VA_END (Args);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
VectorExtras.h 29 va_list Args;
30 va_start(Args, A);
33 while (T Val = va_arg(Args, T))
35 va_end(Args);
  /external/compiler-rt/test/esan/TestCases/
large-stack-linux.c 39 char *Args[2];
40 Args[0] = ToRun;
41 Args[1] = NULL;
42 Res = execv(ToRun, Args);
  /external/llvm/lib/Target/XCore/
XCoreSelectionDAGInfo.cpp 28 TargetLowering::ArgListTy Args;
31 Entry.Node = Dst; Args.push_back(Entry);
32 Entry.Node = Src; Args.push_back(Entry);
33 Entry.Node = Size; Args.push_back(Entry);
42 std::move(Args))
  /external/llvm/unittests/IR/
FunctionTest.cpp 60 SmallVector<Argument *, 4> Args;
61 for (Argument &A : F1->args())
62 Args.push_back(&A);
63 EXPECT_EQ(2u, Args.size());
73 for (Argument &A : F2->args()) {
74 EXPECT_EQ(Args[I], &A);
82 for (Argument &A : F1->args()) {
83 EXPECT_NE(Args[I], &A);
97 for (Argument &A : F1->args()) {
98 EXPECT_EQ(Args[I], &A)
    [all...]
  /sdk/eclipse/scripts/
gen_icon.py 14 class Args(object):
24 def main(args):
25 data = process_args(args)
29 def process_args(args):
30 if not args or len(args) != 6:
32 return Args(*args)
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 217 auto Args = llvm::make_unique<const char*[]>(NumArgs + 2);
218 Args[0] = "clang (LLVM option parsing)";
220 Args[i + 1] = Clang->getFrontendOpts().LLVMArgs[i].c_str();
221 Args[NumArgs + 1] = nullptr;
222 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args.get());
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 54 const char *Args[] = { "test.cc" };
55 CompilerInvocation::CreateFromArgs(*Invocation, Args,
56 Args + array_lengthof(Args),
SourceLocationTest.cpp 280 std::vector<std::string> Args;
281 Args.push_back("-fno-delayed-template-parsing");
287 cxxUnresolvedConstructExpr(), Args, Lang_CXX11));
StmtPrinterTest.cpp 70 PrintedStmtMatches(StringRef Code, const std::vector<std::string> &Args,
79 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args))
103 std::vector<std::string> Args;
104 Args.push_back("-std=c++98");
105 Args.push_back("-Wno-unused-value");
106 return PrintedStmtMatches(Code, Args, NodeMatch, ExpectedPrinted);
113 std::vector<std::string> Args;
114 Args.push_back("-std=c++98");
115 Args.push_back("-Wno-unused-value");
117 Args,
    [all...]
  /external/libxcam/modules/soft/
soft_copy_task.h 38 struct Args : SoftArgs {
42 Args (const SmartPtr<ImageHandler::Parameters> &param)
53 virtual XCamReturn work_range (const SmartPtr<Arguments> &args, const WorkRange &range);
soft_geo_tasks_priv.h 34 struct Args : SoftArgs {
40 Args (
54 virtual XCamReturn work_range (const SmartPtr<Arguments> &args, const WorkRange &range);
  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp 35 TargetLowering::ArgListTy Args;
39 Args.push_back(Entry);
41 Args.push_back(Entry);
43 Args.push_back(Entry);
55 std::move(Args))
  /external/perfetto/src/perfetto_cmd/
rate_limiter.h 27 struct Args {
37 bool ShouldTrace(const Args& args);
38 bool OnTraceDone(const Args& args, bool success, size_t bytes);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/EdkDxeSalLib/Ipf/
EsalServiceLib.c 126 VA_LIST Args;
132 VA_START (Args, ModuleGlobal);
136 Function = (SAL_INTERNAL_EXTENDED_SAL_PROC) VA_ARG (Args, SAL_INTERNAL_EXTENDED_SAL_PROC);
141 FunctionId = VA_ARG (Args, UINT64);
146 VA_END (Args);
  /external/clang/lib/CodeGen/
CGCUDABuiltin.cpp 46 // vprintf takes two args: A format string, and a pointer to a buffer containing
65 // args is itself aligned to its preferred alignment.
67 // Note that by the time this function runs, E's args have already undergone the
80 CallArgList Args;
81 EmitCallArgs(Args,
87 if (std::any_of(Args.begin() + 1, Args.end(),
93 // Construct and fill the args buffer that we'll pass to vprintf.
95 if (Args.size() <= 1) {
96 // If there are no args, pass a null pointer to vprintf
    [all...]
  /external/clang/unittests/Analysis/
CFGTest.cpp 51 std::vector<std::string> Args = {"-std=c++11", "-fno-delayed-template-parsing"};
52 ASSERT_TRUE(tooling::runToolOnCodeWithArgs(Factory->create(), Code, Args));
  /external/llvm/lib/DebugInfo/PDB/
PDBSymbolFunc.cpp 45 Args.push_back(std::move(Child));
52 uint32_t getChildCount() const override { return Args.size(); }
56 if (Index >= Args.size())
60 Args[Index]->getSymIndexId());
64 if (CurIter == Args.end())
71 void reset() override { CurIter = Args.empty() ? Args.end() : Args.begin(); }
81 ArgListType Args;
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 37 TargetLowering::ArgListTy Args;
41 Args.push_back(Entry);
43 Args.push_back(Entry);
47 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args))
  /external/swiftshader/third_party/LLVM/tools/lli/
lli.cpp 256 // using the contents of Args to determine argc & argv, and the contents of
294 std::vector<GenericValue> Args;
297 Args.push_back(ResultGV);
298 EE->runFunction(ExitF, Args);
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
remote_method_type.h 25 typedef typename Traits::Args Args;
  /prebuilts/go/darwin-x86/src/os/
proc.go 14 // Args hold the command-line arguments, starting with the program name.
15 var Args []string
22 Args = runtime_args()
  /prebuilts/go/linux-x86/src/os/
proc.go 14 // Args hold the command-line arguments, starting with the program name.
15 var Args []string
22 Args = runtime_args()
  /dalvik/dx/src/com/android/dx/command/dump/
Args.java 22 class Args {

Completed in 702 milliseconds

1 2 3 4 5 6 7 8 91011>>