Home
last modified time | relevance | path

Searched refs:map_alloc (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/ptools/pmap/
H A Dpmap.c171 static int map_alloc; variable
1195 if (map_count == map_alloc) { in nextmap()
1196 if (map_alloc == 0) in nextmap()
1199 next = map_alloc * 2; in nextmap()
1206 (void) memset(newmaps + map_alloc, '\0', in nextmap()
1207 (next - map_alloc) * sizeof (mapdata_t)); in nextmap()
1209 map_alloc = next; in nextmap()
/illumos-gate/usr/src/lib/libproc/common/
H A DPcontrol.h228 size_t map_alloc; /* number of mappings allocated */ member
H A DPcontrol.c3954 if (P->map_count == P->map_alloc) { in Padd_mapping()
3955 size_t next = P->map_alloc ? P->map_alloc * 2 : 16; in Padd_mapping()
3961 P->map_alloc = next; in Padd_mapping()
H A DPsymtab.c574 P->map_count = P->map_alloc = nmap; in Pupdate_maps()
3390 P->map_count = P->map_alloc = 0; in Preset_maps()