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

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
divdc3.c 21 __divdc3(double __a, double __b, double __c, double __d)
24 double __logbw = crt_logb(crt_fmax(crt_fabs(__c), crt_fabs(__d)));
28 __c = crt_scalbn(__c, -__ilogbw);
31 double __denom = __c * __c + __d * __d;
33 COMPLEX_REAL(z) = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
34 COMPLEX_IMAGINARY(z) = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
39 COMPLEX_REAL(z) = crt_copysign(CRT_INFINITY, __c) * __a;
40 COMPLEX_IMAGINARY(z) = crt_copysign(CRT_INFINITY, __c) * __b
    [all...]
divsc3.c 21 __divsc3(float __a, float __b, float __c, float __d)
24 float __logbw = crt_logbf(crt_fmaxf(crt_fabsf(__c), crt_fabsf(__d)));
28 __c = crt_scalbnf(__c, -__ilogbw);
31 float __denom = __c * __c + __d * __d;
33 COMPLEX_REAL(z) = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
34 COMPLEX_IMAGINARY(z) = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
39 COMPLEX_REAL(z) = crt_copysignf(CRT_INFINITY, __c) * __a;
40 COMPLEX_IMAGINARY(z) = crt_copysignf(CRT_INFINITY, __c) * __b
    [all...]
divtc3.c 21 __divtc3(long double __a, long double __b, long double __c, long double __d)
24 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d)));
28 __c = crt_scalbnl(__c, -__ilogbw);
31 long double __denom = __c * __c + __d * __d;
33 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
39 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a;
40 __imag__ z = crt_copysignl(CRT_INFINITY, __c) * __b
    [all...]
divxc3.c 22 __divxc3(long double __a, long double __b, long double __c, long double __d)
25 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d)));
29 __c = crt_scalbnl(__c, -__ilogbw);
32 long double __denom = __c * __c + __d * __d;
34 COMPLEX_REAL(z) = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
35 COMPLEX_IMAGINARY(z) = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
40 COMPLEX_REAL(z) = crt_copysignl(CRT_INFINITY, __c) * __a;
41 COMPLEX_IMAGINARY(z) = crt_copysignl(CRT_INFINITY, __c) * __b
    [all...]
muldc3.c 21 __muldc3(double __a, double __b, double __c, double __d)
23 double __ac = __a * __c;
26 double __bc = __b * __c;
37 if (crt_isnan(__c))
38 __c = crt_copysign(0, __c);
43 if (crt_isinf(__c) || crt_isinf(__d))
45 __c = crt_copysign(crt_isinf(__c) ? 1 : 0, __c);
    [all...]
mulsc3.c 21 __mulsc3(float __a, float __b, float __c, float __d)
23 float __ac = __a * __c;
26 float __bc = __b * __c;
37 if (crt_isnan(__c))
38 __c = crt_copysignf(0, __c);
43 if (crt_isinf(__c) || crt_isinf(__d))
45 __c = crt_copysignf(crt_isinf(__c) ? 1 : 0, __c);
    [all...]
mulxc3.c 23 __mulxc3(long double __a, long double __b, long double __c, long double __d)
25 long double __ac = __a * __c;
28 long double __bc = __b * __c;
39 if (crt_isnan(__c))
40 __c = crt_copysignl(0, __c);
45 if (crt_isinf(__c) || crt_isinf(__d))
47 __c = crt_copysignl(crt_isinf(__c) ? 1 : 0, __c);
    [all...]
  /src/sys/arch/hpcsh/dev/hd64461/
hd64461uartvar.h 52 char __c = __s[__i]; \
53 if (__c == '\n') \
55 HD64461COM_PUTC(__c); \
  /src/sys/arch/hpcsh/dev/hd64465/
hd64465uartvar.h 51 char __c = __s[__i]; \
52 if (__c == '\n') \
54 HD64465COM_PUTC(__c); \
  /src/sys/arch/hpc/stand/hpcboot/sh3/dev/
sh.h 239 char __c = __s[__i]; \
240 if (__c == '\n') \
242 SH3_SCI_PUTC(__c); \
354 char __c = __s[__i]; \
355 if (__c == '\n') \
357 SH3_SCIF_PUTC(__c); \
368 char __c = __n > 9 ? 'A' + __n - 10 : '0' + __n; \
369 SH3_SCIF_PUTC(__c); \
  /src/sys/external/bsd/compiler_rt/dist/test/Unit/
muldc3_test.c 21 double _Complex __muldc3(double __a, double __b, double __c, double __d);
multc3_test.c 24 __multc3(long double __a, long double __b, long double __c, long double __d);
mulxc3_test.c 24 __mulxc3(long double __a, long double __b, long double __c, long double __d);
divdc3_test.c 21 double _Complex __divdc3(double __a, double __b, double __c, double __d);
divsc3_test.c 21 float _Complex __divsc3(float __a, float __b, float __c, float __d);
divtc3_test.c 24 __divtc3(long double __a, long double __b, long double __c, long double __d);
divxc3_test.c 24 __divxc3(long double __a, long double __b, long double __c, long double __d);
mulsc3_test.c 21 float _Complex __mulsc3(float __a, float __b, float __c, float __d);
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/
muldc3_test.c 22 __muldc3(double __a, double __b, double __c, double __d);
mulxc3_test.c 24 __mulxc3(long double __a, long double __b, long double __c, long double __d);
divdc3_test.c 22 __divdc3(double __a, double __b, double __c, double __d);
divsc3_test.c 22 __divsc3(float __a, float __b, float __c, float __d);
divtc3_test.c 23 __divtc3(long double __a, long double __b, long double __c, long double __d);
divxc3_test.c 24 __divxc3(long double __a, long double __b, long double __c, long double __d);
mulsc3_test.c 22 __mulsc3(float __a, float __b, float __c, float __d);

Completed in 26 milliseconds

1 2