Lines Matching refs:newmap
562 mapnode_t *newmap = malloc(sizeof (mapnode_t)); in create_maplist() local
571 newmap->pmp = malloc(sizeof (prmap_t)); in create_maplist()
572 newmap->label[0] = '\0'; in create_maplist()
573 newmap->mtypes = 0; in create_maplist()
574 newmap->next = NULL; in create_maplist()
575 (void) memcpy(newmap->pmp, pmp, sizeof (prmap_t)); in create_maplist()
585 newmap->label, sizeof (newmap->label)); in create_maplist()
587 newmap->mtypes |= 1 << AT_SHARED; in create_maplist()
589 newmap->mtypes |= 1 << AT_PRIVM; in create_maplist()
593 lname = anon_name(newmap->label, Psp, stacks, nstacks, in create_maplist()
595 &newmap->mtypes); in create_maplist()
637 newmap->mtypes &= at_map; in create_maplist()
639 if (newmap->mtypes & (1 << i)) { in create_maplist()
650 maplist_head = maplist_tail = newmap; in create_maplist()
652 maplist_tail->next = newmap; in create_maplist()
653 maplist_tail = newmap; in create_maplist()