Lines Matching defs:round
73 size_t round; /* amount to round to */
85 static int mmvminit(char* file, Void_t* addr, size_t round, Mmvm_t* mm)
87 static int mmvminit(file, addr, round, mm)
90 size_t round; /* amount to round requests */
124 size = (off_t)round;
141 hdr->round = round;
184 ((nsize % disc->round) < (disc->round/2) ? disc->round/2 : 0);
185 csize = ROUND(csize, disc->round);
245 Vmalloc_t* vmmopen(char* file, Void_t* base, size_t round)
247 Vmalloc_t* vmmopen(file, base, round)
250 size_t round; /* amount to round requests */
261 /* set the amount to round up to on each memory request */
263 if(round < MM_ROUND)
264 round = MM_ROUND;
265 round = ROUND(round, _Vmpagesize);
267 if((fd = mmvminit(file, base, round, &mm)) < 0)
277 mmdc->disc.round = mm.round;