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

/darwin-on-arm/xnu/libsyscall/wrappers/
H A Dmemcpy.c41 #define wsize sizeof(word) macro
42 #define wmask (wsize - 1)
76 if ((t ^ (uintptr_t)dst) & wmask || length < wsize)
79 t = wsize - (t & wmask);
86 t = length / wsize;
87 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
94 * (t&wmask) bytes to align, not wsize-(t&wmask).
100 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize)
107 t = length / wsize;
[all...]
/darwin-on-arm/xnu/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.h119 u_int wsize; /* window size, i.g. 4 bytes */ member in struct:secreplay
H A Dkey_debug.c647 printf(" secreplay{ count=%u wsize=%u seq=%u lastseq=%u",
648 rpl->count, rpl->wsize, rpl->seq, rpl->lastseq);
657 for (len = 0; len < rpl->wsize; len++) {
H A Dkey.c4509 p->sadb_sa_replay = (sav->replay != NULL ? sav->replay->wsize : 0);
/darwin-on-arm/xnu/libkern/zlib/
H A Dinflate.h116 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
H A Dinffast.c116 unsigned wsize; /* window size or zero if not using window */ local
119 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
143 wsize = state->wsize;
232 from += wsize - op;
242 from += wsize + write - op;
H A Dinfback.c85 state->wsize = 1U << windowBits;
234 left = state->wsize; \
307 left = state->wsize;
497 if (state->whave < state->wsize)
498 state->whave = state->wsize - left;
499 inflate_fast(strm, state->wsize);
589 if (state->offset > state->wsize - (state->whave < state->wsize ?
600 copy = state->wsize - state->offset;
621 if (left < state->wsize) {
[all...]
H A Dinflate.c145 state->wsize = 0;
339 Update the window with the last wsize (normally 32K) bytes written before
370 if (state->wsize == 0) {
371 state->wsize = 1U << state->wbits;
376 /* copy state->wsize or less output bytes into the circular window */
378 if (copy >= state->wsize) {
379 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
381 state->whave = state->wsize;
384 dist = state->wsize
[all...]
H A Ddeflate.c1301 uInt wsize = s->w_size; local
1309 more = wsize;
1322 if (s->strstart >= wsize+MAX_DIST(s)) {
1324 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1325 s->match_start -= wsize;
1326 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1327 s->block_start -= (long) wsize;
1340 *p = (Pos)(m >= wsize ? m-wsize
[all...]
/darwin-on-arm/xnu/libkern/zlib/intel/
H A DinffastS.s54 #define wsize -68(%ebp) // wsize = state->wsize;
66 #define write_wsize -24(%ebp) // write+wsize
97 movl 40(%edx), %ecx // state->wsize
98 movl %ecx, wsize // wsize = state->wsize;
136 addl wsize, %eax
137 movl %eax, write_wsize // write+wsize
[all...]
/darwin-on-arm/xnu/bsd/netinet6/
H A Dipsec.c2680 if (replay->wsize == 0) {
2686 frlast = replay->wsize - 1;
2687 wsizeb = replay->wsize << 3;
2752 if (replay->wsize == 0)
2756 frlast = replay->wsize - 1;
2757 wsizeb = replay->wsize << 3;
2766 bzero(replay->bitmap, replay->wsize);
2779 vshiftl((unsigned char *) replay->bitmap, diff, replay->wsize);
2783 bzero(replay->bitmap, replay->wsize);
2839 * wsize
[all...]
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs.h233 int wsize; /* write size in bytes */ member in struct:nfs_args
277 int wsize; /* write size in bytes */ member in struct:user_nfs_args
H A Dnfs_vfsops.c1506 args.wsize = tempargs.wsize;
1651 if ((args.flags & NFSMNT_WSIZE) && (args.wsize > 0))
1707 xb_add_32(error, &xb, args.wsize);

Completed in 124 milliseconds