Home
last modified time | relevance | path

Searched refs:type_ptr (Results 1 – 2 of 2) sorted by relevance

/external/qemu/
Dthunk.c33 static const argtype *thunk_type_next_ptr(const argtype *type_ptr);
35 static inline const argtype *thunk_type_next(const argtype *type_ptr) in thunk_type_next() argument
39 type = *type_ptr++; in thunk_type_next()
49 return type_ptr; in thunk_type_next()
51 return thunk_type_next_ptr(type_ptr); in thunk_type_next()
53 return thunk_type_next_ptr(type_ptr + 1); in thunk_type_next()
55 return type_ptr + 1; in thunk_type_next()
61 static const argtype *thunk_type_next_ptr(const argtype *type_ptr) in thunk_type_next_ptr() argument
63 return thunk_type_next(type_ptr); in thunk_type_next_ptr()
68 const argtype *type_ptr; in thunk_register_struct() local
[all …]
Dthunk.h73 const argtype *type_ptr, int to_host);
78 int thunk_type_size_array(const argtype *type_ptr, int is_host);
79 int thunk_type_align_array(const argtype *type_ptr, int is_host);
81 static inline int thunk_type_size(const argtype *type_ptr, int is_host) in thunk_type_size() argument
86 type = *type_ptr; in thunk_type_size()
108 size = type_ptr[1]; in thunk_type_size()
109 return size * thunk_type_size_array(type_ptr + 2, is_host); in thunk_type_size()
111 se = struct_entries + type_ptr[1]; in thunk_type_size()
118 static inline int thunk_type_align(const argtype *type_ptr, int is_host) in thunk_type_align() argument
123 type = *type_ptr; in thunk_type_align()
[all …]