Lines Matching refs:tmp
40 int tmp; in gdbstub_io_init() local
68 tmp = *gdbstub_port->rx_icr; in gdbstub_io_init()
86 tmp = *gdbstub_port->_control; in gdbstub_io_init()
101 unsigned xdiv, tmp; in gdbstub_io_set_baud() local
118 tmxbr = tmp = (ioclk / (baud * xdiv) + 4) / 8 - 1; in gdbstub_io_set_baud()
119 if (tmp > 0 && tmp <= 65535) in gdbstub_io_set_baud()
123 tmxbr = tmp = (ioclk / (baud * 8 * xdiv) + 4) / 8 - 1; in gdbstub_io_set_baud()
124 if (tmp > 0 && tmp <= 65535) in gdbstub_io_set_baud()
128 tmxbr = tmp = (ioclk / (baud * 32 * xdiv) + 4) / 8 - 1; in gdbstub_io_set_baud()
129 if (tmp > 0 && tmp <= 65535) in gdbstub_io_set_baud()
136 tmxbr = tmp = (ioclk / (baud * xdiv) + 4) / 8 - 1; in gdbstub_io_set_baud()
137 if (tmp > 0 && tmp <= 255) in gdbstub_io_set_baud()
141 tmxbr = tmp = (ioclk / (baud * 8 * xdiv) + 4) / 8 - 1; in gdbstub_io_set_baud()
142 if (tmp > 0 && tmp <= 255) in gdbstub_io_set_baud()
146 tmxbr = tmp = (ioclk / (baud * 32 * xdiv) + 4) / 8 - 1; in gdbstub_io_set_baud()
147 if (tmp > 0 && tmp <= 255) in gdbstub_io_set_baud()