/external/libxml2/ |
gentest.py | 514 args = ctxt.xpathEval("/api/symbols/function/arg") variable 515 for arg in args: 675 # check we know how to handle the args and return values 679 args = node.xpathEval("arg") 681 args = [] 684 for arg in args:
|
runxmlconf.c | 112 va_list args; local 115 va_start(args, msg); 116 vfprintf(logfile, msg, args); 117 va_end(args); 122 va_start(args, msg); 123 vfprintf(stderr, msg, args); 124 va_end(args);
|
testHTML.c | 529 va_list args; local 531 va_start(args, msg); 533 vfprintf(stdout, msg, args); 534 va_end(args); 549 va_list args; local 551 va_start(args, msg); 553 vfprintf(stdout, msg, args); 554 va_end(args); 569 va_list args; local 571 va_start(args, msg) [all...] |
xmlstring.c | 549 va_list args; local 556 va_start(args, msg); 557 ret = vsnprintf((char *) buf, len, (const char *) msg, args); 558 va_end(args);
|
/external/linux-kselftest/tools/testing/selftests/futex/functional/ |
futex_requeue_pi.c | 113 struct thread_arg *args = (struct thread_arg *)arg; local 116 info("Waiter %ld: running\n", args->id); 120 usleep(1000 * (long)args->id); 126 args->ret = futex_wait_requeue_pi(&f1, old_val, &f2, args->timeout, 129 info("waiter %ld woke with %d %s\n", args->id, args->ret, 130 args->ret < 0 ? strerror(errno) : ""); 132 if (args->ret < 0) { 133 if (args->timeout && errno == ETIMEDOUT 149 struct thread_arg *args = (struct thread_arg *)arg; local 197 struct thread_arg *args = (struct thread_arg *)arg; local 262 struct thread_arg *args = (struct thread_arg *)arg; local 288 struct thread_arg args[THREAD_MAX]; local [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
codegen.ml | 52 | Ast.Call (callee, args) -> 62 if Array.length params == Array.length args then () else 64 let args = Array.map codegen_expr args in var 65 build_call callee args "calltmp" builder 190 | Ast.Prototype (name, args) | Ast.BinOpPrototype (name, args, _) -> 192 let doubles = Array.make (Array.length args) double_type in 207 raise (Error "redefinition of function with different # args"); 213 let n = args.(i) i [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
codegen.ml | 82 | Ast.Call (callee, args) -> 92 if Array.length params == Array.length args then () else 94 let args = Array.map codegen_expr args in var 95 build_call callee args "calltmp" builder 288 | Ast.Prototype (name, args) | Ast.BinOpPrototype (name, args, _) -> 290 let doubles = Array.make (Array.length args) double_type in 305 raise (Error "redefinition of function with different # args"); 311 let n = args.(i) i [all...] |
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITTestBase.h | 72 for (Argument &A : Result->args()) 98 Function::arg_iterator args = Result->arg_begin(); local 99 Value *Arg1 = &*args; 100 Value *Arg2 = &*++args;
|
/external/llvm/unittests/IR/ |
LegacyPassManagerTest.cpp | 515 Function::arg_iterator args = func_test4->arg_begin(); local 516 Value *int1_f = &*args++;
|
/external/llvm/utils/ |
extract_symbols.py | 333 args = parser.parse_args() variable 344 if args.tools: 345 tool_exes = args.tools 380 if args.mangling == 'microsoft': 387 for lib in args.libs: 446 if args.mangling == 'microsoft': 489 if args.o: 490 outfile = open(args.o,'w')
|
/external/ltp/testcases/kernel/fs/dmapi/ |
dm_test.c | 280 va_list args; local 286 va_start(args, format); 287 vsprintf(fmtmsg, format, args); 288 va_end(args); 300 va_list args; local 302 va_start(args, format); 306 vfprintf(dm_fpLogFile, format, args); 309 va_end(args); 310 va_start(args, format); 313 vprintf(format, args); [all...] |
/external/ltp/testcases/kernel/io/disktest/ |
childmain.c | 99 void add_action(test_env_t * env, const child_args_t * args, 103 if (env->action_list_entry == args->t_kids) { /* we should never get here */ 141 void decrement_io_count(const child_args_t * args, test_env_t * env, 144 if (args->flags & CLD_FLG_LBA_SYNC) { 179 void update_test_state(child_args_t * args, test_env_t * env, 185 if (args->flags & CLD_FLG_ALLDIE) { 187 PDBG4(DBUG, args, 191 args->test_state = SET_STS_FAIL(args->test_state); 196 PDBG4(DBUG, args, 584 child_args_t *args = test->args; local [all...] |
/external/ltp/tools/netpipe-2.4/ |
netpipe.c | 50 ArgStruct args; /* Argumentsfor all the calls */ local 116 args.prot.rcvbufsz = atoi(optarg); 117 args.prot.sndbufsz = args.prot.rcvbufsz; 139 args.host = (char *)malloc(strlen(optarg) + 1); 140 strcpy(args.host, optarg); 172 args.nbuff = TRIALS; 173 args.tr = trans; 174 args.port = port; 178 args.prot.sndbufsz = 0 [all...] |
/external/ltp/tools/netpipe-2.4-ipv6/ |
netpipe.c | 87 ArgStruct args; /* Argumentsfor all the calls */ local 152 args.prot.rcvbufsz = atoi(optarg); 153 args.prot.sndbufsz = args.prot.rcvbufsz; 175 args.host = (char *)malloc(strlen(optarg) + 1); 176 strcpy(args.host, optarg); 177 printf("host is %s\n", args.host); 187 args.server_host = 189 strcpy(args.server_host, optarg); 190 printf("server is %s\n", args.server_host) [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_format_aos.c | 576 LLVMValueRef args[4]; local 578 args[0] = LLVMBuildBitCast(builder, tmp_ptr, pi8t, ""); 579 args[1] = lp_build_gather_elem_ptr(gallivm, num_pixels, 583 args[2] = i; 584 args[3] = j; 587 args[2] = LLVMBuildExtractElement(builder, i, index, ""); 588 args[3] = LLVMBuildExtractElement(builder, j, index, ""); 591 LLVMBuildCall(builder, function, args, Elements(args), ""); 672 LLVMValueRef args[4] local [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_sanity.c | 155 va_list args; local 161 va_start( args, format ); 162 _debug_vprintf( format, args ); 163 va_end( args ); 174 va_list args; local 180 va_start( args, format ); 181 _debug_vprintf( format, args ); 182 va_end( args );
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_debug.c | 75 va_list args; local 77 va_start( args, fmt ); 78 debug_vprintf( fmt, args ); 79 va_end( args ); 234 va_list args; local 239 va_start( args, fmt ); 240 debug_vprintf( fmt, args ); 241 va_end( args ); 268 va_list args; local 272 va_start( args, fmt ) [all...] |
i915_fpc_translate.c | 146 va_list args; local 150 va_start( args, msg ); 151 util_vsnprintf( buffer, sizeof(buffer), msg, args ); 152 va_end( args ); [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_test_arit.c | 257 LLVMTypeRef args[2] = { LLVMPointerType(vf32t, 0), LLVMPointerType(vf32t, 0) }; local 260 args, Elements(args), 0));
|
lp_test_conv.c | 107 LLVMTypeRef args[2]; local 116 args[0] = LLVMPointerType(lp_build_vec_type(gallivm, src_type), 0); 117 args[1] = LLVMPointerType(lp_build_vec_type(gallivm, dst_type), 0); 121 args, 2, 0));
|
/external/mesa3d/src/gallium/tests/graw/ |
fs-test.c | 523 static void args(int argc, char *argv[]) function 553 args(argc,argv);
|
quad-sample.c | 395 static void args(int argc, char *argv[]) function 410 args(argc, argv);
|
vs-test.c | 475 static void args(int argc, char *argv[]) function 505 args(argc,argv);
|
/external/mesa3d/src/glsl/ |
ralloc.c | 378 va_list args; local 379 va_start(args, fmt); 380 ptr = ralloc_vasprintf(ctx, fmt, args); 381 va_end(args); 395 va_list args; local 396 va_copy(args, untouched_args); 402 size = _vscprintf(fmt, args); 405 size = vsnprintf(&junk, 1, fmt, args); 409 va_end(args); 415 ralloc_vasprintf(const void *ctx, const char *fmt, va_list args) 430 va_list args; local 450 va_list args; local [all...] |
/external/mesa3d/src/glx/ |
dri_common.c | 58 va_list args; local 63 va_start(args, f); 64 vfprintf(stderr, f, args); 65 va_end(args); 76 va_list args; local 81 va_start(args, f); 82 vfprintf(stderr, f, args); 83 va_end(args); 97 va_list args; local 102 va_start(args, f) [all...] |