Lines Matching defs:have
906 int rv, cur_buf, left, have, tpcnt;
924 have = (left < Out.f_bsize) ? left : Out.f_bsize;
930 have = (tpcnt < have) ? tpcnt : have;
933 if ((rv = g_write(Out.f_dev, Out.f_des, c_p, have)) <
963 int rv, left, have, tpcnt, cur_buf;
986 have = (xfer_cnt < In.f_bsize) ? xfer_cnt : In.f_bsize;
997 have = (tpcnt < have) ? tpcnt : have;
1000 if ((rv = g_read(In.f_dev, In.f_des, c_p, have)) < 0) {
1049 int rv, left, have, tpcnt = 1, xfer_cnt = Fs * BLKSIZ;
1059 have = (xfer_cnt < In.f_bsize) ? xfer_cnt : In.f_bsize;
1067 have = (tpcnt < have) ? tpcnt : have;
1070 if ((rv = g_read(In.f_dev, In.f_des, c_p, have)) < 0) {
1090 have = (left < Out.f_bsize) ? left : Out.f_bsize;
1096 have = (tpcnt < have) ? tpcnt : have;
1099 if ((rv = g_write(Out.f_dev, Out.f_des, c_p, have)) <