Home | History | Annotate | Download | only in src

Lines Matching defs:tp

60   ffi_type **tp = cif->arg_types;
64 for (i = 0; i < cif->nargs; i++, tp++, args++)
66 switch ((*tp)->type)
97 raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;
106 for (i = 0; i < cif->nargs; i++, tp++, args++)
109 if ((*tp)->type == FFI_TYPE_STRUCT)
117 raw += ALIGN ((*tp)->size, sizeof (void*)) / sizeof (void*);
132 ffi_type **tp = cif->arg_types;
134 for (i = 0; i < cif->nargs; i++, tp++, args++)
136 switch ((*tp)->type)
175 memcpy ((void*) raw->data, (void*)*args, (*tp)->size);
176 raw += ALIGN ((*tp)->size, FFI_SIZEOF_ARG) / FFI_SIZEOF_ARG;