Searched refs:origcnt (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/sys/dev/gpib/
H A Dgpib.c367 _gpibsend(struct gpib_softc *sc, int slave, int sec, void *ptr, int origcnt) argument
376 sc, slave, sec, ptr, origcnt));
383 slave, sec, ptr, origcnt);
402 if (origcnt) {
403 cnt = (*sc->sc_ic->senddata)(sc->sc_ic->cookie, ptr, origcnt);
404 if (cnt != origcnt)
409 return (origcnt);
415 device_xname(sc->sc_dev), slave, sec, cnt, origcnt));
420 _gpibrecv(struct gpib_softc *sc, int slave, int sec, void *ptr, int origcnt) argument
429 sc, slave, sec, ptr, origcnt));
[all...]
/netbsd-current/sys/arch/hp300/stand/common/
H A Dfhpib.c87 int origcnt = cnt; local
119 return origcnt - cnt;
127 int origcnt = cnt; local
155 return origcnt - cnt;
H A Dnhpib.c103 int origcnt = cnt; local
131 return origcnt - cnt;
139 int origcnt = cnt; local
165 return origcnt - cnt;
/netbsd-current/sys/dev/isa/
H A Dcec.c300 cecsendcmds(void *v, void *ptr, int origcnt) argument
305 int cnt = origcnt;
309 sc, ptr, origcnt));
314 return (origcnt - cnt - 1);
316 return (origcnt);
321 cecrecvdata(void *v, void *ptr, int origcnt) argument
326 int cnt = origcnt;
330 sc, ptr, origcnt));
338 return (origcnt - cnt - 1);
342 return (origcnt);
346 cecsenddata(void *v, void *ptr, int origcnt) argument
[all...]
/netbsd-current/sys/arch/hp300/dev/
H A Dfhpib.c235 fhpibsend(struct hpibbus_softc *hs, int slave, int sec, void *ptr, int origcnt) argument
239 int cnt = origcnt;
280 return origcnt;
289 printf("sent %d of %d bytes\n", origcnt-cnt-1, origcnt);
292 return origcnt - cnt - 1;
296 fhpibrecv(struct hpibbus_softc *hs, int slave, int sec, void *ptr, int origcnt) argument
300 int cnt = origcnt;
340 return origcnt;
350 printf("got %d of %d bytes\n", origcnt
[all...]
H A Dnhpib.c296 nhpibsend(struct hpibbus_softc *hs, int slave, int sec, void *ptr, int origcnt) argument
300 int cnt = origcnt;
343 return origcnt;
347 return origcnt - cnt - 1;
351 nhpibrecv(struct hpibbus_softc *hs, int slave, int sec, void *ptr, int origcnt) argument
355 int cnt = origcnt;
392 return origcnt;
397 return origcnt - cnt - 1;

Completed in 182 milliseconds