/external/llvm/lib/TableGen/ |
Record.cpp | 809 std::vector<Init*> Args; 812 Args.push_back(LHSs->getArg(i)); 816 Args.push_back(RHSs->getArg(i)); 819 return DagInit::get(LHSs->getOperator(), "", Args, ArgNames); 827 std::vector<Init *> Args; 828 Args.insert(Args.end(), LHSs->begin(), LHSs->end()); 829 Args.insert(Args.end(), RHSs->begin(), RHSs->end()); 831 Args, cast<ListRecTy>(LHSs->getType())->getElementType()) 999 std::vector<std::pair<Init *, std::string> > args; local [all...] |
/external/llvm/utils/unittest/googletest/src/ |
gtest-death-test.cc | 904 ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg); local 957 ExecDeathTestArgs args = { argv, close_fd }; local 1020 Arguments args; local [all...] |
/external/ltp/testcases/kernel/fs/fsx-linux/ |
fsx-linux.c | 70 int args[3]; member in struct:log_entry 156 va_list args; local 158 va_start(args, fmt); 159 vfprintf(stdout, fmt, args); 160 va_end(args); 163 va_start(args, fmt); 164 vfprintf(fsxlogf, fmt, args); 165 va_end(args); 181 le->args[0] = arg0; 182 le->args[1] = arg1 [all...] |
/external/ltp/testcases/kernel/io/disktest/ |
main.h | 272 child_args_t *args; /* pointer to the argument structure */ member in struct:test_ll
|
/external/ltp/testcases/kernel/sched/process_stress/ |
process.c | 72 #define dprt(fmt, args...) printf(fmt, ## args) 75 #define dprt(fmt, args...) 242 va_list args; local 247 va_start(args, fmt); 248 vsprintf(mtext, fmt, args); 249 va_end(args); 263 va_list args; local 266 va_start(args, fmt); 267 vfprintf(debugfp, fmt, args); [all...] |
/external/mdnsresponder/mDNSShared/ |
DebugServices.c | 244 va_list args; local 246 va_start( args, inType ); 315 gDebugCustomOutputFunction = va_arg( args, DebugOutputFunctionPtr ); 316 gDebugCustomOutputContext = va_arg( args, void * ); 331 flags = (DebugOutputTypeFlags) va_arg( args, unsigned int ); 334 filename = va_arg( args, const char * ); 381 name = va_arg( args, const char * ); 382 module = va_arg( args, HMODULE ); 395 va_end( args ); 423 va_list args; local 462 va_list args; local 505 va_list args; local [all...] |
dnssd_clientstub.c | 64 va_list args; local 69 va_start( args, message ); 70 len = _vscprintf( message, args ) + 1; 72 if ( buffer ) { vsprintf( buffer, message, args ); OutputDebugString( buffer ); free( buffer ); } [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_state_setup.c | 134 struct lp_setup_args *args, 145 LLVMBuildGEP(builder, args->a0, &idx, 1, "")); 149 LLVMBuildGEP(builder, args->dadx, &idx, 1, "")); 153 LLVMBuildGEP(builder, args->dady, &idx, 1, "")); 160 struct lp_setup_args *args, 166 store_coef(gallivm, args, slot, vert, zerovec, zerovec); 177 struct lp_setup_args *args, 182 LLVMValueRef a0_0 = args->facing; 188 store_coef(gallivm, args, slot, a0, zerovec, zerovec); 209 struct lp_setup_args *args, 672 struct lp_setup_args args; local [all...] |
/external/mesa3d/src/gtest/src/ |
gtest-death-test.cc | 901 ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg); local 954 ExecDeathTestArgs args = { argv, close_fd }; local 1017 Arguments args; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/common/ |
xmlconfig.c | 434 va_list args; local 438 va_start(args, f); 439 vfprintf(stderr, f, args); 440 va_end(args); 451 #define XML_WARNING(msg,args...) do { \ 455 args); \ 463 #define XML_ERROR(msg,args...) do { \ 467 args); \ 477 #define XML_FATAL(msg,args...) do { \ 482 args); \ [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_blorp_blit.cpp | 507 const sampler_message_arg *args, int num_args); 1359 static const sampler_message_arg args[2] = { local [all...] |
brw_vs_emit.c | 67 * args to be immediates. 1877 struct brw_reg args[3], dst; local [all...] |
/external/mksh/src/ |
main.c | 1874 va_list args; local [all...] |
/external/nist-sip/java/gov/nist/javax/sip/ |
SipStackImpl.java | 566 Object[] args = new Object[0]; local 567 StackLogger stackLogger = (StackLogger) cons.newInstance(args); 574 + "- check that it is present on the classpath and that there is a no-args constructor defined", 580 + "- check that it is present on the classpath and that there is a no-args constructor defined", 595 Object[] args = new Object[0]; local 596 this.serverLogger = (ServerLogger) cons.newInstance(args); 603 + "- check that it is present on the classpath and that there is a no-args constructor defined", 609 + "- check that it is present on the classpath and that there is a no-args constructor defined", 632 Object[] args = new Object[2]; local 633 args[0] = (SipStack) this [all...] |
/external/openssh/ |
scp.c | 126 arglist args; variable 272 replacearg(&args, 0, "%s", ssh_program); 274 addargs(&args, "-l"); 275 addargs(&args, "%s", remuser); 277 addargs(&args, "--"); 278 addargs(&args, "%s", host); 279 addargs(&args, "%s", cmd); 281 execvp(ssh_program, args.list); 321 replacearg(&args, 0, "%s", ssh_program); 323 addargs(&args, "-l") [all...] |
session.c | 1823 char *p, *args; local [all...] |
sftp-client.c | 235 va_list args; local 238 va_start(args, errfmt); 240 vsnprintf(errmsg, sizeof(errmsg), errfmt, args); 241 va_end(args); [all...] |
/external/pdfium/third_party/freetype/src/truetype/ |
ttinterp.h | 164 FT_Long args; member in struct:TT_ExecContextRec_
|
/external/pdfium/third_party/lcms2-2.6/src/ |
cmslut.c | 112 va_list args; local 121 va_start(args, n); 128 Type = (cmsStageSignature)va_arg(args, cmsStageSignature); 131 va_end(args); // Mismatch. We are done. 141 ElemPtr = va_arg(args, void**); 148 va_end(args); [all...] |
/external/ppp/pppd/ |
options.c | 422 char args[MAXARGS][MAXWORDLEN]; local 461 if (!getword(f, args[i], &newline, filename)) { 467 argv[i] = args[i]; 1088 va_list args; local 1092 va_start(args, fmt); 1095 va_start(args); 1096 fmt = va_arg(args, char *); 1098 vslprintf(buf, sizeof(buf), fmt, args); 1099 va_end(args); [all...] |
/external/protobuf/gtest/src/ |
gtest-death-test.cc | 853 ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg); local 854 GTEST_DEATH_TEST_CHECK_SYSCALL_(close(args->close_fd)); 901 ExecDeathTestArgs args = { argv, close_fd }; local 964 Arguments args; local [all...] |
/external/protobuf/ruby/ext/google/protobuf_c/ |
defs.c | 1451 VALUE args[2] = { oneofdef, self->builder }; local 1667 VALUE args[2] = { msgdef, _self }; local [all...] |
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
RubyMessage.java | 66 public IRubyObject initialize(final ThreadContext context, IRubyObject[] args) { 75 if (args.length == 1) { 76 if (!(args[0] instanceof RubyHash)) { 79 RubyHash hash = args[0].convertToHash(); 203 * Message.method_missing(*args) 215 public IRubyObject methodMissing(ThreadContext context, IRubyObject[] args) { 216 if (args.length == 1) { 218 IRubyObject oneofDescriptor = rubyDescriptor.lookupOneof(context, args[0]); 220 if (!hasField(args[0])) { 221 return Helpers.invokeSuper(context, this, metaClass, "method_missing", args, Block.NULL_BLOCK) 343 IRubyObject[] args = new IRubyObject[] { Helpers.invoke(context, jsonModule, "parse", json, opts) }; local [all...] |
/external/seccomp-tests/linux/ |
seccomp_bpf.c | 86 __u64 args[6]; member in struct:seccomp_data 91 #define syscall_arg(_n) (offsetof(struct seccomp_data, args[_n])) 93 #define syscall_arg(_n) (offsetof(struct seccomp_data, args[_n]) + sizeof(__u32)) 1022 pid_t tracee, int status, void *args); 1025 tracer_func_t tracer_func, void *args) 1069 tracer_func(_metadata, tracee, status, args); 1082 tracer_func_t func, void *args) 1098 tracer(_metadata, pipefd[1], tracee, func, args); 1130 void *args) 1134 struct tracer_args_poke_t *info = (struct tracer_args_poke_t *)args; [all...] |
/external/selinux/libsepol/cil/src/ |
cil_copy_ast.c | 1690 struct cil_args_copy *args = NULL; local 2062 struct cil_args_copy *args = NULL; local [all...] |