/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 in function:inflate_fast 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
|
inflate.c | 137 state->wsize = 0; 357 Update the window with the last wsize (normally 32K) bytes written before 385 if (state->wsize == 0) { 386 state->wsize = 1U << state->wbits; 391 /* copy state->wsize or less output bytes into the circular window */ 392 if (copy >= state->wsize) { 393 zmemcpy(state->window, end - state->wsize, state->wsize); 395 state->whave = state->wsize; 398 dist = state->wsize - state->wnext 1452 unsigned wsize; local in function:inflateCopy [all...] |
deflate.c | 192 uInt wsize = s->w_size; local in function:slide_hash 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 in function:fill_window 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 in typeref:typename:const char * [] 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 | 482 ssize_t wsize; local in function:flush_meta 496 if ((wsize = pwrite(fp, whdrp, sizeof(HASHHDR), (off_t)0)) == -1) 499 if (wsize != sizeof(HASHHDR)) {
|
hash_page.c | 595 ssize_t wsize; local in function:__put_page 624 if ((wsize = pwrite(fd, p, (size_t)size, (off_t)page << hashp->BSHIFT)) == -1) 627 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 in function:nfs_directio_write 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 in function:nfsrpc_writerpc 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 in function:fill_window 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...] |