Lines Matching refs:boff
105 le_dec_copytobuf_gap2(struct lance_softc *sc, void *fromv, int boff, int len)
111 if (boff & 0x1) {
113 bptr = ((volatile uint16_t *)buf) + (boff - 1);
118 bptr = ((volatile uint16_t *)buf) + boff;
130 le_dec_copyfrombuf_gap2(struct lance_softc *sc, void *tov, int boff, int len)
137 if (boff & 0x1) {
139 bptr = ((volatile uint16_t *)buf) + (boff - 1);
144 bptr = ((volatile uint16_t *)buf) + boff;
157 le_dec_zerobuf_gap2(struct lance_softc *sc, int boff, int len)
162 if ((unsigned int)boff & 0x1) {
163 bptr = ((volatile uint16_t *)buf) + (boff - 1);
168 bptr = ((volatile uint16_t *)buf) + boff;