HomeSort by relevance Sort by last modified time
    Searched refs:args (Results 1 - 25 of 4519) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2005-01-02-VAArgError-ICE.c 6 __builtin_va_list args; local
7 __builtin_va_start(args,a); // not the last named arg
8 foo(args);
  /external/libffi/testsuite/libffi.call/
closure_fn0.c 16 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
20 (int)*(unsigned long long *)args[0] + (int)(*(int *)args[1]) +
21 (int)(*(unsigned long long *)args[2]) + (int)*(int *)args[3] +
22 (int)(*(signed short *)args[4]) +
23 (int)(*(unsigned long long *)args[5]) +
24 (int)*(int *)args[6] + (int)(*(int *)args[7]) +
25 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn1.c 13 static void closure_test_fn1(ffi_cif* cif __UNUSED__, void* resp, void** args,
17 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
18 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
19 (int)(*(signed short *)args[4]) + (int)(*(float *)args[5]) +
20 (int)*(float *)args[6] + (int)(*(int *)args[7]) +
21 (int)(*(double*)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn2.c 12 static void closure_test_fn2(ffi_cif* cif __UNUSED__, void* resp, void** args,
16 (int)*(double *)args[0] +(int)(*(double *)args[1]) +
17 (int)(*(double *)args[2]) + (int)*(double *)args[3] +
18 (int)(*(signed short *)args[4]) + (int)(*(double *)args[5]) +
19 (int)*(double *)args[6] + (int)(*(int *)args[7]) +
20 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn3.c 12 static void closure_test_fn3(ffi_cif* cif __UNUSED__, void* resp, void** args,
16 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
17 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
18 (int)(*(float *)args[4]) + (int)(*(float *)args[5]) +
19 (int)*(float *)args[6] + (int)(*(float *)args[7]) +
20 (int)(*(double *)args[8]) + (int)*(int *)args[9]
    [all...]
closure_fn4.c 14 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
18 (int)*(unsigned long long *)args[0] + (int)*(unsigned long long *)args[1] +
19 (int)*(unsigned long long *)args[2] + (int)*(unsigned long long *)args[3] +
20 (int)*(unsigned long long *)args[4] + (int)*(unsigned long long *)args[5] +
21 (int)*(unsigned long long *)args[6] + (int)*(unsigned long long *)args[7] +
22 (int)*(unsigned long long *)args[8] + (int)*(unsigned long long *)args[9]
    [all...]
closure_fn5.c 13 closure_test_fn5(ffi_cif* cif __UNUSED__, void* resp, void** args,
17 (int)*(unsigned long long *)args[0] + (int)*(unsigned long long *)args[1] +
18 (int)*(unsigned long long *)args[2] + (int)*(unsigned long long *)args[3] +
19 (int)*(unsigned long long *)args[4] + (int)*(unsigned long long *)args[5] +
20 (int)*(unsigned long long *)args[6] + (int)*(unsigned long long *)args[7] +
21 (int)*(unsigned long long *)args[8] + (int)*(unsigned long long *)args[9]
    [all...]
closure_fn6.c 12 closure_test_fn0(ffi_cif* cif __UNUSED__, void* resp, void** args,
16 (int)*(unsigned long long *)args[0] +
17 (int)(*(unsigned long long *)args[1]) +
18 (int)(*(unsigned long long *)args[2]) +
19 (int)*(unsigned long long *)args[3] +
20 (int)(*(int *)args[4]) + (int)(*(double *)args[5]) +
21 (int)*(double *)args[6] + (int)(*(float *)args[7]) +
22 (int)(*(double *)args[8]) + (int)*(double *)args[9]
    [all...]
  /external/valgrind/main/none/tests/ppc32/
test_gx.c 74 double* args, int nargs,
82 a = args[i];
95 double* args = malloc(nargs * sizeof(double)); local
96 args[0] = 0.0;
97 args[1] = 1.0 / 0.0; // inf
98 args[2] = -args[1]; // -inf
99 args[3] = args[2]/args[2]; // na
    [all...]
test_fx.c 39 double* args, int nargs,
47 a = args[i];
60 double* args = malloc(nargs * sizeof(double)); local
61 args[0] = 0.0;
62 args[1] = 1.0 / 0.0; // inf
63 args[2] = -args[1]; // -inf
64 args[3] = args[2]/args[2]; // na
    [all...]
  /dalvik/tests/023-many-interfaces/src/
Main.java 2 static public void main(String[] args) throws Exception {
3 boolean timing = (args.length >= 1) && args[0].equals("--timing");
  /external/libffi/testsuite/libffi.special/
unwindtest.cc 12 void** args __UNUSED__, void* userdata __UNUSED__)
20 void** args, void* userdata __UNUSED__)
23 (int)*(float *)args[0] +(int)(*(float *)args[1]) +
24 (int)(*(float *)args[2]) + (int)*(float *)args[3] +
25 (int)(*(signed short *)args[4]) + (int)(*(float *)args[5]) +
26 (int)*(float *)args[6] + (int)(*(int *)args[7])
    [all...]
  /external/bluetooth/bluez/test/
test-telephony 17 (options, args) = parser.parse_args()
30 if len(args) < 1:
50 if args[0] == "connect":
51 if len(args) < 2:
54 device = adapter.FindDevice(args[1])
60 if args[0] == "disconnect":
61 if len(args) < 2:
64 device = adapter.FindDevice(args[1])
70 if args[0] == "speakergain":
71 if len(args) < 2
    [all...]