Lines Matching defs:end
4141 values at the far end. In case of opcodes, it's OK. */
4913 /* DT_NULL Marks end of dynamic section. */
5209 Dwarf_Off start, Dwarf_Off end,
5218 && table->table[*idxp].offset < end)
5288 /* This is the NUL byte at the end of the section. */
5383 /* We will have to assume it is just addresses to the end... */
5404 /* The addresses start here, but where do they end? */
5542 error (0, 0, "extra %zd bytes at end of unit",
6239 Dwarf_Addr end;
6243 end = read_8ubyte_unaligned_inc (dbg, readp);
6248 end = read_4ubyte_unaligned_inc (dbg, readp);
6261 print_dwarf_addr (dwflmod, address_size, end, end);
6263 base = end;
6266 else if (begin == 0 && end == 0) /* End of list entry. */
6280 printf ("range %" PRIx64 ", %" PRIx64 "\n", begin, end);
6288 base + end - 1, base + end);
7093 printf (_(" (end offset: %#" PRIx64 ")"),
7929 the end of .debug_info if we want .debug_types only. Check the returned
7934 cu_mem.end = dbg->sectiondata[IDX_debug_info]->d_size;
9022 puts (_(" end of sequence"));
9254 puts (_(" set prologue end flag"));
9884 Dwarf_Addr end;
9899 end = 0;
9907 if (get_indexed_addr (cu, idx, &end) != 0)
9908 end = idx; /* ... */
9920 if (get_indexed_addr (cu, idx, &end) != 0)
9921 end = idx; /* ... */
9933 end = read_4ubyte_unaligned_inc (dbg, locp);
9934 end += begin;
9947 end = read_8ubyte_unaligned_inc (dbg, readp);
9952 end = read_4ubyte_unaligned_inc (dbg, readp);
9965 print_dwarf_addr (dwflmod, address_size, end, end);
9967 base = end;
9970 else if (begin == 0 && end == 0) /* End of list entry. */
9986 printf ("range %" PRIx64 ", %" PRIx64 "\n", begin, end);
9990 Dwarf_Addr dae = use_base ? base + end : end;
10105 section. Note we keep the sentinel at the end. */
10136 %*s*** non-terminated string at end of section"),
10159 %*s*** missing DW_MACINFO_start_file argument at end of section"),
10830 error (0, 0, "extra %zd bytes at end of unit",
12139 /* Force a line break at the end of the group. */
12405 const struct register_info *end;
12406 for (end = sets[i]; same_set (sets[i], end, regs, maxnreg); ++end)
12408 size_t len = strlen (end->name);
12414 reg < end;
12419 /* Force a line break at the end of the group. */
12498 buf_has_data (unsigned char const *ptr, unsigned char const *end, size_t sz)
12500 return ptr < end && (size_t) (end - ptr) >= sz;
12504 buf_read_int (Elf *core, unsigned char const **ptrp, unsigned char const *end,
12507 if (! buf_has_data (*ptrp, end, 4))
12515 buf_read_ulong (Elf *core, unsigned char const **ptrp, unsigned char const *end,
12519 if (! buf_has_data (*ptrp, end, sz))
12545 unsigned char const *const end = data->d_buf + data->d_size;
12550 if (! buf_read_int (core, &ptr, end, &si_signo)
12551 || ! buf_read_int (core, &ptr, end, &si_errno)
12552 || ! buf_read_int (core, &ptr, end, &si_code))
12576 if (! buf_read_ulong (core, &ptr, end, &addr))
12587 if (! buf_read_int (core, &ptr, end, &pid)
12588 || ! buf_read_int (core, &ptr, end, &uid))
12602 unsigned char const *const end = data->d_buf + data->d_size;
12605 if (! buf_read_ulong (core, &ptr, end, &count)
12606 || ! buf_read_ulong (core, &ptr, end, &page_size))
12614 uint64_t maxcount = (size_t) (end - ptr) / (3 * addrsize);
12631 const char *fnext = memchr (fptr, '\0', (char *) end - fptr);
12959 const char *end = memchr (start, '\0', limit - start);
12961 if (unlikely (end == NULL))
12968 start = end + 1;