HomeSort by: relevance | last modified time | path
    Searched defs:tspace (Results 1 - 9 of 9) sorted by relevancy

  /src/external/gpl3/gcc/dist/libquadmath/printf/
mul.c 61 mp_ptr tspace; local
115 tspace = (mp_ptr) alloca (2 * vsize * BYTES_PER_MP_LIMB);
116 MPN_MUL_N_RECURSE (prodp, up, vp, vsize, tspace);
126 MPN_MUL_N_RECURSE (tp, up, vp, vsize, tspace);
142 mpn_mul (tspace, vp, vsize, up, usize);
143 cy = mpn_add_n (prodp, prodp, tspace, vsize);
144 mpn_add_1 (prodp + vsize, tspace + vsize, usize, cy);
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
mul.c 61 mp_ptr tspace; local
115 tspace = (mp_ptr) alloca (2 * vsize * BYTES_PER_MP_LIMB);
116 MPN_MUL_N_RECURSE (prodp, up, vp, vsize, tspace);
126 MPN_MUL_N_RECURSE (tp, up, vp, vsize, tspace);
142 mpn_mul (tspace, vp, vsize, up, usize);
143 cy = mpn_add_n (prodp, prodp, tspace, vsize);
144 mpn_add_1 (prodp + vsize, tspace + vsize, usize, cy);
  /src/usr.bin/sed/
process.c 108 SPACE tspace; local
262 tspace = PS;
264 psanl = tspace.append_newline;
265 HS = tspace;
388 SPACE tspace; local
471 tspace = PS;
473 psanl = tspace.append_newline;
474 SS = tspace;
  /src/sys/kern/
uipc_mbuf.c 1568 int tspace; local
1582 tspace = M_TRAILINGSPACE(m);
1583 if (tspace > 0) {
1584 tspace = uimin(tspace, off + len);
1585 KASSERT(tspace > 0);
1587 uimin(off, tspace));
1588 m->m_len += tspace;
  /src/external/bsd/ntp/dist/ntpdc/
ntpdc.c 1301 static char tspace[MAXLINE]; local
1303 sp = tspace;
  /src/external/gpl3/binutils/dist/gprofng/src/
Print.cc 742 int lspace, mspace, tspace, remain, mindex, next_mark, hidx, index; local
813 tspace = 0;
817 tspace = 8 - remain;
818 mspace += tspace;
  /src/external/gpl3/binutils.old/dist/gprofng/src/
Print.cc 742 int lspace, mspace, tspace, remain, mindex, next_mark, hidx, index; local
813 tspace = 0;
817 tspace = 8 - remain;
818 mspace += tspace;
  /src/external/bsd/ntp/dist/ntpq/
ntpq.c 1769 static char tspace[MAXLINE]; local
1771 sp = tspace;
1790 if (sp - tspace >= MAXLINE)
1802 if (sp - tspace >= MAXLINE)
1810 if (sp - tspace >= MAXLINE)
1817 if (sp - tspace >= MAXLINE)
  /src/external/lgpl3/gmp/dist/tests/devel/
try.c 1632 mp_ptr tspace; local
1635 tspace = TMP_ALLOC_LIMBS (mpn_toom22_mul_itch (size, size));
1636 mpn_toom22_mul (dst, src1, size, src2, size, tspace);
1642 mp_ptr tspace; local
1645 tspace = TMP_ALLOC_LIMBS (mpn_toom2_sqr_itch (size));
1646 mpn_toom2_sqr (dst, src, size, tspace);
1652 mp_ptr tspace; local
1655 tspace = TMP_ALLOC_LIMBS (mpn_toom33_mul_itch (size, size));
1656 mpn_toom33_mul (dst, src1, size, src2, size, tspace);
1662 mp_ptr tspace; local
1672 mp_ptr tspace; local
1682 mp_ptr tspace; local
1694 mp_ptr tspace; local
    [all...]

Completed in 24 milliseconds