Home
last modified time | relevance | path

Searched refs:real (Results 1 – 25 of 279) sorted by relevance

12345678910>>...12

/dragonfly/contrib/mpc/src/
H A Dmul_fr.c27 mpfr_t real; in mpc_mul_fr() local
31 mpfr_init2 (real, MPC_PREC_RE (a)); in mpc_mul_fr()
33 real [0] = mpc_realref (a) [0]; in mpc_mul_fr()
35 inex_re = mpfr_mul (real, mpc_realref(b), c, MPC_RND_RE(rnd)); in mpc_mul_fr()
37 mpfr_set (mpc_realref (a), real, GMP_RNDN); /* exact */ in mpc_mul_fr()
40 mpfr_clear (real); in mpc_mul_fr()
H A Ddiv_fr.c27 mpfr_t real; in mpc_div_fr() local
30 mpfr_init2 (real, MPC_PREC_RE (a)); in mpc_div_fr()
32 inex_re = mpfr_div (real, mpc_realref(b), c, MPC_RND_RE(rnd)); in mpc_div_fr()
34 mpfr_set (mpc_realref (a), real, GMP_RNDN); in mpc_div_fr()
36 mpfr_clear (real); in mpc_div_fr()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
H A Dcomplex260 _M_real = __z.real();
370 __r -= __y.real();
452 { return __x.real() == __y.real() && __x.imag() == __y.imag(); }
470 { return __x.real() != __y.real() || __x.imag() != __y.imag(); }
534 { return __z.real(); }
544 { return __z.real(); }
549 { return __z.real(); }
1643 const _Tp __r2 = __z.real() * __z.real();
1763 const _Tp __x = _Tp(1.0) - __i2 - __z.real() * __z.real();
1839 real(_Tp __x)
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Dcomplex267 _M_real = __z.real();
377 __r -= __y.real();
459 { return __x.real() == __y.real() && __x.imag() == __y.imag(); }
477 { return __x.real() != __y.real() || __x.imag() != __y.imag(); }
562 { return __z.real(); }
572 { return __z.real(); }
577 { return __z.real(); }
1682 const _Tp __r2 = __z.real() * __z.real();
1802 const _Tp __x = _Tp(1.0) - __i2 - __z.real() * __z.real();
1878 real(_Tp __x)
[all …]
/dragonfly/contrib/tcsh-6/nls/spanish/
H A Dset270 68 Primera señal de tiempo real
71 69 Segunda señal de tiempo real
72 70 Tercera señal de tiempo real
73 71 Cuarta señal de tiempo real
74 72 Cuarta señal por la cola de tiempo real
75 73 Antepenúltima señal de tiempo real
76 74 Penúltima señal de tiempo real
77 75 Última señal de tiempo real
90 88 Bloqueo real detectado
/dragonfly/usr.sbin/ppp/
H A Dtty.c105 } real; member
231 return dev->real.fd != -1; in isngtty()
368 dev->real.fd = p->fd; in LoadLineDiscipline()
370 dev->real.speed = speed; in LoadLineDiscipline()
381 ID0ioctl(p->fd, TIOCSETD, &dev->real.disc); in LoadLineDiscipline()
397 dev->real.speed = 0; in UnloadLineDiscipline()
399 p->fd = dev->real.fd; in UnloadLineDiscipline()
400 dev->real.fd = -1; in UnloadLineDiscipline()
699 dev->real.speed = 0; in tty_Create()
700 dev->real.fd = -1; in tty_Create()
[all …]
/dragonfly/contrib/file/magic/Magdir/
H A Dti-8x19 >0x00003B byte 0x00 (real number)
37 >0x00003B byte 0x00 (real)
54 >0x00003B byte 0x00 (real)
72 >0x00003B byte 0x00 (real number)
93 >0x00003B byte 0x00 (real number)
95 >0x00003B byte 0x02 (real vector)
97 >0x00003B byte 0x04 (real list)
99 >0x00003B byte 0x06 (real matrix)
126 >0x00003B byte 0x00 (real number)
128 >0x00003B byte 0x02 (real vector)
[all …]
/dragonfly/contrib/lvm2/dist/lib/filters/
H A Dfilter-persistent.c32 struct dev_filter *real; member
279 l = pf->real->passes_filter(pf->real, dev) ? in _lookup_p()
297 pf->real->destroy(pf->real); in _persistent_destroy()
302 struct dev_filter *persistent_filter_create(struct dev_filter *real, in persistent_filter_create() argument
316 pf->real = real; in persistent_filter_create()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/
H A Dcomplex107 std::complex<_Tp> __t(-__z.imag(), __z.real());
109 return std::complex<_Tp>(__t.imag(), -__t.real());
143 const _Tp __r2 = __z.real() * __z.real();
223 std::complex<_Tp> __t((__z.real() - __z.imag())
224 * (__z.real() + __z.imag()) + _Tp(1.0),
225 _Tp(2.0) * __z.real() * __z.imag());
263 const _Tp __x = _Tp(1.0) - __i2 - __z.real() * __z.real();
265 _Tp __num = _Tp(1.0) + __z.real();
266 _Tp __den = _Tp(1.0) - __z.real();
343 real(_Tp __x)
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/
H A Dcomplex106 std::complex<_Tp> __t(-__z.imag(), __z.real());
108 return std::complex<_Tp>(__t.imag(), -__t.real());
142 const _Tp __r2 = __z.real() * __z.real();
224 std::complex<_Tp> __t((__z.real() - __z.imag())
225 * (__z.real() + __z.imag()) + _Tp(1.0),
226 _Tp(2.0) * __z.real() * __z.imag());
264 const _Tp __x = _Tp(1.0) - __i2 - __z.real() * __z.real();
266 _Tp __num = _Tp(1.0) + __z.real();
267 _Tp __den = _Tp(1.0) - __z.real();
342 real(_Tp __x)
[all …]
/dragonfly/contrib/cvs-1.12/src/
H A Dmkmodules.c24 static void rename_rcsfile (char *temp, char *real);
1100 rename_rcsfile (char *temp, char *real) in rename_rcsfile() argument
1107 rcs = Xasprintf ("%s%s", real, RCSEXT); in rename_rcsfile()
1116 bak = Xasprintf ("%s%s", BAKPREFIX, real); in rename_rcsfile()
1124 if (CVS_RENAME (real, bak) < 0 in rename_rcsfile()
1126 error (0, errno, "cannot rename %s to %s", real, bak); in rename_rcsfile()
1129 if (CVS_RENAME (temp, real) < 0 in rename_rcsfile()
1131 error (0, errno, "cannot rename %s to %s", temp, real); in rename_rcsfile()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgenflags.c101 gen_macro (const char *name, int real, int expect) in gen_macro() argument
105 gcc_assert (real <= expect); in gen_macro()
106 gcc_assert (real); in gen_macro()
118 for (i = 0; i < real - 1; i++) in gen_macro()
H A Dcfgloopanal.c148 edge real = (edge) ge->data; in mark_irreducible_loops() local
159 real->flags |= EDGE_IRREDUCIBLE_LOOP; in mark_irreducible_loops()
161 if (flow_bb_inside_loop_p (real->src->loop_father, real->dest)) in mark_irreducible_loops()
162 real->src->flags |= BB_IRREDUCIBLE_LOOP; in mark_irreducible_loops()
/dragonfly/contrib/gcc-4.7/gcc/doc/
H A Dcollect2.texi30 needs to find the @emph{real} @code{ld}, it tries the following file
39 @file{real-ld} in the directories listed in the compiler's search
43 @file{real-ld} in the directories listed in the environment variable
66 @file{real-ld} in the compiler's search directories.
69 @file{@var{target}-real-ld} in @code{PATH}.
/dragonfly/contrib/gcc-8.0/gcc/fortran/
H A Dlang.opt467 fdefault-real-8
471 fdefault-real-10
475 fdefault-real-16
587 finit-real=
589 -finit-real=<zero|snan|nan|inf|-inf> Initialize local real variables.
669 freal-4-real-8
673 freal-4-real-10
677 freal-4-real-16
681 freal-8-real-4
685 freal-8-real-10
[all …]
/dragonfly/sys/dev/drm/amd/powerplay/hwmgr/
H A Dppevvmath.h45 int real: 32 - SHIFT_AMOUNT; member
337 X_LessThanOne = (X.partial.real == 0 && X.partial.decimal != 0 && X.full >= 0); in fMultiply()
338 Y_LessThanOne = (Y.partial.real == 0 && Y.partial.decimal != 0 && Y.full >= 0); in fMultiply()
412 if (num.partial.real > 3000) in fSqrt()
414 else if (num.partial.real > 1000) in fSqrt()
416 else if (num.partial.real > 100) in fSqrt()
547 solution.partial.real += 1; /*Error term of 1 added */ in fRoundUpByStepSize()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dcfgloopanal.c151 edge real = (edge) ge->data; in mark_irreducible_loops() local
162 real->flags |= EDGE_IRREDUCIBLE_LOOP; in mark_irreducible_loops()
164 if (flow_bb_inside_loop_p (real->src->loop_father, real->dest)) in mark_irreducible_loops()
165 real->src->flags |= BB_IRREDUCIBLE_LOOP; in mark_irreducible_loops()
/dragonfly/contrib/tcsh-6/nls/et/
H A Dset311 9 Vi muuda realõpuni
30 28 Kursor realõppu
34 32 Avalda real ajaloo käsud
45 43 Lõika realõpuni ja salvesta lõikepuhvris
88 86 Vi muuda realõpuni
/dragonfly/test/interbench/
H A Dreadme19 configurable nice levels and the benchmarked tasks can be real time.
28 It runs a real time high priority timing thread that wakes up the thread or
51 running SCHED_FIFO if the real time benchmarking option is used.
57 video is benchmarked with the real time option.
106 This is suggested as a real time load only but because of how extreme this
154 The results pessimise quite a lot what happens in real world terms because they
186 mandatory for this benchmark, or real time privileges at the very least. You
213 -r Perform real time scheduling benchmarks (default: non-rt)
/dragonfly/contrib/gcc-4.7/gcc/c-family/
H A Dc-lex.c684 REAL_VALUE_TYPE real; in interpret_float() local
776 real_from_string3 (&real, copy, TYPE_MODE (const_type)); in interpret_float()
783 real_convert (&real_trunc, TYPE_MODE (type), &real); in interpret_float()
789 if (REAL_VALUE_ISINF (real) in interpret_float()
798 else if (REAL_VALUES_EQUAL (real, dconst0) in interpret_float()
808 value = build_real (const_type, real); in interpret_float()
H A Dc-cppbuiltin.c1042 REAL_VALUE_TYPE real; in lazy_hex_fp_value() local
1050 real_from_string (&real, lazy_hex_fp_values[idx].hex_str); in lazy_hex_fp_value()
1051 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str), in lazy_hex_fp_value()
1076 REAL_VALUE_TYPE real; in builtin_define_with_hex_fp_value() local
1114 real_from_string (&real, hex_str); in builtin_define_with_hex_fp_value()
1115 real_to_decimal_for_mode (dec_str, &real, sizeof (dec_str), digits, 0, in builtin_define_with_hex_fp_value()
/dragonfly/stand/boot/pc32/btx/btx/
H A Dbtx.S179 mov $0x20*4,%di # First real mode IDT entry
611 intusr.5: movw %bx,MEM_BTX_ESPR-0x12 # Pass user flags to real mode
625 intusr.6: movl -0x08(%esi),%ebx # Copy user flags to real
645 movw $MEM_BTX_ESPR-0x16,%sp # Switch to real mode stack
717 rep # real mode stack
730 leal MEM_BTX_ESPR-0x2c,%esi # %esi => real mode seg regs
733 rep # from real mode stack
739 movl MEM_BTX_ESPR-0x3c,%eax # Read real mode flags
/dragonfly/contrib/gcc-8.0/gcc/c-family/
H A Dc-lex.c801 REAL_VALUE_TYPE real; in interpret_float() local
937 real_from_string3 (&real, copy, TYPE_MODE (const_type)); in interpret_float()
944 real_convert (&real_trunc, TYPE_MODE (type), &real); in interpret_float()
950 if (REAL_VALUE_ISINF (real) in interpret_float()
965 else if (real_equal (&real, &dconst0) in interpret_float()
981 value = build_real (const_type, real); in interpret_float()
/dragonfly/gnu/usr.bin/cc80/support-libs/liblto_plugin/
H A Db-header-vars34 …sses.def double-int.h all-tree.def tree.def c-family/c-common.def stringop.def real.h fixed-value.h
35 …def double-int.h all-tree.def tree.def c-family/c-common.def stringop.def real.h fixed-value.h tre…
45 EXPR_H=expr.h insn-config.h function.h stringop.def real.h fixed-value.h tree-check.h emit-rtl.h
50 IPA_REFERENCE_H=ipa-reference.h bitmap.h stringop.def real.h fixed-value.h tree-check.h
72 TREE_SSA_H=tree-ssa.h tree-ssa-operands.h bitmap.h stringop.def real.h fixed-value.h tree-check.h t…
78 C_PRETTY_PRINT_H=c-family/c-pretty-print.h pretty-print.h stringop.def real.h fixed-value.h tree-ch…
80 REAL_H=real.h
/dragonfly/initrd/etc/
H A Dmotd4 Fix problems and mount the real root partition at `/new_root', then exit

12345678910>>...12