Home | History | Annotate | Download | only in mtest01

Lines Matching defs:maxbytes

83 	unsigned long long original_maxbytes, maxbytes = 0;
108 maxbytes = atoll(optarg);
111 if (maxbytes != 0)
185 /* set maxbytes to the extra amount we want to allocate */
186 maxbytes = D - C;
188 maxpercent, maxbytes / 1024);
190 original_maxbytes = maxbytes;
202 while (pid != 0 && maxbytes > FIVE_HUNDRED_MB) {
206 maxbytes -= FIVE_HUNDRED_MB;
215 if (maxbytes > FIVE_HUNDRED_MB)
218 alloc_bytes = (unsigned long)maxbytes;
221 while (pid != 0 && maxbytes > ONE_GB) {
225 maxbytes -= ONE_GB;
234 if (maxbytes > ONE_GB)
237 alloc_bytes = (unsigned long)maxbytes;
240 while (pid != 0 && maxbytes > THREE_GB) {
244 maxbytes -= THREE_GB;
253 alloc_bytes = MIN(THREE_GB, maxbytes);