HomeSort by relevance Sort by last modified time
    Searched defs:args (Results 226 - 250 of 6043) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Other/
opt-bisect-helper.py 17 args = parser.parse_args() variable
19 start = args.start
20 end = args.end
22 opt_command = [args.optcmd, "-O2", "-opt-bisect-limit=%(count)s", "-S", args.test]
23 check_command = [args.filecheckcmd, args.test, "--check-prefix=%s" % args.prefix]
  /external/llvm/utils/
bisect 14 args = parser.parse_args() variable
16 start = args.start
17 end = args.end
27 cmd = [x % {'count':count} for x in args.command]
  /external/ltp/testcases/kernel/syscalls/execv/
execv01.c 54 char *const args[] = { "execv01_child", "canary", NULL}; local
67 execv(path, args);
  /external/ltp/testcases/kernel/syscalls/execve/
execve01.c 54 char *const args[] = {"execve01_child", "canary", NULL}; local
68 execve(path, args, env);
  /external/ltp/testcases/kernel/syscalls/socketcall/
socketcall01.c 35 #define socketcall(call, args) syscall(__NR_socketcall, call, args)
39 unsigned long args[3]; member in struct:test_case_t
50 TEST(socketcall(TC[i].call, TC[i].args));
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_assert.c 69 LLVMValueRef args[2]; local
84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], "");
85 args[1] = msg_string;
88 assert(LLVMTypeOf(args[0]) == arg_types[0]);
89 assert(LLVMTypeOf(args[1]) == arg_types[1]);
91 LLVMBuildCall(builder, function, args, ARRAY_SIZE(args), "");
  /external/mesa3d/src/gallium/drivers/i915/
i915_debug.h 61 va_list args; local
63 va_start(args, fmt);
64 debug_vprintf(fmt, args);
65 va_end(args);
  /external/mesa3d/src/mesa/drivers/dri/
gen-symbol-redefs.py 45 args = argparser.parse_args() variable
47 stdout = subprocess.check_output(['nm', args.file])
56 has_good_prefix = re.match(args.newprefix, symbol) != None
57 for prefix in args.prefixes:
68 print '#define {0:35} {1}{0}'.format(symbol, args.newprefix)
  /external/nos/test/system-test-harness/src/test-data/NIST-CAVP/
nist2h.py 95 args = [iter(v)] * 8
96 words = [''.join(b) for b in itertools.izip_longest(fillvalue='', *args)]
175 args = _parse_args() variable
177 for input_file in args.input_files.split(','):
182 with open(args.output_file, 'w+') as f:
183 _write_header(args.input_files, f, mode, data)
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
float3.c 25 ffi_type *args[MAX_ARGS]; local
33 args[0] = &ffi_type_float;
35 args[1] = &ffi_type_double;
37 args[2] = &ffi_type_longdouble;
42 &ffi_type_double, args) == FFI_OK);
54 args[0] = &ffi_type_longdouble;
56 args[1] = &ffi_type_double;
58 args[2] = &ffi_type_float;
63 &ffi_type_double, args) == FFI_OK);
many.c 29 ffi_type *args[13]; local
37 args[i] = &ffi_type_float;
44 &ffi_type_float, args) == FFI_OK);
negint.c 20 ffi_type *args[MAX_ARGS]; local
28 args[0] = &ffi_type_sint;
30 args[1] = &ffi_type_sshort;
32 args[2] = &ffi_type_schar;
37 &ffi_type_sint, args) == FFI_OK);
return_dbl1.c 17 ffi_type *args[MAX_ARGS]; local
22 args[0] = &ffi_type_double;
23 args[1] = &ffi_type_float;
24 args[2] = &ffi_type_uint;
25 args[3] = &ffi_type_double;
33 &ffi_type_double, args) == FFI_OK);
return_dbl2.c 17 ffi_type *args[MAX_ARGS]; local
21 args[0] = &ffi_type_double;
22 args[1] = &ffi_type_double;
23 args[2] = &ffi_type_uint;
24 args[3] = &ffi_type_double;
32 &ffi_type_double, args) == FFI_OK);
return_fl1.c 17 ffi_type *args[MAX_ARGS]; local
21 args[0] = &ffi_type_float;
22 args[1] = &ffi_type_float;
28 &ffi_type_float, args) == FFI_OK);
return_fl3.c 17 ffi_type *args[MAX_ARGS]; local
21 args[0] = &ffi_type_float;
22 args[1] = &ffi_type_float;
23 args[2] = &ffi_type_uint;
24 args[3] = &ffi_type_float;
32 &ffi_type_float, args) == FFI_OK);
return_ll1.c 18 ffi_type *args[MAX_ARGS]; local
24 args[0] = &ffi_type_sint;
25 args[1] = &ffi_type_sint64;
26 args[2] = &ffi_type_sint;
33 &ffi_type_sint64, args) == FFI_OK);
return_sl.c 17 ffi_type *args[MAX_ARGS]; local
22 args[0] = &ffi_type_slong;
23 args[1] = &ffi_type_slong;
28 &ffi_type_slong, args) == FFI_OK);
return_ul.c 17 ffi_type *args[MAX_ARGS]; local
22 args[0] = &ffi_type_ulong;
23 args[1] = &ffi_type_ulong;
28 &ffi_type_ulong, args) == FFI_OK);
strlen2.c 19 ffi_type *args[MAX_ARGS]; local
24 args[0] = &ffi_type_pointer;
25 args[1] = &ffi_type_float;
31 &ffi_type_sint, args) == FFI_OK);
strlen3.c 19 ffi_type *args[MAX_ARGS]; local
24 args[1] = &ffi_type_pointer;
25 args[0] = &ffi_type_float;
31 &ffi_type_sint, args) == FFI_OK);
strlen4.c 19 ffi_type *args[MAX_ARGS]; local
25 args[2] = &ffi_type_sint;
26 args[1] = &ffi_type_pointer;
27 args[0] = &ffi_type_float;
34 &ffi_type_sint, args) == FFI_OK);
unwindtest_ffi_call.cc 20 ffi_type *args[MAX_ARGS]; local
28 args[0] = &ffi_type_sint;
30 args[1] = &ffi_type_sshort;
32 args[2] = &ffi_type_schar;
37 &ffi_type_sint, args) == FFI_OK);
  /external/python/cpython2/Tools/scripts/
ndiff.py 81 # crack args (sys.argv[1:] is normal) & compare;
84 def main(args):
87 opts, args = getopt.getopt(args, "qr:")
102 if args:
103 return fail("no args allowed with -r option")
108 if len(args) != 2:
109 return fail("need 2 filename args")
110 f1name, f2name = args
124 args = sys.argv[1: variable
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
float3.c 25 ffi_type *args[MAX_ARGS]; local
33 args[0] = &ffi_type_float;
35 args[1] = &ffi_type_double;
37 args[2] = &ffi_type_longdouble;
42 &ffi_type_double, args) == FFI_OK);
54 args[0] = &ffi_type_longdouble;
56 args[1] = &ffi_type_double;
58 args[2] = &ffi_type_float;
63 &ffi_type_double, args) == FFI_OK);

Completed in 406 milliseconds

1 2 3 4 5 6 7 8 91011>>