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

12345

/netbsd-current/external/lgpl3/gmp/dist/mpz/
H A Daors.h54 mp_size_t usize, vsize, wsize; local
74 wsize = abs_usize + 1;
75 wp = MPZ_REALLOC (w, wsize);
90 wsize = abs_usize;
91 MPN_NORMALIZE (wp, wsize);
93 wsize = -wsize;
98 wsize = abs_usize;
99 MPN_NORMALIZE (wp, wsize);
101 wsize
[all...]
H A Dcfdiv_q_2exp.c43 mp_size_t wsize, usize, abs_usize, limb_cnt, i; local
51 wsize = abs_usize - limb_cnt;
52 if (wsize <= 0)
61 wp = MPZ_REALLOC (w, wsize+1);
75 round |= rmask & mpn_rshift (wp, up + limb_cnt, wsize, cnt);
76 wsize -= (wp[wsize - 1] == 0);
79 MPN_COPY_INCR (wp, up + limb_cnt, wsize);
83 if (wsize != 0)
86 cy = mpn_add_1 (wp, wp, wsize, CNST_LIM
[all...]
H A Daorsmul.c53 mp_size_t xsize, ysize, tsize, wsize, wsize_signed; local
86 wsize = ABS(wsize_signed);
89 wp = MPZ_REALLOC (w, MAX (wsize, tsize) + 1);
110 mp_size_t usize = wsize;
117 tsize = wsize;
119 wsize = usize;
123 wp[wsize] = c;
124 wsize += (c != 0);
129 mp_size_t usize = wsize;
136 tsize = wsize;
[all...]
H A Dmul.c41 mp_size_t wsize; local
103 wsize = usize + vsize;
104 if (ALLOC (w) < wsize)
117 ALLOC (w) = wsize;
118 wp = __GMP_ALLOCATE_FUNC_LIMBS (wsize);
146 cy_limb = wp[wsize - 1];
153 wsize -= cy_limb == 0;
155 SIZ (w) = sign_product < 0 ? -wsize : wsize;
H A Daors_ui.h62 mp_size_t usize, wsize; local
100 wsize = VARIATION_NEG (abs_usize + cy);
109 wsize = VARIATION_NEG 1;
115 wsize = VARIATION_UNNEG (abs_usize - (wp[abs_usize - 1] == 0));
119 SIZ (w) = wsize;
H A Daorsmul_i.c71 mp_size_t xsize, wsize, wsize_signed, new_wsize, min_size, dsize; local
97 wsize = ABS (wsize_signed);
99 new_wsize = MAX (wsize, xsize);
102 min_size = MIN (wsize, xsize);
112 dsize = xsize - wsize;
144 if (wsize >= xsize)
147 if (wsize != xsize)
148 cy = mpn_sub_1 (wp+xsize, wp+xsize, wsize-xsize, cy);
161 else /* wsize < xsize */
169 mpn_com (wp, wp, wsize);
[all...]
/netbsd-current/common/lib/libc/string/
H A Dbcopy.c67 #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...]
H A Dmemset.c58 #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;
/netbsd-current/external/bsd/nvi/dist/clib/
H A Dmemset.c56 #define wsize sizeof(u_int) macro
57 #define wmask (wsize - 1)
98 if (length < 3 * wsize) {
119 t = wsize - t;
127 t = length / wsize;
130 dst += wsize;
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DData_window.cc46 wsize = 0;
80 wsize = fsize;
104 if (span->offset < woffset || span->offset + minSize > woffset + wsize)
122 munmap ((caddr_t) base, (size_t) wsize);
126 wsize = page_size * ((MINBUFSIZE + page_size - 1) / page_size);
127 if (span->offset + minSize > woffset + wsize)
129 wsize += page_size * ((span->offset + minSize -
130 woffset - wsize + page_size - 1) / page_size);
131 base = (void *) mmap (0, (size_t) wsize, PROT_READ, MAP_SHARED, fd, woffset);
143 wsize
[all...]
/netbsd-current/lib/libedit/
H A Dchartype.c71 ct_conv_wbuff_resize(ct_buffer_t *conv, size_t wsize) argument
75 if (wsize <= conv->wsize)
78 conv->wsize = wsize;
80 p = el_realloc(conv->wbuff, conv->wsize * sizeof(*conv->wbuff));
82 conv->wsize = 0;
134 if (conv->wsize < ++len)
138 mbstowcs(conv->wbuff, s, conv->wsize);
156 if (conv->wsize <
[all...]
/netbsd-current/external/bsd/am-utils/dist/include/
H A Dnfs_common.h44 u_long wsize; member in struct:nfs_common_args
87 nap->wsize = a.wsize; \
100 a.wsize = nap->wsize; \
/netbsd-current/external/lgpl3/gmp/dist/tests/mpz/
H A Dt-mul.c146 mp_size_t wsize; local
173 wsize = usize + vsize;
174 wsize -= wp[wsize - 1] == 0;
175 MPZ_REALLOC (w, wsize);
176 MPN_COPY (PTR(w), wp, wsize); local
178 SIZ(w) = sign_product < 0 ? -wsize : wsize;
/netbsd-current/external/cddl/osnet/dist/uts/common/zmod/
H A Dinflate.h91 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
H A Dinffast.c82 unsigned wsize; /* window size or zero if not using window */ local
85 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
109 wsize = state->wsize;
198 from += wsize - op;
208 from += wsize + write - op;
/netbsd-current/sys/fs/nfs/common/
H A Dnfsdiskless.h84 int wsize; /* write size in bytes */ member in struct:onfs_args
/netbsd-current/external/gpl3/gdb.old/dist/zlib/
H A Dinffast.c63 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;
/netbsd-current/external/gpl3/binutils.old/dist/zlib/
H A Dinffast.c63 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;
/netbsd-current/common/dist/zlib/
H A Dinffast.c65 unsigned wsize; /* window size or zero if not using window */ local
68 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
92 wsize = state->wsize;
203 from += wsize - op;
213 from += wsize + wnext - op;
/netbsd-current/external/gpl3/binutils/dist/zlib/
H A Dinffast.c63 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;
/netbsd-current/external/gpl3/gdb/dist/zlib/
H A Dinffast.c63 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;
/netbsd-current/external/gpl3/gdb.old/dist/zlib/contrib/masmx64/
H A Dinffas8664.c91 /* 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;
/netbsd-current/external/gpl3/binutils/dist/zlib/contrib/masmx64/
H A Dinffas8664.c91 /* 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;
/netbsd-current/external/gpl3/gdb/dist/zlib/contrib/masmx64/
H A Dinffas8664.c91 /* 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;
/netbsd-current/external/gpl3/binutils.old/dist/zlib/contrib/masmx64/
H A Dinffas8664.c91 /* 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 423 milliseconds

12345