Lines Matching refs:t_ispeed
210 tp->t_curstate.t_ispeed = B0; in ttcompatopen()
837 cb->sg_ispeed = tp->t_curstate.t_ispeed > B38400 ? B38400 : in ttcompat_ioctl_ack()
838 tp->t_curstate.t_ispeed; in ttcompat_ioctl_ack()
908 tp->t_curstate.t_ispeed <= B38400) in ttcompat_ioctl_ack()
909 tp->t_curstate.t_ispeed = tp->t_new_sgttyb.sg_ispeed; in ttcompat_ioctl_ack()
1150 if (csp->t_ospeed != csp->t_ispeed) { in from_compat()
1151 if (csp->t_ispeed > (CIBAUD >> IBSHIFT)) { in from_compat()
1153 (((csp->t_ispeed - (CIBAUD >> IBSHIFT) - 1) << in from_compat()
1156 termiosp->c_cflag |= (csp->t_ispeed << IBSHIFT) & in from_compat()
1160 if (csp->t_ispeed == 0) in from_compat()
1163 if (csp->t_ispeed == B110 || csp->t_xflags & STOPB) in from_compat()
1314 csp->t_ispeed = (termiosp->c_cflag & CIBAUD) >> IBSHIFT; in to_compat()
1319 csp->t_ispeed += (CIBAUD >> IBSHIFT) + 1; in to_compat()
1321 if (csp->t_ispeed == 0) in to_compat()
1322 csp->t_ispeed = csp->t_ospeed; in to_compat()
1323 if ((termiosp->c_cflag & CSTOPB) && csp->t_ispeed != B110) in to_compat()