HomeSort by relevance Sort by last modified time
    Searched defs:arg_types (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
err_bad_typedef.c 14 ffi_type* arg_types[1]; local
18 arg_types[0] = NULL;
23 arg_types) == FFI_BAD_TYPEDEF);
err_bad_abi.c 21 ffi_type* arg_types[1]; local
23 arg_types[0] = NULL;
26 arg_types) == FFI_BAD_ABI);
29 arg_types) == FFI_OK);
cls_double_va.c 29 ffi_type* arg_types[3]; local
35 arg_types[0] = &ffi_type_pointer;
36 arg_types[1] = &ffi_type_double;
37 arg_types[2] = NULL;
41 arg_types) == FFI_OK);
cls_longdouble_va.c 29 ffi_type* arg_types[3]; local
35 arg_types[0] = &ffi_type_pointer;
36 arg_types[1] = &ffi_type_longdouble;
37 arg_types[2] = NULL;
41 arg_types) == FFI_OK);
cls_pointer.c 39 ffi_type* arg_types[3]; local
50 arg_types[0] = &ffi_type_pointer;
51 arg_types[1] = &ffi_type_pointer;
52 arg_types[2] = NULL;
55 arg_types) == FFI_OK);
float_va.c 48 ffi_type *arg_types[5]; local
63 arg_types[0] = &ffi_type_uint;
64 arg_types[1] = &ffi_type_double;
65 arg_types[2] = NULL;
67 &ffi_type_double, arg_types) == FFI_OK);
85 arg_types[0] = &ffi_type_uint;
86 arg_types[1] = &ffi_type_double;
87 arg_types[2] = &ffi_type_double;
88 arg_types[3] = &ffi_type_double;
89 arg_types[4] = NULL
    [all...]
problem1.c 51 ffi_type* arg_types[3]; local
67 arg_types[0] = &my_ffi_struct_type;
68 arg_types[1] = &my_ffi_struct_type;
69 arg_types[2] = NULL;
72 arg_types) == FFI_OK);
cls_longdouble.c 57 ffi_type* arg_types[9]; local
69 arg_types[0] = &ffi_type_longdouble;
70 arg_types[1] = &ffi_type_longdouble;
71 arg_types[2] = &ffi_type_longdouble;
72 arg_types[3] = &ffi_type_longdouble;
73 arg_types[4] = &ffi_type_longdouble;
74 arg_types[5] = &ffi_type_longdouble;
75 arg_types[6] = &ffi_type_longdouble;
76 arg_types[7] = &ffi_type_longdouble;
77 arg_types[8] = NULL
    [all...]
cls_pointer_stack.c 102 ffi_type* arg_types[3]; local
113 arg_types[0] = &ffi_type_pointer;
114 arg_types[1] = &ffi_type_pointer;
115 arg_types[2] = NULL;
118 arg_types) == FFI_OK);
cls_struct_va1.c 47 ffi_type* arg_types[5]; local
84 arg_types[0] = &ffi_type_sint;
85 arg_types[1] = &s_type;
86 arg_types[2] = &l_type;
87 arg_types[3] = &s_type;
88 arg_types[4] = NULL;
91 arg_types) == FFI_OK);
nested_struct11.c 55 ffi_type* arg_types[8]; local
93 arg_types[0] = &ffi_type_sint32;
94 arg_types[1] = &ffi_type_sint32;
95 arg_types[2] = &ffi_type_sint32;
96 arg_types[3] = &struct_type_c;
97 arg_types[4] = &ffi_type_sint32;
98 arg_types[5] = &ffi_type_sint32;
99 arg_types[6] = &ffi_type_sint32;
100 arg_types[7] = NULL;
111 arg_types) == FFI_OK)
    [all...]
va_struct1.c 51 ffi_type* arg_types[5]; local
87 arg_types[0] = &ffi_type_sint;
88 arg_types[1] = &s_type;
89 arg_types[2] = &l_type;
90 arg_types[3] = &s_type;
91 arg_types[4] = NULL;
93 CHECK(ffi_prep_cif_var(&cif, FFI_DEFAULT_ABI, 1, 4, &ffi_type_sint, arg_types) == FFI_OK);
va_struct2.c 53 ffi_type* arg_types[5]; local
89 arg_types[0] = &ffi_type_sint;
90 arg_types[1] = &s_type;
91 arg_types[2] = &l_type;
92 arg_types[3] = &s_type;
93 arg_types[4] = NULL;
95 CHECK(ffi_prep_cif_var(&cif, FFI_DEFAULT_ABI, 1, 4, &s_type, arg_types) == FFI_OK);
va_struct3.c 55 ffi_type* arg_types[5]; local
91 arg_types[0] = &ffi_type_sint;
92 arg_types[1] = &s_type;
93 arg_types[2] = &l_type;
94 arg_types[3] = &s_type;
95 arg_types[4] = NULL;
97 CHECK(ffi_prep_cif_var(&cif, FFI_DEFAULT_ABI, 1, 4, &l_type, arg_types) == FFI_OK);
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_assert.c 66 LLVMTypeRef arg_types[2]; local
75 arg_types[0] = LLVMInt32TypeInContext(context);
76 arg_types[1] = LLVMPointerType(LLVMInt8TypeInContext(context), 0);
80 ret_type, arg_types, ARRAY_SIZE(arg_types),
84 args[0] = LLVMBuildZExt(builder, condition, arg_types[0], "");
88 assert(LLVMTypeOf(args[0]) == arg_types[0]);
89 assert(LLVMTypeOf(args[1]) == arg_types[1]);
  /external/python/cpython2/Modules/_ctypes/libffi/src/alpha/
ffi.c 84 ffi_type **arg_types; local
100 arg_types = cif->arg_types;
104 size_t size = (*arg_types)->size;
106 switch ((*arg_types)->type)
158 memcpy(argp, *avalue, (*arg_types)->size);
166 i++, arg_types++, avalue++;
213 ffi_type **arg_types; local
231 arg_types = cif->arg_types;
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
make_from_tuple.pass.cpp 45 arg_types(&makeArgumentID<Args&&...>())
48 TypeID const* arg_types; member in struct:ConstructibleFromTuple
56 arg_types(&makeArgumentID<Args&&...>())
59 TypeID const* arg_types; member in struct:ConstructibleFromTuple
81 && value.arg_types == &makeArgumentID<ExpectTypes...>();
apply.pass.cpp 104 TypeID const* arg_types; member in struct:CallInfo
109 : quals(q), arg_types(&makeArgumentID<Args&&...>()), args(std::forward<Args>(xargs)...)
144 assert(ret.arg_types == expect_args);
150 assert(ret.arg_types == expect_args);
156 assert(ret.arg_types == expect_args);
162 assert(ret.arg_types == expect_args);
  /external/python/cpython2/Modules/
cgen.py 75 arg_types = ['char', 'string', 'short', 'u_short', 'float', 'long', 'double'] variable
125 if type not in arg_types:
  /external/python/cpython2/Modules/_ctypes/libffi/src/cris/
ffi.c 82 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
172 cif->arg_types = atypes;
184 for (ptr = cif->arg_types, i = cif->nargs; i > 0; i--, ptr++)
304 ffi_type **arg_types = cif->arg_types; local
316 if (arg_types[i]->size <= 4)
321 else if (arg_types[i]->size <= 8)
328 FFI_ASSERT (arg_types[i]->type == FFI_TYPE_STRUCT);
  /external/python/cpython2/Modules/_ctypes/libffi/src/frv/
ffi.c 48 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
185 ffi_type **arg_types = cif->arg_types; local
193 switch (arg_types[i]->type)
  /external/python/cpython2/Modules/_ctypes/libffi/src/moxie/
ffi.c 52 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types;
183 ffi_type **arg_types = cif->arg_types; local
197 switch (arg_types[i]->type)
  /external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
ffi.c 70 for (i = ecif->cif->nargs, p_arg = ecif->cif->arg_types; i; i--, p_arg++)
158 for (i = 0, p_arg = ecif->cif->arg_types; i < ecif->cif->nargs;
544 ffi_type **arg_types; local
549 arg_types = cif->arg_types;
567 if (arg_types[i]->type == FFI_TYPE_STRUCT
569 || arg_types[i]->type == FFI_TYPE_LONGDOUBLE
576 else if ((arg_types[i]->type == FFI_TYPE_DOUBLE
577 || arg_types[i]->type == FFI_TYPE_SINT64
578 || arg_types[i]->type == FFI_TYPE_UINT64
609 ffi_type **arg_types; local
    [all...]
  /external/v8/src/libplatform/tracing/
trace-writer.cc 151 const uint8_t* arg_types = trace_event->arg_types(); local
158 if (arg_types[i] == TRACE_VALUE_TYPE_CONVERTABLE) {
161 AppendArgValue(arg_types[i], arg_values[i]);
  /external/python/cpython2/Modules/_ctypes/libffi/src/microblaze/
ffi.c 70 for (i = 0, p_arg = ecif->cif->arg_types; i < ecif->cif->nargs;
183 ffi_type** arg_types = cif->arg_types; local
218 switch (arg_types[i]->type)
242 if (arg_types[i]->size < WORD_SIZE)
244 memcpy (ptr, ptr + (WORD_SIZE - arg_types[i]->size), arg_types[i]->size);
262 ptr += WORD_ALIGN(arg_types[i]->size);

Completed in 1291 milliseconds

1 2 3