Home | History | Annotate | Download | only in libdw

Lines Matching defs:mem

32   struct pubnames_s *mem = NULL;
45 = (struct pubnames_s *) realloc (mem, allocated * entsize);
50 free (mem);
54 mem = newmem;
67 mem[cnt].set_start = readp + 2 + 2 * len_bytes - startp;
68 mem[cnt].address_len = len_bytes;
69 if (mem[cnt].set_start >= dbg->sectiondata[IDX_debug_pubnames]->d_size)
84 mem[cnt].cu_offset = read_4ubyte_unaligned (dbg, readp + 2);
86 mem[cnt].cu_offset = read_8ubyte_unaligned (dbg, readp + 2);
91 assert (mem[cnt].cu_offset + 3
95 + mem[cnt].cu_offset);
97 mem[cnt].cu_header_size = 23;
99 mem[cnt].cu_header_size = 11;
107 if (mem == NULL)
113 dbg->pubnames_sets = (struct pubnames_s *) realloc (mem, cnt * entsize);