Searched refs:tsize (Results 1 - 25 of 167) sorted by relevance

1234567

/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpf/
H A Ddiv_ui.c31 mp_size_t rsize, tsize; local
73 tsize = 1 + prec;
74 tp = TMP_ALLOC_LIMBS (tsize + 1);
76 if (usize > tsize)
78 up += usize - tsize;
79 usize = tsize;
84 MPN_ZERO (tp, tsize - usize);
85 rtp = tp + (tsize - usize);
91 mpn_divmod_1 (rp, tp, tsize, (mp_limb_t) v);
92 q_limb = rp[tsize
[all...]
H A Dsqrt.c57 mp_size_t prec, tsize; local
78 tsize = 2 * prec - expodd;
82 /* root size is ceil(tsize/2), this will be our desired "prec" limbs */
83 ASSERT ((tsize + 1) / 2 == prec);
85 tp = TMP_ALLOC_LIMBS (tsize);
87 if (usize > tsize)
89 up += usize - tsize;
90 usize = tsize;
91 MPN_COPY (tp, up, tsize);
95 MPN_ZERO (tp, tsize
[all...]
H A Dui_div.c33 mp_size_t rsize, prospective_rsize, zeros, tsize, high_zero; local
64 tsize = 1 + zeros; /* u with zeros */
70 tp = TMP_ALLOC_LIMBS (tsize);
78 mp_size_t size = vsize + tsize + (rp == vp ? vsize : 0);
81 new_vp = tp + tsize;
91 MPN_ZERO (tp, tsize-1);
93 tp[tsize - 1] = u & GMP_NUMB_MASK;
97 /* tsize-vsize+1 == rsize, so tsize >= rsize. rsize == prec+1 >= 2,
98 so tsize >
[all...]
H A Dset_q.c66 mp_size_t prec, nsize, dsize, qsize, prospective_qsize, tsize, zeros; local
99 tsize = nsize + zeros; /* possible copy of n */
107 tp = TMP_ALLOC_LIMBS (tsize);
112 mp_size_t size = dsize + (zeros > 0 ? tsize : 0);
123 nsize = tsize;
H A Ddiv.c50 mp_size_t usize, vsize, rsize, prospective_rsize, tsize, zeros; local
91 tsize = usize + zeros; /* size for possible copy of u */
96 tp = TMP_ALLOC_LIMBS (tsize + 1); /* +1 for mpn_div_q's scratch needs */
100 usize = tsize;
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpz/
H A Daorsmul.c43 mp_size_t xsize, ysize, tsize, wsize, wsize_signed; local
78 tsize = xsize + ysize;
79 MPZ_REALLOC (w, MAX (wsize, tsize) + 1);
87 tsize -= (high == 0);
88 SIZ(w) = (sub >= 0 ? tsize : -tsize);
93 tp = TMP_ALLOC_LIMBS (tsize);
96 tsize -= (high == 0);
97 ASSERT (tp[tsize-1] != 0);
103 if (usize < tsize)
[all...]
H A Dout_raw.c57 size_t tsize, ssize; local
62 tsize = ROUND_UP_MULTIPLE ((unsigned) 4, BYTES_PER_MP_LIMB) + bytes;
64 tp = __GMP_ALLOCATE_FUNC_TYPE (tsize, char);
160 (*__gmp_free_func) (tp, tsize);
/netbsd-6-1-5-RELEASE/usr.bin/tftp/
H A Dextern.h41 extern int tsize;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/c-c++-common/dfp/
H A Dmodes.c9 int tsize[sizeof (decimal128) == 16 ? 1 : -1]; variable
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/mpq/
H A Dget_d.c101 mp_size_t qsize, prospective_qsize, zeros, chop, tsize; local
132 tsize = nsize + zeros; /* size for possible copy of n */
138 tp = (zeros > 0 ? TMP_ALLOC_LIMBS (tsize) : NULL);
143 remp = TMP_ALLOC_LIMBS (dsize + (zeros > 0 ? tsize : 0));
153 nsize = tsize;
/netbsd-6-1-5-RELEASE/sys/lib/libsa/
H A Dloadfile_ecoff.c69 if (coff->a.tsize != 0) {
71 PROGRESS(("%lu", coff->a.tsize));
72 nr = READ(fd, coff->a.text_start, coff->a.tsize);
76 if (nr != coff->a.tsize) {
82 if (lseek(fd, coff->a.tsize, SEEK_CUR) == -1) {
91 pos += coff->a.tsize;
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dsqrt.c31 mp_size_t tsize; /* number of limbs of the sqrtrem remainder */ local
129 tsize = mpn_sqrtrem (rp, tp = sp, sp, rrsize);
131 l = tsize;
154 sticky1, together with {tp, tsize} and sticky0. */
159 if (sticky1 == (MPFR_LIMB_ONE << (sh - 1)) && tsize == 0
170 /* if sh=0, we have to compare {tp, tsize} with {rp, rsize}:
171 if {tp, tsize} < {rp, rsize}: truncate
172 if {tp, tsize} > {rp, rsize}: round up
173 if {tp, tsize} = {rp, rsize}: compare the truncated part of the
182 if (tsize < rsiz
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/lib/
H A Ddosfile.c113 u_int tsize; local
117 tsize = lsize;
119 if (tsize > DISKBUFSIZE)
120 tsize = DISKBUFSIZE;
124 tgot = dosread(df->doshandle, diskbufp, tsize);
136 if (tgot != tsize)
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tests/
H A Drefmpz.c49 mp_size_t xsize, ysize, tsize; local
59 tsize = MAX (xsize, ysize);
61 xp = refmpn_malloc_limbs (tsize);
62 refmpn_zero (xp, tsize);
65 yp = refmpn_malloc_limbs (tsize);
66 refmpn_zero (yp, tsize);
70 refmpn_neg (xp, xp, tsize);
73 refmpn_neg (yp, yp, tsize);
75 ret = refmpn_hamdist (xp, yp, tsize);
/netbsd-6-1-5-RELEASE/sys/arch/next68k/stand/boot/
H A Dsd.c259 int tsize; local
261 tsize = MAX_DMASIZE;
263 tsize = size;
265 nblks = howmany(tsize, ss->sc_dev_bsize);
268 blk, tsize, nblks, ss->sc_dev_bsize));
280 (u_char *)&cdb, sizeof(cdb), (char *)buf + *rsize, &tsize);
286 *rsize += tsize;
287 size -= tsize;
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/include/coff/
H A Dia64.h47 char tsize[4]; /* text size in bytes, padded to FW bdry*/ member in struct:__anon3377
H A Dexternal.h48 char tsize[4]; /* text size in bytes, padded to FW bdry*/ member in struct:external_aouthdr
64 char tsize[4]; /* Text size in bytes, padded to FW bdry*/ member in struct:external_aouthdr64
/netbsd-6-1-5-RELEASE/sys/compat/common/
H A Dsysv_ipc_50.c91 size_t infosize, dssize, tsize, buflen; local
140 tsize = infosize + nds * dssize;
144 *sizep = tsize;
153 bf = malloc(min(tsize, buflen), M_TEMP, M_WAITOK | M_ZERO);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/include/coff/
H A Dia64.h47 char tsize[4]; /* text size in bytes, padded to FW bdry*/ member in struct:__anon752
/netbsd-6-1-5-RELEASE/tools/mips-elf2ecoff/sys/
H A Dexec_ecoff.h52 ECOFF_ULONG tsize; member in struct:ecoff_aouthdr
99 (ECOFF_BLOCK_ALIGN((ep), ECOFF_TXTOFF(ep) + (ep)->a.tsize))
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dexec_ecoff.h52 u_long tsize; member in struct:ecoff_aouthdr
99 (ECOFF_BLOCK_ALIGN((ep), ECOFF_TXTOFF(ep) + (ep)->a.tsize))
/netbsd-6-1-5-RELEASE/sys/compat/ibcs2/
H A Dibcs2_exec_coff.c192 u_long tsize, tend; local
214 tsize = 0;
216 tsize = trunc_page(tend) - epp->ep_taddr;
230 toverlap = epp->ep_tsize - tsize;
236 tsize = epp->ep_tsize;
242 if (tsize > 0) {
244 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, tsize,
248 epp->ep_taddr, tsize, (u_long) COFF_TXTOFF(fp, ap)));
252 epp->ep_taddr + tsize, epp->ep_vp,
253 COFF_TXTOFF(fp, ap) + tsize,
514 int taddr, tsize, daddr, dsize, offset; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/systat/
H A Dbufcache.c134 double tvalid, tsize; local
180 tvalid = tsize = 0;
206 tsize += s;
214 (long)(tsize/1024), 100 * tsize / bufmem,
215 tsize != 0 ? ((100 * tvalid) / tsize) : 0);
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dexec_ecoff.c162 epp->ep_tsize = eap->tsize;
169 eap->tsize + eap->dsize, epp->ep_taddr, vp,
193 epp->ep_tsize = eap->tsize;
234 epp->ep_tsize = eap->tsize;
244 NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, eap->tsize,
/netbsd-6-1-5-RELEASE/sys/compat/linux/common/
H A Dlinux_uselib.c91 long bsize, dsize, tsize, taddr, baddr, daddr; local
120 tsize = hdr.a_text;
121 daddr = taddr + tsize;

Completed in 169 milliseconds

1234567