Lines Matching full:grow
55 np = mremap(p, 1024*1024, 2048*1024, 0); /* grow, fixed */
57 perror("mremap(grow, fixed)");
59 fprintf(stderr, "grow, nomove: p=%p np=%p: shrink moved?!\n",
65 np = mremap(p, 1024*1024, 2048*1024, MREMAP_MAYMOVE); /* grow, maymove */
67 perror("mremap(grow, maymove)");
69 fprintf(stderr, "grow, maymove: p=%p np=%p: shrink moved?!\n",
76 np = mremap(p, 512*1024, 1024*1024, 0); /* grow, nomove, constrained */
78 perror("mremap(grow, nomove, constrained)");
80 fprintf(stderr, "grow, maymove, constrained: p=%p np=%p (managed to grow without moving?!)\n",
88 np = mremap(p, 512*1024, 1024*1024, MREMAP_MAYMOVE); /* grow, maymove, constrained */
90 perror("mremap(grow, maymove, constrained)");
92 fprintf(stderr, "grow, maymove, constrained: p=%p np=%p (managed to grow without moving?!)\n",