Home | History | Annotate | Download | only in ltrace

Lines Matching full:retp

189 value_clone(struct value *retp, const struct value *val)
191 *retp = *val;
194 retp->type = malloc(sizeof(struct arg_type_info));
195 if (type_clone (retp->type, val->type) < 0) {
196 free(retp->type);
206 if (retp->own_type) {
207 type_destroy(retp->type);
208 free(retp->type);
213 retp->u.address = malloc(size);
214 if (retp->u.address == NULL)
217 memcpy(retp->u.address, val->u.address, size);
386 value_extract_word(struct value *value, long *retp,
395 *retp = 0;
405 *retp = (long)u.u8;
408 *retp = (long)u.u16;
411 *retp = (long)u.u32;
414 *retp = (long)u.u64;