Searched refs:ffi_put_arg (Results 1 – 2 of 2) sorted by relevance
/external/libffi/src/arm/ |
D | ffi.c | 78 ffi_put_arg (ffi_type *ty, void *src, void *dst) in ffi_put_arg() function 157 argp += ffi_put_arg (ty, avalue[i], argp); in ffi_prep_args_SYSV() 194 ffi_put_arg (ty, a, vfp_slot); in ffi_prep_args_VFP() 207 regp = tregp + ffi_put_arg (ty, a, tregp); in ffi_prep_args_VFP() 220 argp = tregp + ffi_put_arg (ty, a, tregp); in ffi_prep_args_VFP() 228 argp += ffi_put_arg (ty, a, argp); in ffi_prep_args_VFP()
|
/external/python/cpython2/Modules/_ctypes/libffi/src/arm/ |
D | ffi.c | 69 static size_t ffi_put_arg(ffi_type **arg_type, void **arg, char *stack) in ffi_put_arg() function 149 argp += ffi_put_arg(p_arg, p_argv, argp); in ffi_prep_args_SYSV() 193 ffi_put_arg(p_arg, p_argv, vfp_slot); in ffi_prep_args_VFP() 206 regp = tregp + ffi_put_arg(p_arg, p_argv, tregp); in ffi_prep_args_VFP() 219 argp = tregp + ffi_put_arg(p_arg, p_argv, tregp); in ffi_prep_args_VFP() 227 argp += ffi_put_arg(p_arg, p_argv, argp); in ffi_prep_args_VFP()
|