/src/sys/arch/x86/include/ |
via_padlock.h | 50 struct swcr_data *swd; member in struct:via_padlock_session
|
/src/sys/arch/x86/x86/ |
via_padlock.c | 135 struct swcr_data *swd; local in function:via_padlock_crypto_newsession 246 swd = malloc(sizeof(struct swcr_data), M_CRYPTO_DATA, 248 if (swd == NULL) { 252 ses->swd = swd; 254 swd->sw_ictx = malloc(axf->ctxsize, 256 if (swd->sw_ictx == NULL) { 261 swd->sw_octx = malloc(axf->ctxsize, 263 if (swd->sw_octx == NULL) { 271 axf->Init(swd->sw_ictx) 305 struct swcr_data *swd; local in function:via_padlock_crypto_freesession [all...] |
/src/sys/compat/linux/arch/i386/ |
linux_ptrace.c | 80 long swd; member in struct:linux_fpctx
|
/src/sys/compat/linux/arch/amd64/ |
linux_machdep.h | 47 u_int16_t swd; member in struct:linux__fpstate
|
/src/bin/csh/ |
dir.c | 107 struct stat swd, shp; local in function:dinit 113 stat(ecp, &swd) != -1 && stat(short2str(hp), &shp) != -1 && 114 swd.st_dev == shp.st_dev && swd.st_ino == shp.st_ino) 123 if (stat(cwd, &shp) != -1 && swd.st_dev == shp.st_dev && 124 swd.st_ino == shp.st_ino)
|
/src/sys/opencrypto/ |
cryptosoft.c | 761 struct swcr_data **swd; local in function:swcr_newsession 805 swd = &tmp; 807 *swd = kmem_zalloc(sizeof **swd, KM_NOSLEEP); 808 if (*swd == NULL) { 813 first = *swd; 850 error = txf->setkey(&((*swd)->sw_kschedule), 856 (*swd)->sw_exf = txf; 890 (*swd)->sw_ictx = kmem_alloc(axf->ctxsize, KM_NOSLEEP); 891 if ((*swd)->sw_ictx == NULL) 1030 struct swcr_data *swd, *swd0; local in function:swcr_freesession_internal 1125 struct swcr_data *swd; local in function:swcr_freesession [all...] |
/src/sys/dev/ic/ |
isp_library.c | 2050 uint16_t swd = ct->rsp.m0.ct_scsi_status & 0xff; local in function:isp_send_tgt_cmd 2052 if ((ct->ct_flags & CT2_SENDSTATUS) && (swd || ct->ct_resid)) { 2071 if (swd == SCSI_CHECK && snsptr && snslen) { 2074 swd |= CT2_SNSLEN_VALID; 2077 swd |= CT2_DATA_UNDER; 2079 swd |= CT2_DATA_OVER; 2081 ct2->rsp.m1.ct_scsi_status = swd; 2096 uint16_t swd = ct->ct_scsi_status & 0xff; local in function:isp_send_tgt_cmd 2100 if ((ct->ct_flags & CT7_SENDSTATUS) && (swd || ct->ct_resid)) { 2119 if (swd == SCSI_CHECK && snsptr && snslen) [all...] |