| /src/common/lib/libc/string/ |
| memset.c | 58 #define wsize sizeof(u_int) macro 59 #define wmask (wsize - 1) 123 if (length < 3 * wsize) { 144 t = wsize - t; 152 t = length / wsize; 155 dst += wsize;
|
| bcopy.c | 67 #define wsize sizeof(word) macro 68 #define wmask (wsize - 1) 110 if ((u ^ (unsigned long)dst) & wmask || length < wsize) 113 t = wsize - (size_t)(u & wmask); 120 t = length / wsize; 121 TLOOP(*(word *)(void *)dst = *(const word *)(const void *)src; src += wsize; dst += wsize); 128 * (t&wmask) bytes to align, not wsize-(t&wmask). 136 if ((u ^ (unsigned long)dst) & wmask || length <= wsize) 143 t = length / wsize; [all...] |
| /src/lib/libedit/ |
| chartype.h | 65 size_t wsize; member in struct:ct_buffer_t
|
| /src/common/dist/zlib/ |
| inffast.c | 62 unsigned wsize; /* window size or zero if not using window */ local 65 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ 89 wsize = state->wsize; 200 from += wsize - op; 210 from += wsize + wnext - op;
|
| inflate.h | 97 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
|
| deflate.c | 192 uInt wsize = s->w_size; local 198 *p = (Pos)(m >= wsize ? m - wsize : NIL); 200 n = wsize; 205 *p = (Pos)(m >= wsize ? m - wsize : NIL); 256 uInt wsize = s->w_size; local 266 more = wsize; 279 if (s->strstart >= wsize + MAX_DIST(s)) { 281 zmemcpy(s->window, s->window + wsize, (unsigned)wsize - more) [all...] |
| /src/sys/fs/nfs/common/ |
| nfsdiskless.h | 84 int wsize; /* write size in bytes */ member in struct:onfs_args
|
| /src/sys/netipsec/ |
| keydb.h | 150 u_int wsize; /* window size, i.g. 4 bytes */ member in struct:secreplay
|
| /src/usr.bin/resize/ |
| resize.c | 182 static const char *wsize[EMULATIONS] = variable 518 readstring(ttyfp, buf, wsize[emu]); 519 if (sscanf(buf, wsize[emu], &ts.ws_xpixel, &ts.ws_ypixel) != 2) {
|
| /src/lib/libc/db/hash/ |
| hash.c | 483 ssize_t wsize; local 497 if ((wsize = pwrite(fp, whdrp, sizeof(HASHHDR), (off_t)0)) == -1) 500 if (wsize != sizeof(HASHHDR)) {
|
| hash_page.c | 596 ssize_t wsize; local 625 if ((wsize = pwrite(fd, p, (size_t)size, (off_t)page << hashp->BSHIFT)) == -1) 628 if (wsize != size) {
|
| /src/sys/compat/ultrix/ |
| ultrix_fs.c | 319 int wsize; /* write size in bytes */ member in struct:ultrix_nfs_args 393 na.wsize = una.wsize;
|
| /src/sys/fs/nfs/client/ |
| nfs_clbio.c | 692 * break up iovecs accordingly (restricting them to wsize). 712 int wsize; local 715 wsize = nmp->nm_wsize; 723 size = MIN(uiop->uio_resid, wsize); 772 size = MIN(uiop->uio_resid, wsize);
|
| nfs_clrpcops.c | 1584 int wccflag = 0, wsize; local 1600 wsize = nmp->nm_wsize; 1606 len = (tsiz > wsize) ? wsize : tsiz;
|
| /src/sys/nfs/ |
| nfsmount.h | 60 int wsize; /* write size in bytes */ member in struct:nfs_args 97 "b\00soft\0b\01wsize\0b\02rsize\0b\03timeo\0" \
|
| /src/sys/compat/linux/arch/alpha/ |
| linux_osf1.h | 168 osf1_int wsize; member in struct:osf1_nfs_args
|
| /src/sys/compat/sunos/ |
| sunos.h | 30 int wsize; /* write size in bytes */ member in struct:sunos_nfs_args
|
| /src/sys/compat/netbsd32/ |
| netbsd32.h | 1138 int32_t wsize; /* write size in bytes */ member in struct:netbsd32_nfs_args
|
| /src/sys/net/ |
| zlib.c | 388 * and move to the first half later to keep a dictionary of at least wSize 390 * wSize-MAX_MATCH bytes, but this ensures that IO is always 397 /* Actual size of window: 2*wSize, except when the user input buffer 551 * distances are limited to MAX_DIST instead of WSIZE. 1589 uInt wsize = s->w_size; local 1596 more = wsize; 1607 } else if (s->strstart >= wsize+MAX_DIST(s)) { 1609 zmemcpy(s->window, s->window+wsize, (unsigned)wsize); 1610 s->match_start -= wsize; [all...] |