| /src/sys/opencrypto/ |
| cryptosoft.c | 478 memcpy(&ctx, sw->sw_ictx, axf->ctxsize); 518 memcpy(&ctx, sw->sw_octx, axf->ctxsize); 602 memcpy(&ctx, swa->sw_ictx, axf->ctxsize); 890 (*swd)->sw_ictx = kmem_alloc(axf->ctxsize, KM_NOSLEEP); 896 (*swd)->sw_octx = kmem_alloc(axf->ctxsize, KM_NOSLEEP); 934 (*swd)->sw_ictx = kmem_alloc(axf->ctxsize, KM_NOSLEEP); 965 (*swd)->sw_ictx = kmem_alloc(axf->ctxsize, KM_NOSLEEP); 987 (*swd)->sw_ictx = kmem_alloc(axf->ctxsize, KM_NOSLEEP); 1072 explicit_memset(swd->sw_ictx, 0, axf->ctxsize); 1073 kmem_free(swd->sw_ictx, axf->ctxsize); [all...] |
| cryptosoft_xform.c | 65 int ctxsize; member in struct:swcr_auth_hash
|
| /src/lib/libc/hash/ |
| hmac.c | 50 size_t ctxsize; member in struct:hmac
|
| /src/sys/arch/x86/x86/ |
| via_padlock.c | 259 swd->sw_ictx = malloc(axf->ctxsize, 266 swd->sw_octx = malloc(axf->ctxsize, 325 memset(swd->sw_ictx, 0, axf->ctxsize); 329 memset(swd->sw_octx, 0, axf->ctxsize);
|
| /src/sys/dev/pci/ |
| hifn7751.c | 1064 int ctxsize; local 1070 ctxsize = 128; 1072 ctxsize = 512; 1077 sc->sc_maxses = 32768 / ctxsize; 1080 ((sc->sc_ramsize - 32768) / ctxsize);
|
| /src/sys/arch/sparc64/sparc64/ |
| pmap.c | 1311 size_t ctxsize; local 1320 ctxsize = sizeof(paddr_t)*ci->ci_numctx; 1321 ci->ci_ctxbusy = (paddr_t *)kdata_alloc(ctxsize, sizeof(uint64_t)); 1322 memset(ci->ci_ctxbusy, 0, ctxsize);
|
| /src/sys/arch/sparc/sparc/ |
| pmap.c | 4030 psize_t ctxsize, size; local 4045 ctxsize = (sc->mmu_ncontext * sizeof(int) + pagesz - 1) & -pagesz; 4046 alignment = ctxsize; 4049 size = ctxsize + pagesz; 4066 regtable = (u_int *)(va + ctxsize); 4071 regtable_pa = (u_int *)(pa + ctxsize);
|