Home
last modified time | relevance | path

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

12345678910>>...23

/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
Dcomplex_cmath.h35 return hypot(__c.real(), __c.imag()); in abs()
41 return atan2(__c.imag(), __c.real()); in arg()
59 if (std::isinf(__c.real())) in norm()
60 return abs(__c.real()); in norm()
63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm()
69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj()
76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) in proj()
124 if (std::isinf(__x.real())) { in sqrt()
125 if (__x.real() > _Tp(0)) in sqrt()
126 return std::complex<_Tp>(__x.real(), std::isnan(__x.imag()) in sqrt()
[all …]
/freebsd-12-stable/contrib/ofed/librdmacm/
Dpreload.c93 static struct socket_calls real; variable
279 real.close(index); in fd_open()
344 real.close(index); in fd_close()
386 real.socket = dlsym(RTLD_NEXT, "socket"); in init_preload()
387 real.bind = dlsym(RTLD_NEXT, "bind"); in init_preload()
388 real.listen = dlsym(RTLD_NEXT, "listen"); in init_preload()
389 real.accept = dlsym(RTLD_NEXT, "accept"); in init_preload()
390 real.connect = dlsym(RTLD_NEXT, "connect"); in init_preload()
391 real.recv = dlsym(RTLD_NEXT, "recv"); in init_preload()
392 real.recvfrom = dlsym(RTLD_NEXT, "recvfrom"); in init_preload()
[all …]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dcomplex29 T real() const; // constexpr in C++14
32 void real(T);
59 constexpr float real() const;
60 void real(float);
88 constexpr double real() const;
89 void real(double);
117 constexpr long double real() const;
118 void real(long double);
167 template<class T> T real(const complex<T>&); // constexpr in C++14
168 long double real(long double); // constexpr in C++14
[all …]
/freebsd-12-stable/contrib/libstdc++/include/std/
Dstd_complex.h131 _Tp& real();
133 const _Tp& real() const;
178 complex<_Tp>::real() { return _M_real; } in real() function
182 complex<_Tp>::real() const { return _M_real; } in real() function
201 : _M_real(__z.real()), _M_imag(__z.imag()) { } in complex()
255 _M_real = __z.real();
266 _M_real += __z.real();
277 _M_real -= __z.real();
289 const _Tp __r = _M_real * __z.real() - _M_imag * __z.imag();
290 _M_imag = _M_real * __z.imag() + _M_imag * __z.real();
[all …]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
Ddivtc3.c49 DD real = {.ld = __gcc_qdiv(realNumerator, denom)}; in __divtc3() local
52 real.s.hi = __compiler_rt_scalbn(real.s.hi, -ilogbw); in __divtc3()
53 real.s.lo = __compiler_rt_scalbn(real.s.lo, -ilogbw); in __divtc3()
57 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) { in __divtc3()
63 real.s.hi = crt_copysign(CRT_INFINITY, cDD.s.hi) * aDD.s.hi; in __divtc3()
64 real.s.lo = 0.0; in __divtc3()
73 real.s.hi = CRT_INFINITY * (aDD.s.hi * cDD.s.hi + bDD.s.hi * dDD.s.hi); in __divtc3()
74 real.s.lo = 0.0; in __divtc3()
83 real.s.hi = in __divtc3()
85 real.s.lo = 0.0; in __divtc3()
[all …]
Dmultc3.c29 DD real = {.ld = __gcc_qsub(ac, bd)}; in __multc3() local
32 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) { in __multc3()
73 real.s.hi = CRT_INFINITY * (aDD.s.hi * cDD.s.hi - bDD.s.hi * dDD.s.hi); in __multc3()
74 real.s.lo = 0.0; in __multc3()
81 __real__ z = real.ld; in __multc3()
/freebsd-12-stable/lib/atf/
Dcommon.mk13 atf-version: atf-version-real
14 @cmp -s atf-version atf-version-real \
15 || cp atf-version-real atf-version
16 atf-version-real: .PHONY
18 | cut -d '"' -f 2 >atf-version-real
19 CLEANFILES+= atf-version atf-version-real
/freebsd-12-stable/contrib/tcsh/nls/spanish/
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
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/safestack/
Dsafestack_platform.h46 void *real = dlsym(RTLD_NEXT, symbol); in GetRealLibcAddress() local
47 if (!real) in GetRealLibcAddress()
48 real = dlsym(RTLD_DEFAULT, symbol); in GetRealLibcAddress()
49 if (!real) { in GetRealLibcAddress()
54 return real; in GetRealLibcAddress()
57 #define _REAL(func, ...) real##_##func(__VA_ARGS__)
/freebsd-12-stable/contrib/unbound/util/
Dalloc.c559 void* real; in unbound_stat_free_lite() local
562 real = ptr-lite_pad-sizeof(size_t); in unbound_stat_free_lite()
563 if(memcmp(real, lite_pre, lite_pad) != 0) { in unbound_stat_free_lite()
565 log_hex("prefix here", real, lite_pad); in unbound_stat_free_lite()
569 memmove(&orig, real+lite_pad, sizeof(size_t)); in unbound_stat_free_lite()
570 if(memcmp(real+lite_pad+orig+sizeof(size_t), lite_post, lite_pad)!=0){ in unbound_stat_free_lite()
573 log_hex("suffix here", real+lite_pad+orig+sizeof(size_t), in unbound_stat_free_lite()
578 memset(real, 0xdd, orig+lite_pad*2+sizeof(size_t)); /* mark it */ in unbound_stat_free_lite()
579 free(real); in unbound_stat_free_lite()
586 void* real, *newa; in unbound_stat_realloc_lite() local
[all …]
/freebsd-12-stable/contrib/file/magic/Magdir/
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)
101 >0x00003B byte 0x08 (real constant)
126 >0x00003B byte 0x00 (real number)
[all …]
/freebsd-12-stable/usr.sbin/ppp/
Dtty.c99 } real; member
225 return dev->real.fd != -1; in isngtty()
283 if (ioctl(p->fd, TIOCGETD, &dev->real.disc) < 0) { in LoadLineDiscipline()
299 ID0ioctl(p->fd, TIOCSETD, &dev->real.disc); in LoadLineDiscipline()
308 ID0ioctl(p->fd, TIOCSETD, &dev->real.disc); in LoadLineDiscipline()
363 dev->real.fd = p->fd; in LoadLineDiscipline()
365 dev->real.speed = speed; in LoadLineDiscipline()
376 ID0ioctl(p->fd, TIOCSETD, &dev->real.disc); in LoadLineDiscipline()
389 if (!physical_SetSpeed(p, dev->real.speed)) in UnloadLineDiscipline()
390 log_Printf(LogWARN, "Couldn't reset tty speed to %d\n", dev->real.speed); in UnloadLineDiscipline()
[all …]
/freebsd-12-stable/contrib/libstdc++/include/tr1/
Dcomplex64 return std::complex<_Tp>(__pi_2 - __t.real(), -__t.imag());
98 std::complex<_Tp> __t(-__z.imag(), __z.real());
100 return std::complex<_Tp>(__t.imag(), -__t.real());
134 const _Tp __r2 = __z.real() * __z.real();
143 return std::complex<_Tp>(_Tp(0.5) * atan2(_Tp(2.0) * __z.real(), __x),
178 std::complex<_Tp> __t((__z.real() - __z.imag())
179 * (__z.real() + __z.imag()) - _Tp(1.0),
180 _Tp(2.0) * __z.real() * __z.imag());
217 std::complex<_Tp> __t((__z.real() - __z.imag())
218 * (__z.real() + __z.imag()) + _Tp(1.0),
[all …]
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
DMinGW.cpp208 Symbol *real = symtab->addUndefined(mangle("__real_" + name)); in addWrappedSymbols() local
210 v.push_back({sym, real, wrap}); in addWrappedSymbols()
217 real->deferUndefined = true; in addWrappedSymbols()
220 real->canInline = false; in addWrappedSymbols()
240 map[w.real] = w.sym; in wrapSymbols()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
Dint_types.h183 float real, imaginary; member
187 double real, imaginary; member
191 long double real, imaginary; member
194 #define COMPLEX_REAL(x) (x).real
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_rtl_s390x.S14 .macro intercept symbol, real argument
15 .comm \real, 8, 8
37 larl %r1, \real
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_win_weak_interception.cpp31 uptr real = __interception::InternalGetProcAddress( in interceptWhenPossible() local
33 if (real && !__interception::OverrideFunction((uptr)dll_function, real, 0)) in interceptWhenPossible()
Dsanitizer_netbsd.cpp78 void *real = dlsym(RTLD_NEXT, symbol); in GetRealLibcAddress() local
79 if (!real) in GetRealLibcAddress()
80 real = dlsym(RTLD_DEFAULT, symbol); in GetRealLibcAddress()
81 if (!real) { in GetRealLibcAddress()
85 return real; in GetRealLibcAddress()
88 #define _REAL(func, ...) real##_##func(__VA_ARGS__)
/freebsd-12-stable/tools/tools/kdrv/
DKernelDriver323 if {$Options(real)} {
333 if {$Options(real)} {
394 if {$Options(real)} {
410 if {$Options(real)} {
430 if {$Options(real)} {
447 if {$Options(real)} {
467 if {$Options(real)} {
847 if {$Options(real)} {
853 if {$Options(real)} {
872 if {!$Options(real)} { return ; }
[all …]
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
DSymbolTable.cpp34 void SymbolTable::wrap(Symbol *sym, Symbol *real, Symbol *wrap) { in wrap() argument
37 int &idx2 = symMap[CachedHashStringRef(real->getName())]; in wrap()
43 if (real->exportDynamic) in wrap()
45 if (!real->isUsedInRegularObj && sym->isUndefined()) in wrap()
55 memcpy(real, sym, sizeof(SymbolUnion)); in wrap()
56 real->isUsedInRegularObj = false; in wrap()
/freebsd-12-stable/contrib/gcc/
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()
/freebsd-12-stable/contrib/gcc/doc/
Dcollect2.texi30 needs to find the @emph{real} @code{ld}, it tries the following file
35 @file{real-ld} in the directories listed in the compiler's search
39 @file{real-ld} in the directories listed in the environment variable
62 @file{real-ld} in the compiler's search directories.
65 @file{@var{target}-real-ld} in @code{PATH}.
/freebsd-12-stable/tools/regression/security/proc_to_proc/
DREADME32 non-root real credentials
34 different non-root real credentials
39 real uid
49 that may not reflect real-world software configurations. However, they
/freebsd-12-stable/crypto/openssl/crypto/perlasm/
Dppc-xlate.pl99 my $real = $GLOBALS{$name} ? \$GLOBALS{$name} : \$name;
100 my $ret = ".size $$real,.-$$real";
102 if ($$real ne $name) {
103 $ret .= "\n.size $name,.-$$real";
/freebsd-12-stable/contrib/tcsh/nls/et/
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

12345678910>>...23