Searched defs:round (Results 1 - 7 of 7) sorted by relevance
/ast/src/lib/librecsort/ |
H A D | rsopen.c | 56 ssize_t round; local 58 if((round = c_max) > 0) 59 round /= 4; 66 rs->vmdisc.round = round <= 0 ? RS_RESERVE : round;
|
H A D | rsmerge.c | 404 vmdisc.round = RS_RESERVE; 430 { ssize_t round; local 431 if((round = rs->c_max) > 0) 432 round /= 4; 433 sfsetbuf(f,NIL(Void_t*),round < RS_RESERVE ? RS_RESERVE : round);
|
/ast/src/lib/libast/sfio/ |
H A D | sfrd.c | 137 { reg ssize_t a, round; local 169 if(r > (round = (1 + (n+a)/f->size)*f->size) ) 170 r = round;
|
/ast/src/lib/libardir/ |
H A D | ar-omf.c | 115 #define round(a,b) (((a)+(b)-1) &~ ((b)-1)) macro 311 addr = addrstart + round(addr-addrstart,pagesize);
|
/ast/src/lib/libast/include/ |
H A D | vmalloc.h | 65 size_t round; /* rounding requirement */ member in struct:_vmdisc_s
|
/ast/src/lib/libast/vmalloc/ |
H A D | vmbest.c | 531 reg size_t size, segsize, round; local 552 if((round = vm->disc->round) == 0) 553 round = _Vmpagesize; 554 if(size > COMPACT*vd->incr && vd->incr > round)
|
/ast/src/cmd/ksh93/sh/ |
H A D | streval.c | 58 #define round(x,size) (((x)+(size)-1)&~((size)-1)) macro 59 #define stakpush(v,val,type) ((((v)->offset=round(staktell(),pow2size(sizeof(type)))),\ 62 #define roundptr(ep,cp,type) (((unsigned char*)(ep))+round(cp-((unsigned char*)(ep)),pow2size(sizeof(type))))
|
Completed in 1087 milliseconds