Searched refs:wsize (Results 1 - 8 of 8) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/netkey/
H A Dkeydb.c176 keydb_newsecreplay(wsize)
177 size_t wsize;
193 if (wsize != 0) {
194 p->bitmap = (caddr_t)_MALLOC(wsize, M_SECA, M_NOWAIT);
197 p->bitmap = (caddr_t)_MALLOC(wsize, M_SECA, M_WAITOK);
204 bzero(p->bitmap, wsize);
206 p->wsize = wsize;
H A Dkeydb.h110 u_int wsize; /* window size, i.g. 4 bytes */ member in struct:secreplay
H A Dkey_debug.c600 printf(" secreplay{ count=%u wsize=%u seq=%u lastseq=%u",
601 rpl->count, rpl->wsize, rpl->seq, rpl->lastseq);
610 for (len = 0; len < rpl->wsize; len++) {
H A Dkey.c4052 p->sadb_sa_replay = (sav->replay != NULL ? sav->replay->wsize : 0);
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs.h168 int wsize; /* write size in bytes */ member in struct:nfs_args
195 int wsize; /* write size in bytes */ member in struct:nfs_args4
221 int wsize; /* write size in bytes */ member in struct:nfs_args3
247 int wsize; /* write size in bytes */ member in struct:user_nfs_args
274 int wsize; /* write size in bytes */ member in struct:user_nfs_args4
299 int wsize; /* write size in bytes */ member in struct:user_nfs_args3
H A Dnfs_vfsops.c1257 args.wsize = tempargs.wsize;
1608 if ((argp->flags & NFSMNT_WSIZE) && argp->wsize > 0) {
1609 nmp->nm_wsize = argp->wsize;
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Dipsec.c2458 if (replay->wsize == 0) {
2464 frlast = replay->wsize - 1;
2465 wsizeb = replay->wsize << 3;
2530 if (replay->wsize == 0)
2534 frlast = replay->wsize - 1;
2535 wsizeb = replay->wsize << 3;
2544 bzero(replay->bitmap, replay->wsize);
2557 vshiftl((unsigned char *) replay->bitmap, diff, replay->wsize);
2561 bzero(replay->bitmap, replay->wsize);
2617 * wsize
[all...]
/macosx-10.5.8/xnu-1228.15.4/libkern/
H A Dzlib.c1565 uInt wsize = s->w_size; local
1572 more = wsize;
1583 } else if (s->strstart >= wsize+MAX_DIST(s)) {
1585 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1586 s->match_start -= wsize;
1587 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1588 s->block_start -= (long) wsize;
1600 *p = (Pos)(m >= wsize ? m-wsize
[all...]

Completed in 146 milliseconds