Lines Matching refs:sz
77 size_t sz = type_sizeof(proc, ret_info); in arch_fetch_arg_init() local
78 if (sz == (size_t)-1) in arch_fetch_arg_init()
81 if (ret_info->type == ARGTYPE_STRUCT && !(sz <= 4 || sz == 8)) { in arch_fetch_arg_init()
109 size_t sz = type_sizeof(proc, info); in arch_fetch_arg_next() local
110 if (sz == (size_t)-1) in arch_fetch_arg_next()
134 if (sz < 4) in arch_fetch_arg_next()
135 context->stack_pointer += 4 - sz; in arch_fetch_arg_next()
138 context->stack_pointer += sz; in arch_fetch_arg_next()
159 size_t sz = type_sizeof(proc, info); in arch_fetch_retval() local
160 if (sz == (size_t)-1) in arch_fetch_retval()
162 if (value_reserve(valuep, sz) == NULL) in arch_fetch_retval()
182 if (sz < 4) val += 4 - sz; in arch_fetch_retval()
183 memcpy(buf, val, sz); in arch_fetch_retval()
208 memcpy (buf, u.buf, sz); in arch_fetch_retval()
218 assert(sz <= 4 || sz == 8); in arch_fetch_retval()
219 if (sz < 4) val += 4 - sz; in arch_fetch_retval()
220 memcpy(buf, val, sz <= 4 ? sz : 4); in arch_fetch_retval()
221 if (sz == 8) in arch_fetch_retval()