/src/sys/arch/sun68k/stand/libsa/ |
dev_disk.c | 120 int retry, si_flag, xcnt; local in function:disk_strategy 142 xcnt = (*ops->b_strategy)(si, si_flag); 143 } while ((xcnt <= 0) && (--retry > 0)); 149 printf("disk_strategy: xcnt = %x retries=%d\n", 150 xcnt, RETRY_COUNT - retry); 153 if (xcnt <= 0) 156 *rsize = xcnt;
|
/src/sys/arch/sun68k/stand/tapeboot/ |
dev_tape.c | 146 int si_flag, xcnt; local in function:tape_strategy 163 xcnt = (*ops->b_strategy)(si, si_flag); 168 printf("tape_strategy: xcnt = %x\n", xcnt); 171 /* At end of tape, xcnt == 0 (not an error) */ 172 if (xcnt < 0) 175 *rsize = xcnt;
|
/src/sys/arch/sparc/stand/common/ |
promdev.c | 389 size_t xcnt; local in function:oldmon_strategy 411 xcnt = (*ops->b_strategy)(si, si_flag); 426 xcnt = (*ops->b_strategy)(si, si_flag); 431 printf("disk_strategy: xcnt = %zx\n", xcnt); 434 if (xcnt <= 0) 437 *rsize = xcnt;
|
/src/sys/dev/ic/ |
iha.c | 1774 long xcnt; /* cannot use unsigned!! see code: if (xcnt < 0) */ local in function:iha_state_5 1830 xcnt = scb->buflen - cnt; /* xcnt == bytes xferred */ 1836 xcnt -= le32toh(sg->sg_len); 1837 if (xcnt < 0) { 1838 xcnt += le32toh(sg->sg_len); 1841 htole32(le32toh(sg->sg_addr) + xcnt); 1843 htole32(le32toh(sg->sg_len) - xcnt); 1859 scb->bufaddr += xcnt; [all...] |