Lines Matching refs:c_max
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)
50 ssize_t c_max; /* process about this much per chain */
58 if((round = c_max) > 0)
76 rs->c_max = c_max;
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)
100 ssize_t c_max; /* process about this much per chain */
106 if((rs = rsnew(disc)) && rsinit(rs, meth, c_max, type, NiL))