| /src/sys/arch/luna68k/stand/boot/ |
| machdep.c | 108 regdump(int *rp /* must not be register */, int sbytes) 140 if (sbytes > 0) { 155 dumpmem(((int *)&rp) - 1, sbytes, 0); 162 dumpmem((int *)rp[SP], sbytes, 1);
|
| /src/sys/arch/m68k/m68k/ |
| regdump.c | 63 regdump(struct trapframe *tf, int sbytes) 88 if (sbytes > 0) { 98 dumpmem(((int *)(void *)&tf)-1, sbytes, 0); 102 dumpmem((int *)tf->tf_regs[SP], sbytes, 1);
|
| /src/sys/arch/i386/stand/lib/ |
| biosdisk_ll.h | 75 uint16_t sbytes; /* # of bytes per sector */ member in struct:biosdisk_extinfo
|
| bootinfo_biosgeom.c | 102 printf(" sz %d fl %x cyl %d head %d sec %d totsec %"PRId64" sbytes %d\n", 104 ed.totsec, ed.sbytes);
|
| biosdisk.c | 488 if (ed.sbytes >= 512 && 489 (ed.sbytes & (ed.sbytes - 1)) == 0) 490 d->ll.secsize = ed.sbytes; 878 size = ed.totsec * ed.sbytes; 1179 if (ed.sbytes >= 512 && 1180 (ed.sbytes & (ed.sbytes - 1)) == 0) 1181 d->ll.secsize = ed.sbytes;
|
| /src/crypto/external/bsd/openssl/dist/include/internal/ |
| ktls.h | 191 off_t sbytes = 0; local 194 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags); 195 if (ret == -1 && sbytes == 0) 197 return sbytes;
|
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| ktls.h | 207 off_t sbytes = 0; local 210 ret = sendfile(fd, s, off, size, NULL, &sbytes, flags); 211 if (ret == -1 && sbytes == 0) 213 return sbytes;
|
| /src/crypto/external/apache2/openssl/dist/engines/ |
| e_afalg.c | 492 ssize_t sbytes; local 530 sbytes = sendmsg(actx->sfd, &msg, 0); 531 if (sbytes < 0) { 557 sbytes = sendmsg(actx->sfd, &msg, 0); 558 if (sbytes < 0) { 564 if (sbytes != (ssize_t)inl) { 565 ALG_WARN("Cipher operation send bytes %zd != inlen %zd\n", sbytes,
|
| /src/crypto/external/bsd/openssl/dist/engines/ |
| e_afalg.c | 470 ssize_t sbytes; local 508 sbytes = sendmsg(actx->sfd, &msg, 0); 509 if (sbytes < 0) { 535 sbytes = sendmsg(actx->sfd, &msg, 0); 536 if (sbytes < 0) { 542 if (sbytes != (ssize_t) inl) { 543 ALG_WARN("Cipher operation send bytes %zd != inlen %zd\n", sbytes,
|
| /src/crypto/external/bsd/openssl.old/dist/engines/ |
| e_afalg.c | 413 ssize_t sbytes; local 450 sbytes = sendmsg(actx->sfd, &msg, 0); 451 if (sbytes < 0) { 477 sbytes = sendmsg(actx->sfd, &msg, 0); 478 if (sbytes < 0) { 484 if (sbytes != (ssize_t) inl) { 485 ALG_WARN("Cipher operation send bytes %zd != inlen %zd\n", sbytes,
|
| /src/sys/arch/i386/stand/efiboot/ |
| efidisk_ll.c | 103 ed->sbytes = media->BlockSize;
|
| /src/external/gpl3/gcc/dist/gcc/config/sh/ |
| sh-mem.cc | 440 int sbytes = bytes % 4; local 443 if (sbytes == 0) 456 while (sbytes--)
|
| /src/external/gpl3/gcc.old/dist/gcc/config/sh/ |
| sh-mem.cc | 440 int sbytes = bytes % 4; local 443 if (sbytes == 0) 456 while (sbytes--)
|
| /src/external/bsd/dhcpcd/dist/src/ |
| dhcp.c | 1262 ssize_t sbytes; local 1275 sbytes = read(fileno(stdin), buf.buf, sizeof(buf.buf)); 1279 sbytes = dhcp_readfile(ifp->ctx, state->leasefile, 1282 if (sbytes == -1) { 1287 bytes = (size_t)sbytes;
|