Lines Matching defs:meth
45 int rsinit(reg Rs_t* rs, Rsmethod_t* meth, ssize_t c_max, int type, Rskey_t* key)
47 int rsinit(rs, meth, c_max, type, key)
49 Rsmethod_t* meth; /* sorting method */
72 if(!(rs->methdata = (Void_t*)vmresize(Vmheap,NIL(Void_t*),meth->size,VM_RSZERO)) )
75 rs->meth = meth;
95 Rs_t* rsopen(Rsdisc_t* disc, Rsmethod_t* meth, ssize_t c_max, int type)
97 Rs_t* rsopen(disc, meth, c_max, type)
99 Rsmethod_t* meth; /* sorting method */
106 if((rs = rsnew(disc)) && rsinit(rs, meth, c_max, type, NiL))