Lines Matching refs:newp
3886 mchunkptr newp = (mchunkptr)(cp + offset); in mmap_resize() local
3888 newp->head = psize; in mmap_resize()
3889 mark_inuse_foot(m, newp, psize); in mmap_resize()
3890 chunk_plus_offset(newp, psize)->head = FENCEPOST_HEAD; in mmap_resize()
3891 chunk_plus_offset(newp, psize+SIZE_T_SIZE)->head = 0; in mmap_resize()
3897 check_mmapped_chunk(m, newp); in mmap_resize()
3898 return newp; in mmap_resize()
4833 mchunkptr newp = 0; in try_realloc_chunk() local
4839 newp = mmap_resize(m, p, nb, can_move); in try_realloc_chunk()
4849 newp = p; in try_realloc_chunk()
4860 newp = p; in try_realloc_chunk()
4882 newp = p; in try_realloc_chunk()
4900 newp = p; in try_realloc_chunk()
4907 return newp; in try_realloc_chunk()
4950 mchunkptr newp = (mchunkptr)pos; in internal_memalign() local
4955 newp->prev_foot = p->prev_foot + leadsize; in internal_memalign()
4956 newp->head = newsize; in internal_memalign()
4959 set_inuse(m, newp, newsize); in internal_memalign()
4963 p = newp; in internal_memalign()
5242 mchunkptr newp = try_realloc_chunk(m, oldp, nb, 1); in dlrealloc() local
5244 if (newp != 0) { in dlrealloc()
5245 check_inuse_chunk(m, newp); in dlrealloc()
5246 mem = chunk2mem(newp); in dlrealloc()
5284 mchunkptr newp = try_realloc_chunk(m, oldp, nb, 0); in dlrealloc_in_place() local
5286 if (newp == oldp) { in dlrealloc_in_place()
5287 check_inuse_chunk(m, newp); in dlrealloc_in_place()
5796 mchunkptr newp = try_realloc_chunk(m, oldp, nb, 1); in mspace_realloc() local
5798 if (newp != 0) { in mspace_realloc()
5799 check_inuse_chunk(m, newp); in mspace_realloc()
5800 mem = chunk2mem(newp); in mspace_realloc()
5835 mchunkptr newp = try_realloc_chunk(m, oldp, nb, 0); in mspace_realloc_in_place() local
5837 if (newp == oldp) { in mspace_realloc_in_place()
5838 check_inuse_chunk(m, newp); in mspace_realloc_in_place()