HomeSort by: relevance | last modified time | path
    Searched defs:sesn (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/x86/x86/
via_padlock.c 136 int sesn, i, cw0; local in function:via_padlock_crypto_newsession
143 sesn = 0;
146 for (sesn = 0; sesn < sc->sc_nsessions; sesn++) {
147 if (sc->sc_sessions[sesn].ses_used == 0) {
148 ses = &sc->sc_sessions[sesn];
154 sesn = sc->sc_nsessions;
155 ses = malloc((sesn + 1) * sizeof(*ses), M_DEVBUF,
159 memcpy(ses, sc->sc_sessions, sesn * sizeof(*ses))
307 int sesn; local in function:via_padlock_crypto_freesession
459 int sesn, err = 0; local in function:via_padlock_crypto_process
    [all...]
  /src/sys/dev/marvell/
mvcesa.c 52 #define MVCESA_SID(crd, sesn) (((crd) << 28) | ((sesn) & 0x0fffffff))
200 int sesn, count, enc, mac, i; local in function:mvcesa_newsession
206 for (sesn = 0; sesn < sc->sc_nsessions; sesn++)
207 if (sc->sc_sessions[sesn].ses_used == 0) {
208 ses = sc->sc_sessions + sesn;
213 sesn = sc->sc_nsessions;
214 ses = malloc((sesn + 1) * sizeof(*ses), M_DEVBUF, M_NOWAIT)
    [all...]
  /src/sys/opencrypto/
cryptodev.c 134 int sesn; member in struct:fcrypt
268 criofcr->sesn = 1;
956 if (fcr->sesn + 1 == 0) return NULL;
958 cse->ses = fcr->sesn++;
1032 fcr->sesn = 1;
1988 st->st_dev = makedev(cdevsw_lookup_major(&crypto_cdevsw), fcr->sesn);
  /src/sys/arch/i386/pci/
glxsb.c 315 int sesn; local in function:glxsb_crypto_newsession
321 for (sesn = 0; sesn < sc->sc_nsessions; sesn++) {
322 if (sc->sc_sessions[sesn].ses_used == 0) {
323 ses = &sc->sc_sessions[sesn];
329 sesn = sc->sc_nsessions;
330 ses = malloc((sesn + 1) * sizeof(*ses), M_DEVBUF, M_NOWAIT);
333 if (sesn != 0) {
334 memcpy(ses, sc->sc_sessions, sesn * sizeof(*ses))
359 int sesn; local in function:glxsb_crypto_freesession
448 int sesn, err = 0; local in function:glxsb_crypto_process
    [all...]
  /src/sys/dev/pci/
ubsec.c 962 int i, sesn; local in function:ubsec_newsession
998 sesn = 0;
1001 for (sesn = 0; sesn < sc->sc_nsessions; sesn++) {
1002 if (sc->sc_sessions[sesn].ses_used == 0) {
1003 ses = &sc->sc_sessions[sesn];
1009 sesn = sc->sc_nsessions;
1010 ses = (struct ubsec_session *)malloc((sesn + 1) *
1014 memcpy(ses, sc->sc_sessions, sesn *
    [all...]

Completed in 16 milliseconds