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

1 2 3 4 5 6

  /external/libffi/testsuite/libffi.call/
cls_double.c 41 &ffi_type_double, cl_arg_types) == FFI_OK);
43 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_double_fn, NULL) == FFI_OK);
cls_float.c 43 &ffi_type_float, cl_arg_types) == FFI_OK);
45 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_float_fn, NULL) == FFI_OK);
cls_schar.c 42 &ffi_type_schar, cl_arg_types) == FFI_OK);
44 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_schar_fn, NULL) == FFI_OK);
cls_sint.c 40 &ffi_type_sint, cl_arg_types) == FFI_OK);
42 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_sint_fn, NULL) == FFI_OK);
cls_sshort.c 40 &ffi_type_sshort, cl_arg_types) == FFI_OK);
42 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_sshort_fn, NULL) == FFI_OK);
cls_uchar.c 40 &ffi_type_uchar, cl_arg_types) == FFI_OK);
42 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_uchar_fn, NULL) == FFI_OK);
cls_uint.c 41 &ffi_type_uint, cl_arg_types) == FFI_OK);
43 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_uint_fn, NULL) == FFI_OK);
cls_ulonglong.c 41 &ffi_type_uint64, cl_arg_types) == FFI_OK);
42 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_ulonglong_fn, NULL) == FFI_OK);
cls_ushort.c 41 &ffi_type_ushort, cl_arg_types) == FFI_OK);
43 CHECK(ffi_prep_closure(pcl, &cif, cls_ret_ushort_fn, NULL) == FFI_OK);
return_dbl.c 26 &ffi_type_double, args) == FFI_OK);
return_fl.c 26 &ffi_type_float, args) == FFI_OK);
return_ldl.c 26 &ffi_type_longdouble, args) == FFI_OK);
return_sc.c 27 &ffi_type_schar, args) == FFI_OK);
return_uc.c 29 &ffi_type_uchar, args) == FFI_OK);
float2.c 30 &ffi_type_longdouble, args) == FFI_OK);
return_fl1.c 28 &ffi_type_float, args) == FFI_OK);
return_ll.c 27 &ffi_type_sint64, args) == FFI_OK);
return_ll1.c 32 &ffi_type_sint64, args) == FFI_OK);
return_sl.c 28 &ffi_type_slong, args) == FFI_OK);
return_ul.c 28 &ffi_type_ulong, args) == FFI_OK);
strlen.c 28 &ffi_type_sint, args) == FFI_OK);
closure_fn0.c 85 &ffi_type_sint, cl_arg_types) == FFI_OK);
88 (void *) 3 /* userdata */) == FFI_OK);
  /external/libffi/testsuite/libffi.special/
unwindtest.cc 68 &ffi_type_void, cl_arg_types) == FFI_OK);
69 CHECK(ffi_prep_closure(pcl, &cif, closure_test_fn, NULL) == FFI_OK);
105 &ffi_type_sint, cl_arg_types) == FFI_OK);
108 (void *) 3 /* userdata */) == FFI_OK);
unwindtest_ffi_call.cc 36 &ffi_type_sint, args) == FFI_OK);
  /external/libffi/src/
prep_cif.c 50 if (((*ptr)->size == 0) && (initialize_aggregate((*ptr)) != FFI_OK))
77 return FFI_OK;
106 if ((cif->rtype->size == 0) && (initialize_aggregate(cif->rtype) != FFI_OK))
130 if (((*ptr)->size == 0) && (initialize_aggregate((*ptr)) != FFI_OK))

Completed in 56 milliseconds

1 2 3 4 5 6