HomeSort by relevance Sort by last modified time
    Searched refs:wsize (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /bionic/libc/upstream-openbsd/lib/libc/string/
memmove.c 42 #define wsize sizeof(word) macro
43 #define wmask (wsize - 1)
74 if ((t ^ (long)dst) & wmask || length < wsize)
77 t = wsize - (t & wmask);
84 t = length / wsize;
85 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
92 * (t&wmask) bytes to align, not wsize-(t&wmask).
98 if ((t ^ (long)dst) & wmask || length <= wsize)
105 t = length / wsize;
    [all...]
  /device/google/contexthub/firmware/lib/libc/
bcopy.c 45 #define wsize sizeof(word) macro
46 #define wmask (wsize - 1)
93 if ((t ^ (uintptr_t)dst) & wmask || length < wsize)
96 t = wsize - (t & wmask);
103 t = length / wsize;
104 TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
111 * (t&wmask) bytes to align, not wsize-(t&wmask).
117 if ((t ^ (uintptr_t)dst) & wmask || length <= wsize)
124 t = length / wsize;
    [all...]
memset.c 40 #define wsize sizeof(u_int) macro
41 #define wmask (wsize - 1)
83 if (length < 3 * wsize) {
104 t = wsize - t;
112 t = length / wsize;
115 dst += wsize;
  /bionic/libc/kernel/uapi/linux/
nfs4_mount.h 30 int wsize; member in struct:nfs4_mount_data
  /external/kernel-headers/original/uapi/linux/
nfs4_mount.h 31 int wsize; /* 1 */ member in struct:nfs4_mount_data
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
nfs4_mount.h 30 int wsize; /* 1 */ member in struct:nfs4_mount_data
  /external/libedit/src/
chartype.c 64 if (minwsize > conv->wsize) {
65 conv->wsize = minwsize;
66 p = el_realloc(conv->wbuff, conv->wsize * sizeof(*conv->wbuff));
68 conv->wsize = 0;
126 if (len > conv->wsize)
130 ct_mbstowcs(conv->wbuff, s, conv->wsize);
149 if (!conv->wsize)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inflate.h 93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
inffast.c 80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
218 from += wsize - op;
228 from += wsize + wnext - op;
infback.c 65 state->wsize = 1U << windowBits;
214 left = state->wsize; \
287 left = state->wsize;
485 if (state->whave < state->wsize)
486 state->whave = state->wsize - left;
487 inflate_fast(strm, state->wsize);
577 if (state->offset > state->wsize - (state->whave < state->wsize ?
588 copy = state->wsize - state->offset;
609 if (left < state->wsize) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inflate.h 89 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
inffast.c 80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
196 from += wsize - op;
206 from += wsize + write - op;
infback.c 56 state->wsize = 1U << windowBits;
205 left = state->wsize; \
278 left = state->wsize;
468 if (state->whave < state->wsize)
469 state->whave = state->wsize - left;
470 inflate_fast(strm, state->wsize);
560 if (state->offset > state->wsize - (state->whave < state->wsize ?
571 copy = state->wsize - state->offset;
592 if (left < state->wsize) {
    [all...]
  /external/python/cpython2/Modules/zlib/
inflate.h 93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
inffast.c 80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
218 from += wsize - op;
228 from += wsize + wnext - op;
  /external/syslinux/com32/lib/zlib/
inflate.h 93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
inffast.c 80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
218 from += wsize - op;
228 from += wsize + wnext - op;
  /hardware/qcom/msm8998/json-c/
json_util.c 105 unsigned int wpos, wsize; local
123 wsize = (unsigned int)(strlen(json_str) & UINT_MAX); /* CAW: probably unnecessary, but the most 64bit safe */
125 while(wpos < wsize) {
126 if((ret = write(fd, json_str + wpos, wsize-wpos)) < 0) {
  /toolchain/binutils/binutils-2.27/zlib/
inflate.h 93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
inffast.c 80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
218 from += wsize - op;
228 from += wsize + wnext - op;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffast.c 63 unsigned wsize; /* window size or zero if not using window */ local
66 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
90 wsize = state->wsize;
201 from += wsize - op;
211 from += wsize + wnext - op;
  /external/python/cpython3/Modules/zlib/
inffast.c 63 unsigned wsize; /* window size or zero if not using window */ local
66 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
90 wsize = state->wsize;
201 from += wsize - op;
211 from += wsize + wnext - op;
  /external/zlib/src/
inffast.c 63 unsigned wsize; /* window size or zero if not using window */ local
66 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
90 wsize = state->wsize;
201 from += wsize - op;
211 from += wsize + wnext - op;
  /external/zlib/src/contrib/masmx64/
inffas8664.c 91 /* 56 28 */ unsigned char FAR *window;/* size of window, wsize!=0 */
96 /* 92 48 */ unsigned wsize; /* window size */ member in struct:inffast_ar
132 ar.wsize = state->wsize;
  /toolchain/binutils/binutils-2.27/zlib/contrib/masmx64/
inffas8664.c 91 /* 56 28 */ unsigned char FAR *window;/* size of window, wsize!=0 */
96 /* 92 48 */ unsigned wsize; /* window size */ member in struct:inffast_ar
132 ar.wsize = state->wsize;

Completed in 1296 milliseconds

1 2 3 4 5 6