Searched refs:__c (Results 1 - 25 of 79) sorted by relevance

1234

/external/bison/lib/
H A Dc-ctype.h145 ({ int __c = (c); \
146 (__c >= 0x00 && __c <= 0x7f); \
154 ({ int __c = (c); \
155 ((__c >= '0' && __c <= '9') \
156 || ((__c & ~0x20) >= 'A' && (__c & ~0x20) <= 'Z')); \
161 ({ int __c = (c); \
162 ((__c >
[all...]
/external/compiler-rt/lib/builtins/
H A Ddivdc3.c21 __divdc3(double __a, double __b, double __c, double __d) argument
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) * __
[all...]
H A Ddivsc3.c21 __divsc3(float __a, float __b, float __c, float __d) argument
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) * __
[all...]
H A Ddivtc3.c21 __divtc3(long double __a, long double __b, long double __c, long double __d) argument
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) * __
[all...]
H A Ddivxc3.c22 __divxc3(long double __a, long double __b, long double __c, long double __d) argument
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) * __
[all...]
H A Dmuldc3.c21 __muldc3(double __a, double __b, double __c, double __d) argument
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...]
H A Dmulsc3.c21 __mulsc3(float __a, float __b, float __c, float __d) argument
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...]
H A Dmulxc3.c23 __mulxc3(long double __a, long double __b, long double __c, long double __d) argument
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...]
/external/clang/test/CodeGen/
H A Dpr9614.c11 extern char *strrchr_foo (const char *__s, int __c) __asm ("strrchr");
12 extern inline __attribute__ ((__always_inline__)) __attribute__ ((__gnu_inline__)) char * strrchr_foo (const char *__s, int __c) { argument
13 return __builtin_strrchr (__s, __c);
21 extern inline __attribute__((__always_inline__, __gnu_inline__)) void *memchr(void *__s, int __c, __SIZE_TYPE__ __n) { argument
22 return __builtin_memchr(__s, __c, __n);
/external/clang/test/Parser/
H A Dcxx-member-crash.cpp14 const bool __plus = __c == __lit[__num_base::_S_iplus];
15 if ((__plus || __c == __lit[__num_base::_S_iminus]) && !(__lc->_M_use_grouping && __c == __lc->_M_thousands_sep) && !(__c == __lc->_M_decimal_point)) {
/external/libcxx/src/support/solaris/
H A Dxlocale.c18 int isxdigit_l(int __c, locale_t __l) { argument
19 return isxdigit(__c);
22 int iswxdigit_l(wchar_t __c, locale_t __l) { argument
23 return isxdigit(__c);
/external/libcxx/test/std/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/
H A Dstreambuf.pass.cpp44 overflow(typename base::int_type __c = base::traits_type::eof())
46 if (__c != base::traits_type::eof())
49 str_.push_back(__c);
55 return __c;
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
H A Dbasic_ios.pass.cpp38 overflow(typename base::int_type __c = base::traits_type::eof())
40 if (__c != base::traits_type::eof())
43 str_.push_back(__c);
49 return __c;
H A Dios_base.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dostream.pass.cpp38 overflow(typename base::int_type __c = base::traits_type::eof())
40 if (__c != base::traits_type::eof())
43 str_.push_back(__c);
49 return __c;
H A Dstreambuf.pass.cpp44 overflow(typename base::int_type __c = base::traits_type::eof())
46 if (__c != base::traits_type::eof())
49 str_.push_back(__c);
55 return __c;
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A Ddouble.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dfloat.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dint.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dlong.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dlong_double.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dlong_long.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dshort.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dunsigned_int.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;
H A Dunsigned_long.pass.cpp37 overflow(typename base::int_type __c = base::traits_type::eof())
39 if (__c != base::traits_type::eof())
42 str_.push_back(__c);
48 return __c;

Completed in 362 milliseconds

1234