Searched refs:dest_cpy (Results 1 – 3 of 3) sorted by relevance
/third_party/libffi/src/powerpc/ |
D | ffi_darwin.c | 133 char *dest_cpy; in ffi_prep_args() local 265 dest_cpy = (char *) next_arg; in ffi_prep_args() 274 memcpy ((char *) dest_cpy, (char *) *p_argv, size_al); in ffi_prep_args() 281 dest_cpy += 4 - size_al; in ffi_prep_args() 283 memcpy((char *) dest_cpy, (char *) *p_argv, size_al); in ffi_prep_args() 482 char *dest_cpy = (char *)next_arg; in darwin64_pass_struct_by_value() local 498 dest_cpy += 8 - size; in darwin64_pass_struct_by_value() 499 memcpy ((char *) dest_cpy, src, size); in darwin64_pass_struct_by_value() 504 memcpy ((char *) dest_cpy, src, size); in darwin64_pass_struct_by_value() 510 memcpy ((char *) dest_cpy, src, size); in darwin64_pass_struct_by_value()
|
/third_party/libffi/src/pa/ |
D | ffi.c | 148 char *dest_cpy; in ffi_prep_args_pa32() local 238 dest_cpy = (char *)(stack - slot) + 4 - len; in ffi_prep_args_pa32() 239 memcpy(dest_cpy, (char *)*p_argv, len); in ffi_prep_args_pa32() 244 dest_cpy = (char *)(stack - slot) + 8 - len; in ffi_prep_args_pa32() 245 memcpy(dest_cpy, (char *)*p_argv, len); in ffi_prep_args_pa32()
|
/third_party/python/Modules/_ctypes/libffi_osx/powerpc/ |
D | ppc-ffi_darwin.c | 258 char* dest_cpy = (char*)next_arg; in ffi_prep_args() 273 dest_cpy += 4 - size_al; in ffi_prep_args() 276 memcpy((char*)dest_cpy, (char*)*p_argv, size_al); in ffi_prep_args()
|