Lines Matching refs:t_ispeed
739 cb->sg_ispeed = tp->t_curstate.t_ispeed > B38400 ? B38400 : in ttcompat_ioctl_ack()
740 tp->t_curstate.t_ispeed; in ttcompat_ioctl_ack()
810 tp->t_curstate.t_ispeed <= B38400) in ttcompat_ioctl_ack()
811 tp->t_curstate.t_ispeed = tp->t_new_sgttyb.sg_ispeed; in ttcompat_ioctl_ack()
1052 if (csp->t_ospeed != csp->t_ispeed) { in from_compat()
1053 if (csp->t_ispeed > (CIBAUD >> IBSHIFT)) { in from_compat()
1055 (((csp->t_ispeed - (CIBAUD >> IBSHIFT) - 1) << in from_compat()
1058 termiosp->c_cflag |= (csp->t_ispeed << IBSHIFT) & in from_compat()
1062 if (csp->t_ispeed == 0) in from_compat()
1065 if (csp->t_ispeed == B110 || csp->t_xflags & STOPB) in from_compat()
1216 csp->t_ispeed = (termiosp->c_cflag & CIBAUD) >> IBSHIFT; in to_compat()
1221 csp->t_ispeed += (CIBAUD >> IBSHIFT) + 1; in to_compat()
1223 if (csp->t_ispeed == 0) in to_compat()
1224 csp->t_ispeed = csp->t_ospeed; in to_compat()
1225 if ((termiosp->c_cflag & CSTOPB) && csp->t_ispeed != B110) in to_compat()