Home
last modified time | relevance | path

Searched refs:quot (Results 1 – 25 of 184) sorted by relevance

12345678

/netbsd-src/external/lgpl3/gmp/dist/mpq/
H A Ddiv.c36 mpq_div (mpq_ptr quot, mpq_srcptr op1, mpq_srcptr op2) in mpq_div() argument
50 if (UNLIKELY (quot == op2)) in mpq_div()
54 mpq_set_ui (quot, 1, 1); in mpq_div()
60 MPN_PTR_SWAP (PTR(NUM(quot)), ALLOC(NUM(quot)), in mpq_div()
61 PTR(DEN(quot)), ALLOC(DEN(quot))); in mpq_div()
64 SIZ(NUM(quot)) = SIZ(DEN(quot)); in mpq_div()
65 SIZ(DEN(quot)) = op2_size; in mpq_div()
69 SIZ(NUM(quot)) = - SIZ(DEN(quot)); in mpq_div()
70 SIZ(DEN(quot)) = - op2_size; in mpq_div()
72 mpq_mul (quot, quot, op1); in mpq_div()
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-runtime/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
7 en@quot.po-create:
8 $(MAKE) en@quot.po-update
12 en@quot.po-update: en@quot.po-update-en
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
45 mostlyclean: mostlyclean-quot
46 mostlyclean-quot:
/netbsd-src/external/gpl2/gmake/dist/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
7 en@quot.po-create:
8 $(MAKE) en@quot.po-update
12 en@quot.po-update: en@quot.po-update-en
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
45 mostlyclean: mostlyclean-quot
46 mostlyclean-quot:
/netbsd-src/crypto/external/cpl/tpm-tools/dist/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
7 en@quot.po-create:
8 $(MAKE) en@quot.po-update
12 en@quot.po-update: en@quot.po-update-en
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
45 mostlyclean: mostlyclean-quot
46 mostlyclean-quot:
/netbsd-src/external/bsd/flex/dist/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
7 en@quot.po-create:
8 $(MAKE) en@quot.po-update
12 en@quot.po-update: en@quot.po-update-en
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
45 mostlyclean: mostlyclean-quot
46 mostlyclean-quot:
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
7 en@quot.po-create:
8 $(MAKE) en@quot.po-update
12 en@quot.po-update: en@quot.po-update-en
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
45 mostlyclean: mostlyclean-quot
46 mostlyclean-quot:
/netbsd-src/external/gpl2/texinfo/dist/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
7 en@quot.po-create:
8 $(MAKE) en@quot.po-update
12 en@quot.po-update: en@quot.po-update-en
39 en@quot.insert-header: insert-header.sin
40 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
45 mostlyclean: mostlyclean-quot
46 mostlyclean-quot:
/netbsd-src/external/lgpl3/gmp/dist/mpz/
H A Ddivexact.c38 mpz_divexact (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den) in mpz_divexact() argument
64 SIZ(quot) = 0; in mpz_divexact()
72 if (quot == num || quot == den) in mpz_divexact()
75 qp = MPZ_NEWALLOC (quot, qn); in mpz_divexact()
83 if (qp != PTR(quot)) in mpz_divexact()
84 MPN_COPY (MPZ_NEWALLOC (quot, qn), qp, qn); in mpz_divexact()
86 SIZ(quot) = (SIZ(num) ^ SIZ(den)) >= 0 ? qn : -qn; in mpz_divexact()
H A Dcdiv_qr.c35 mpz_cdiv_qr (mpz_ptr quot, mpz_ptr rem, mpz_srcptr dividend, mpz_srcptr divisor) in mpz_cdiv_qr() argument
47 if (quot == divisor || rem == divisor) in mpz_cdiv_qr()
55 mpz_tdiv_qr (quot, rem, dividend, divisor); in mpz_cdiv_qr()
59 mpz_add_ui (quot, quot, 1L); in mpz_cdiv_qr()
H A Dfdiv_qr.c35 mpz_fdiv_qr (mpz_ptr quot, mpz_ptr rem, mpz_srcptr dividend, mpz_srcptr divisor) in mpz_fdiv_qr() argument
47 if (quot == divisor || rem == divisor) in mpz_fdiv_qr()
55 mpz_tdiv_qr (quot, rem, dividend, divisor); in mpz_fdiv_qr()
59 mpz_sub_ui (quot, quot, 1L); in mpz_fdiv_qr()
H A Dtdiv_q_ui.c36 mpz_tdiv_q_ui (mpz_ptr quot, mpz_srcptr dividend, unsigned long int divisor) in mpz_tdiv_q_ui() argument
48 SIZ(quot) = 0; in mpz_tdiv_q_ui()
53 qp = MPZ_REALLOC (quot, nn); in mpz_tdiv_q_ui()
63 SIZ(quot) = 0; in mpz_tdiv_q_ui()
81 SIZ(quot) = ns >= 0 ? qn : -qn; in mpz_tdiv_q_ui()
H A Dtdiv_qr_ui.c37 mpz_tdiv_qr_ui (mpz_ptr quot, mpz_ptr rem, mpz_srcptr dividend, unsigned long int divisor) in mpz_tdiv_qr_ui() argument
49 SIZ(quot) = 0; in mpz_tdiv_qr_ui()
55 qp = MPZ_REALLOC (quot, nn); in mpz_tdiv_qr_ui()
67 SIZ(quot) = 0; in mpz_tdiv_qr_ui()
98 SIZ(quot) = ns >= 0 ? qn : -qn; in mpz_tdiv_qr_ui()
H A Dfdiv_q.c35 mpz_fdiv_q (mpz_ptr quot, mpz_srcptr dividend, mpz_srcptr divisor) in mpz_fdiv_q() argument
46 mpz_tdiv_qr (quot, rem, dividend, divisor); in mpz_fdiv_q()
49 mpz_sub_ui (quot, quot, 1L); in mpz_fdiv_q()
H A Dcdiv_q.c35 mpz_cdiv_q (mpz_ptr quot, mpz_srcptr dividend, mpz_srcptr divisor) in mpz_cdiv_q() argument
46 mpz_tdiv_qr (quot, rem, dividend, divisor); in mpz_cdiv_q()
49 mpz_add_ui (quot, quot, 1L); in mpz_cdiv_q()
H A Dtdiv_q.c36 mpz_tdiv_q (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den) in mpz_tdiv_q() argument
54 SIZ (quot) = 0; in mpz_tdiv_q()
58 qp = MPZ_REALLOC (quot, ql); in mpz_tdiv_q()
85 SIZ (quot) = (ns ^ ds) >= 0 ? ql : -ql; in mpz_tdiv_q()
H A Dcdiv_q_ui.c38 mpz_cdiv_q_ui (mpz_ptr quot, mpz_srcptr dividend, unsigned long int divisor) in mpz_cdiv_q_ui() argument
50 SIZ(quot) = 0; in mpz_cdiv_q_ui()
55 qp = MPZ_REALLOC (quot, nn); in mpz_cdiv_q_ui()
100 SIZ(quot) = ns >= 0 ? qn : -qn; in mpz_cdiv_q_ui()
H A Dfdiv_q_ui.c36 mpz_fdiv_q_ui (mpz_ptr quot, mpz_srcptr dividend, unsigned long int divisor) in mpz_fdiv_q_ui() argument
48 SIZ(quot) = 0; in mpz_fdiv_q_ui()
53 qp = MPZ_REALLOC (quot, nn); in mpz_fdiv_q_ui()
98 SIZ(quot) = ns >= 0 ? qn : -qn; in mpz_fdiv_q_ui()
H A Dtdiv_qr.c37 mpz_tdiv_qr (mpz_ptr quot, mpz_ptr rem, mpz_srcptr num, mpz_srcptr den) in mpz_tdiv_qr() argument
65 SIZ (quot) = 0; in mpz_tdiv_qr()
69 qp = MPZ_REALLOC (quot, ql); in mpz_tdiv_qr()
103 SIZ (quot) = (ns ^ ds) >= 0 ? ql : -ql; in mpz_tdiv_qr()
/netbsd-src/external/gpl2/diffutils/dist/po/
H A DRules-quot3 DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin…
7 en@quot.po-update: en@quot.po-update-en
34 en@quot.insert-header: insert-header.sin
35 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header
40 mostlyclean: mostlyclean-quot
41 mostlyclean-quot:
/netbsd-src/external/lgpl3/gmp/dist/tests/mpz/
H A Ddive.c30 mpz_t prod, quot; in main() local
50 mpz_init (quot); in main()
78 mpz_divexact (quot, prod, op2); in main()
79 MPZ_CHECK_FORMAT (quot); in main()
81 if (mpz_cmp (quot, op1) != 0) in main()
84 mpz_trace (" got ", quot); in main()
96 mpz_clear (quot); in main()
/netbsd-src/external/gpl3/gcc/dist/libquadmath/math/
H A Dlgammaq_product.c34 __float128 quot = t / xi; in __quadmath_lgamma_productq() local
36 mul_splitq (&mhi, &mlo, quot, xi); in __quadmath_lgamma_productq()
40 mul_splitq (&rhi, &rlo, ret, quot); in __quadmath_lgamma_productq()
41 __float128 rpq = ret + quot; in __quadmath_lgamma_productq()
42 __float128 rpq_eps = (ret - rpq) + quot; in __quadmath_lgamma_productq()
45 ret_eps += (rpq_eps + nret_eps + rlo + ret_eps * quot in __quadmath_lgamma_productq()
/netbsd-src/external/gpl3/gcc.old/dist/libquadmath/math/
H A Dlgammaq_product.c34 __float128 quot = t / xi; in __quadmath_lgamma_productq() local
36 mul_splitq (&mhi, &mlo, quot, xi); in __quadmath_lgamma_productq()
40 mul_splitq (&rhi, &rlo, ret, quot); in __quadmath_lgamma_productq()
41 __float128 rpq = ret + quot; in __quadmath_lgamma_productq()
42 __float128 rpq_eps = (ret - rpq) + quot; in __quadmath_lgamma_productq()
45 ret_eps += (rpq_eps + nret_eps + rlo + ret_eps * quot in __quadmath_lgamma_productq()
/netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/
H A Dfmod.c27 double quot = x/y; local
28 return x - (quot < 0.0 ? ceil(quot) : floor(quot)) * y;
/netbsd-src/usr.bin/split/
H A Dsplit.c319 int quot, i; in newfile() local
327 quot = fnum; in newfile()
356 quot = 0; in newfile()
361 fpnt[i] = quot % 26 + 'a'; in newfile()
362 quot = quot / 26; in newfile()
364 if (quot > 0) in newfile()
/netbsd-src/lib/libc/citrus/
H A Dcitrus_prop.c253 int errnum, quot, ch; in _citrus_prop_read_str() local
267 quot = _memstream_getc(ms); in _citrus_prop_read_str()
268 switch (quot) { in _citrus_prop_read_str()
272 _memstream_ungetc(ms, quot); in _citrus_prop_read_str()
273 quot = EOF; in _citrus_prop_read_str()
278 s[n] = quot; in _citrus_prop_read_str()
280 quot = EOF; in _citrus_prop_read_str()
293 if (quot == ch || (quot == EOF && in _citrus_prop_read_str()

12345678