Lines Matching refs:result
222 Dwarf_Op *result = libdw_alloc (attr->cu->dbg,
225 result->atom = DW_OP_plus_uconst;
226 result->number = offset;
227 result->number2 = 0;
228 result->offset = 0;
235 newp->loc = result;
594 Dwarf_Op *result;
596 result = libdw_alloc (dbg, Dwarf_Op, sizeof (Dwarf_Op), n);
599 result = malloc (sizeof *result * n);
600 if (result == NULL)
608 /* Store the result. */
609 *llbuf = result;
616 result[n].atom = loclist->atom;
617 result[n].number = loclist->number;
618 result[n].number2 = loclist->number2;
619 result[n].offset = loclist->offset;
621 if (result[n].atom == DW_OP_implicit_value)
623 int store = store_implicit_value (dbg, cache, &result[n]);
649 free (result);
655 newp->loc = result;
690 int result = is_constant_offset (attr, llbuf, listlen);
691 if (result != 1)
692 return result; /* Either success 0, or -1 to indicate error. */
923 /* If is_constant_offset is successful, we are done with 1 result. */
924 int result = is_constant_offset (attr, llbufs, listlens);
925 if (result != 1)
926 return result ?: 1;
1005 int result = is_constant_offset (attr, expr, exprlen);
1006 if (result != 1)
1008 if (result == 0)
1015 return result; /* Something bad, dwarf_errno has been set. */