Lines Matching refs:round
73 size_t round; /* amount to round to */ member
85 static int mmvminit(char* file, Void_t* addr, size_t round, Mmvm_t* mm) in mmvminit() argument
87 static int mmvminit(file, addr, round, mm) in mmvminit()
90 size_t round; /* amount to round requests */
124 size = 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) in vmmopen() argument
247 Vmalloc_t* vmmopen(file, base, round) in vmmopen()
250 size_t round; /* amount to round requests */
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;