/src/sys/dev/audio/ |
audiobell.c | 114 u_int bufbytes; local in function:audiobell 175 bufbytes = ptrack->usrbuf_blksize * NBLKHW; 176 if (bufbytes < MINBUFSIZE) 177 bufbytes = MINBUFSIZE; 178 else if (bufbytes > MAXBUFSIZE) 179 bufbytes = MAXBUFSIZE; 181 bufbytes = roundup(bufbytes, wave1bytes); 182 bufbytes = uimin(bufbytes, remainbytes) [all...] |
/src/sys/arch/arm/apple/ |
apple_iic.c | 116 uint8_t * const bufbytes = buf; local in function:apple_iic_exec 155 bufbytes[i] = reg & I2C_MRXFIFO_DATA_MASK; 161 IIC_WRITE(sc, I2C_MTXFIFO, bufbytes[i]); 162 IIC_WRITE(sc, I2C_MTXFIFO, bufbytes[buflen - 1] |
|
/src/sys/dev/pcmcia/ |
if_cnw.c | 743 int totbytes, buffer, bufbytes, bufptr, mbytes, n; local in function:cnw_read 753 bufbytes = 0; 793 if (bufbytes == 0) { 795 bufbytes = read16(sc, buffer + 2); 801 device_xname(sc->sc_dev), bufbytes, 806 n = mbytes <= bufbytes ? mbytes : bufbytes; 809 bufbytes -= n;
|