baud 406 dev/usb/ucycom.c uint32_t baud = 0;
baud 431 dev/usb/ucycom.c baud = t->c_ospeed;
baud 465 dev/usb/ucycom.c DPRINTF(("ucycom_param: setting %d baud, %d-%c-%d (%d)\n", baud,
baud 471 dev/usb/ucycom.c report[0] = baud & 0xff;
baud 472 dev/usb/ucycom.c report[1] = (baud >> 8) & 0xff;
baud 473 dev/usb/ucycom.c report[2] = (baud >> 16) & 0xff;
baud 474 dev/usb/ucycom.c report[3] = (baud >> 24) & 0xff;
baud 483 dev/usb/ucycom.c sc->sc_baud = baud;
baud 576 dev/usb/ucycom.c int err, cfg, baud;
baud 582 dev/usb/ucycom.c baud = (report[3] << 24) + (report[2] << 16) + (report[1] << 8) + report[0];
baud 583 dev/usb/ucycom.c DPRINTF(("ucycom_configure: device reports %d baud, %d-%c-%d (%d)\n", baud,