HomeSort by: relevance | last modified time | path
    Searched refs:dsize (Results 1 - 25 of 257) sorted by relevancy

1 2 3 4 5 6 7 8 91011

  /src/external/lgpl3/gmp/dist/mpz/
combit.c 36 mp_size_t dsize = SIZ(d); local
44 if (limb_index + 1 < dsize)
49 else if (limb_index < -dsize
53 ASSERT (dsize < 0);
54 dsize = -dsize;
61 dp = MPZ_REALLOC (d, 1 + dsize);
62 dp[dsize] = 0;
63 MPN_INCR_U (dp + limb_index, 1 + dsize - limb_index, bit);
64 SIZ(d) = - dsize - dp[dsize]
    [all...]
clrbit.c 36 mp_size_t dsize = SIZ (d); local
43 if (dsize >= 0)
45 if (limb_idx < dsize)
51 if (UNLIKELY ((dlimb == 0) + limb_idx == dsize)) /* dsize == limb_idx + 1 */
68 dsize = -dsize;
70 if (limb_idx < dsize)
94 dp = MPZ_REALLOC (d, dsize + 1);
95 dp[dsize] = 0
    [all...]
setbit.c 37 mp_size_t dsize = SIZ (d); local
44 if (dsize >= 0)
46 if (limb_idx < dsize)
56 MPN_ZERO (dp + dsize, limb_idx - dsize);
67 dsize = -dsize;
69 if (limb_idx < dsize)
84 if (UNLIKELY ((dlimb == 0) + limb_idx == dsize)) /* dsize == limb_idx + 1 *
    [all...]
cmpabs.c 39 mp_size_t usize, vsize, dsize; variable
45 dsize = usize - vsize;
46 if (dsize != 0)
47 return dsize;
divis.c 36 mp_size_t dsize = SIZ(d); local
39 if (UNLIKELY (dsize == 0))
42 return mpn_divisible_p (PTR(a), ABS(asize), PTR(d), ABS(dsize));
  /src/external/bsd/libpcap/dist/missing/
strlcpy.c 27 * Copy string src to buffer dst of size dsize. At most dsize-1
28 * chars will be copied. Always NUL terminates (unless dsize == 0).
29 * Returns strlen(src); if retval >= dsize, truncation occurred.
32 pcapint_strlcpy(char * restrict dst, const char * restrict src, size_t dsize)
35 size_t nleft = dsize;
47 if (dsize != 0)
  /src/external/bsd/mdocml/dist/
compat_strlcpy.c 25 * Copy string src to buffer dst of size dsize. At most dsize-1
26 * chars will be copied. Always NUL terminates (unless dsize == 0).
27 * Returns strlen(src); if retval >= dsize, truncation occurred.
30 strlcpy(char *dst, const char *src, size_t dsize)
33 size_t nleft = dsize;
45 if (dsize != 0)
  /src/external/gpl3/gcc/dist/libquadmath/printf/
divrem.c 26 /* Divide num (NP/NSIZE) by den (DP/DSIZE) and write
27 the NSIZE-DSIZE least significant quotient limbs at QP
28 and the DSIZE long remainder at NP. If QEXTRA_LIMBS is
34 0. NSIZE >= DSIZE.
37 QP + DSIZE >= NP must hold true. (This means that it's
40 3. NSIZE >= DSIZE, even if QEXTRA_LIMBS is non-zero. */
46 mp_srcptr dp, mp_size_t dsize)
48 mpn_divrem (qp, qextra_limbs, np, nsize, dp, dsize)
54 mp_size_t dsize;
59 switch (dsize)
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
divrem.c 26 /* Divide num (NP/NSIZE) by den (DP/DSIZE) and write
27 the NSIZE-DSIZE least significant quotient limbs at QP
28 and the DSIZE long remainder at NP. If QEXTRA_LIMBS is
34 0. NSIZE >= DSIZE.
37 QP + DSIZE >= NP must hold true. (This means that it's
40 3. NSIZE >= DSIZE, even if QEXTRA_LIMBS is non-zero. */
46 mp_srcptr dp, mp_size_t dsize)
48 mpn_divrem (qp, qextra_limbs, np, nsize, dp, dsize)
54 mp_size_t dsize;
59 switch (dsize)
    [all...]
  /src/external/bsd/ntp/dist/ntpq/
libntpq_subs.c 47 size_t *dsize,
52 rstatus, dsize, datap);
libntpq.c 189 size_t dsize; local
193 res = doquery(VARSET,association,0,0, (char *)0, &rstatus, &dsize, &datap);
197 if ( ( res != 0) || ( dsize == 0 ) ) /* no data */
200 if ( dsize > maxlen)
201 dsize = maxlen;
205 memcpy(resultbuf, datap, dsize);
207 return dsize;
425 size_t dsize; local
429 &dsize, &datap);
432 if (dsize <= 0)
482 size_t dsize; local
667 size_t dsize; local
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/generated/
in_unpack_c10.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_COMPLEX_10));
in_unpack_c16.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_COMPLEX_16));
in_unpack_c17.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_COMPLEX_17));
in_unpack_c4.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_COMPLEX_4));
in_unpack_c8.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_COMPLEX_8));
in_unpack_i1.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_INTEGER_1));
in_unpack_i16.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_INTEGER_16));
in_unpack_i2.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_INTEGER_2));
in_unpack_i4.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_INTEGER_4));
in_unpack_i8.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_INTEGER_8));
in_unpack_r10.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_REAL_10));
in_unpack_r16.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_REAL_16));
in_unpack_r17.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_REAL_17));
in_unpack_r4.c 40 index_type dsize; local
48 dsize = 1;
57 if (dsize == stride[n])
58 dsize *= extent[n];
60 dsize = 0;
63 if (dsize != 0)
65 memcpy (dest, src, dsize * sizeof (GFC_REAL_4));

Completed in 70 milliseconds

1 2 3 4 5 6 7 8 91011