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

123

/external/compiler-rt/lib/
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 __real__ z = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
39 __real__ z = crt_copysign(CRT_INFINITY, __c) * __a;
40 __imag__ 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 __real__ z = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
39 __real__ z = crt_copysignf(CRT_INFINITY, __c) * __a;
40 __imag__ z = crt_copysignf(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 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
40 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a;
41 __imag__ 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/stlport/src/
H A Dcomplex_io.cpp52 char __c; local
54 __is >> __c; local
55 if (__c == '(') {
56 __is >> __re >> __c; local
57 if (__c == ',')
58 __is >> __im >> __c; local
59 if (__c != ')')
63 __is.putback(__c);
78 char __c; local
80 __is >> __c; local
82 __is >> __re >> __c; local
84 __is >> __im >> __c; local
105 char __c; local
107 __is >> __c; local
109 __is >> __re >> __c; local
111 __is >> __im >> __c; local
[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);
/external/stlport/stlport/stl/
H A D_ctype.h78 bool is(mask __m, char __c) const
79 { return ((*(_M_ctype_table+(unsigned char)__c)) & __m) != 0; }
91 char (toupper)(char __c) const { return do_toupper(__c); }
96 char (tolower)(char __c) const { return do_tolower(__c); }
101 char widen(char __c) const { return do_widen(__c); }
106 char narrow(char __c, char __dfault) const { argument
107 return do_narrow(__c, __dfaul
137 operator ()(char __c) argument
211 narrow(wchar_t __c, char __dfault) const argument
[all...]
H A D_messages_facets.h65 string_type get(catalog __c, int __set, int __msgid, argument
67 { return do_get(__c, __set, __msgid, __dfault); }
68 inline void close(catalog __c) const
69 { do_close(__c); }
78 virtual string_type do_get(catalog __c, int __set, int __msgid, argument
81 virtual void do_close(catalog __c) const
98 inline string_type get(catalog __c, int __set, int __msgid, argument
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
111 do_get(catalog __c, int __set, int __msgid, const string_type& __dfault) const argument
[all...]
H A Dchar_traits.h160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { argument
162 if (eq(*__s, __c))
175 static char_type* _STLP_CALL assign(char_type* __s, size_t __n, char_type __c) { argument
177 __s[__i] = __c;
181 static int_type _STLP_CALL not_eof(const int_type& __c) argument
182 { return !eq_int_type(__c, eof()) ? __c : __STATIC_CAST(int_type, 0); }
184 static char_type _STLP_CALL to_char_type(const int_type& __c) argument
185 { return (char_type)__c; }
187 static int_type _STLP_CALL to_int_type(const char_type& __c) argument
219 to_char_type(const int& __c) argument
222 to_int_type(const char& __c) argument
234 assign(char* __s, size_t __n, char __c) argument
260 assign(wchar_t* __s, size_t __n, wchar_t __c) argument
[all...]
H A D_ctraits_fns.h46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {} argument
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {} argument
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {} argument
H A D_ios.h110 static bool _STLP_CALL _S_eof(int_type __c) { argument
112 return _Traits::eq_int_type(__c, __eof);
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const argument
146 { return _M_ctype_facet()->narrow(__c, __default); }
150 basic_ios<_CharT, _Traits>::widen(char __c) const
151 { return _M_ctype_facet()->widen(__c); }
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const argument
158 return __c;
163 basic_ios<char, char_traits<char> >::widen(char __c) const
165 return __c;
[all...]
H A D_complex.c117 _CharT __c; local
119 __is >> __c; local
120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren
121 __is >> __re >> __c; local
122 if (_Traits::eq(__c, __wpunct[1])) // Comma
123 __is >> __im >> __c; local
124 if (!_Traits::eq(__c, __wpunct[2])) // Right paren
128 __is.putback(__c);
H A D_ostream.h89 void _M_put_char(_CharT __c);
96 _Self& put(char_type __c);
241 operator<<(basic_ostream<_CharT, _Traits>& __os, _CharT __c){ argument
242 __os._M_put_char(__c);
257 operator<<(basic_ostream<char, char_traits<char> >& __os, char __c) { argument
258 __os._M_put_char(__c);
263 operator<<(basic_ostream<char, char_traits<char> >& __os, signed char __c) { argument
264 __os._M_put_char(__c);
269 operator<<(basic_ostream<char, char_traits<char> >& __os, unsigned char __c) { argument
270 __os._M_put_char(__c);
297 operator <<(basic_ostream<_CharT, _Traits>& __os, char __c) argument
304 operator <<(basic_ostream<char, _Traits>& __os, char __c) argument
311 operator <<(basic_ostream<char, _Traits>& __os, signed char __c) argument
318 operator <<(basic_ostream<char, _Traits>& __os, unsigned char __c) argument
[all...]
H A D_streambuf.h188 // Extension: writes up to __n copies of __c. Return value is the number
190 virtual streamsize _M_xsputnc(char_type __c, streamsize __n);
198 int_type sputc(char_type __c) { argument
199 return ((_M_pnext < _M_pend) ? _Traits::to_int_type(*_M_pnext++ = __c)
200 : this->overflow(_Traits::to_int_type(__c)));
207 // Extension: write __n copies of __c.
208 streamsize _M_sputnc(char_type __c, streamsize __n) argument
209 { return this->_M_xsputnc(__c, __n); }
241 int_type sputbackc(char_type __c) { argument
242 return ((_M_gbegin < _M_gnext) && _Traits::eq(__c, *(_M_gnex
[all...]
H A D_valarray.h490 inline valarray<_Tp> _STLP_CALL operator*(const valarray<_Tp>& __x, const _Tp& __c) { argument
494 __tmp[__i] = __x[__i] * __c;
499 inline valarray<_Tp> _STLP_CALL operator*(const _Tp& __c, const valarray<_Tp>& __x) { argument
503 __tmp[__i] = __c * __x[__i];
508 inline valarray<_Tp> _STLP_CALL operator/(const valarray<_Tp>& __x, const _Tp& __c) { argument
512 __tmp[__i] = __x[__i] / __c;
517 inline valarray<_Tp> _STLP_CALL operator/(const _Tp& __c, const valarray<_Tp>& __x) { argument
521 __tmp[__i] = __c / __x[__i];
526 inline valarray<_Tp> _STLP_CALL operator%(const valarray<_Tp>& __x, const _Tp& __c) { argument
530 __tmp[__i] = __x[__i] % __c;
535 operator %(const _Tp& __c, const valarray<_Tp>& __x) argument
544 operator +(const valarray<_Tp>& __x, const _Tp& __c) argument
553 operator +(const _Tp& __c, const valarray<_Tp>& __x) argument
562 operator -(const valarray<_Tp>& __x, const _Tp& __c) argument
571 operator -(const _Tp& __c, const valarray<_Tp>& __x) argument
580 operator ^(const valarray<_Tp>& __x, const _Tp& __c) argument
589 operator ^(const _Tp& __c, const valarray<_Tp>& __x) argument
598 operator &(const valarray<_Tp>& __x, const _Tp& __c) argument
607 operator &(const _Tp& __c, const valarray<_Tp>& __x) argument
616 operator |(const valarray<_Tp>& __x, const _Tp& __c) argument
625 operator |(const _Tp& __c, const valarray<_Tp>& __x) argument
634 operator <<(const valarray<_Tp>& __x, const _Tp& __c) argument
643 operator <<(const _Tp& __c, const valarray<_Tp>& __x) argument
652 operator >>(const valarray<_Tp>& __x, const _Tp& __c) argument
661 operator >>(const _Tp& __c, const valarray<_Tp>& __x) argument
[all...]
H A D_sstream.c107 int_type __c = _Traits::to_int_type(*this->gptr()); local
109 return __c;
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) { argument
119 if (!_Traits::eq_int_type(__c, _Traits::eof())) {
120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) {
122 return __c;
126 *this->gptr() = _Traits::to_char_type(__c);
127 return __c;
134 return _Traits::not_eof(__c);
142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) argument
213 _M_xsputnc(char_type __c, streamsize __n) argument
[all...]
H A D_num_get.c38 inline bool _STLP_CALL __get_fdigit(char __c, const char*) argument
39 { return __c >= '0' && __c <= '9'; }
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) { argument
42 if (__c == __sep) {
43 __c = ',' ;
47 return __get_fdigit(__c, __digits);
62 _CharT __c = *__in_ite; local
64 if (__c == __atoms[1] /* __xminus_char */ ) {
68 else if (__c
132 const _CharT __c = *__first; local
192 const _CharT __c = *__first; local
300 _CharT __c = *__first; local
319 _CharT __c = *__first; local
342 _CharT __c = *__first; local
459 _CharT __c = *__in_ite; local
[all...]
H A D_string.c180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) { argument
186 _STLP_PRIV __uninitialized_fill_n(this->_M_finish + 1, __n - 1, __c);
188 _Traits::assign(*end(), __c); local
222 basic_string<_CharT,_Traits,_Alloc>::assign(size_type __n, _CharT __c) { argument
224 _Traits::assign(this->_M_Start(), __n, __c);
229 _Traits::assign(this->_M_Start(), size(), __c);
230 append(__n - size(), __c);
233 _Self __str(__n, __c);
257 _CharT __c) {
262 _Traits::assign(*__p, __c);
256 _M_insert_aux(_CharT* __p, _CharT __c) argument
280 insert(iterator __pos, size_t __n, _CharT __c) argument
372 replace(iterator __first, iterator __last, size_type __n, _CharT __c) argument
438 find(_CharT __c, size_type __pos) const argument
468 rfind(_CharT __c, size_type __pos) const argument
528 find_first_not_of(_CharT __c, size_type __pos) const argument
559 find_last_not_of(_CharT __c, size_type __pos) const argument
[all...]
H A D_string_io.c109 _CharT __c = _Traits::to_char_type(__c1); local
111 if (_Ctype.is(_C_type::space, __c)) {
112 if (_Traits::eq_int_type(__buf->sputbackc(__c), _Traits::eof()))
117 __s.push_back(__c);
152 _CharT __c = _Traits::to_char_type(__c1); local
153 if (!_Traits::eq(__c, __delim))
154 __s.push_back(__c);
H A D_rope.c173 const _RopeConcat* __c = __STATIC_CAST(const _RopeConcat*, __curr_rope); local
174 _RopeRep* __left = __c->_M_left;
180 __curr_rope = __c->_M_right;
215 const _RopeConcat* __c; local
229 __c = __STATIC_CAST(const _RopeConcat*, __current_node);
232 __node_start_pos -= __c->_M_left->_M_size._M_data;
241 __c = __STATIC_CAST(const _RopeConcat*, __current_node);
245 __node_start_pos += __c->_M_left->_M_size._M_data;
246 __current_node = __c->_M_right;
330 _RopeConcatenation* __c local
641 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, __base); local
785 _S_apply_to_pieces(_CharConsumer& __c, _Rope_RopeRep<_CharT, _Alloc> * __r, size_t __begin, size_t __end) argument
923 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, __r); local
959 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, __r); local
1069 _RopeConcatenation* __c = (_RopeConcatenation*)__r; local
1133 _RopeConcatenation* __c = (_RopeConcatenation*)__r; local
1184 _RopeConcatenation* __c = (_RopeConcatenation*)__r; local
[all...]
/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/stlport/stlport/stl/debug/
H A D_iterator.h103 __container_type* __c = __it._Get_container_ptr(); local
104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) ||
105 (__n == -1 && __it._M_iterator != __c->begin()));
111 __container_type* __c = __it._Get_container_ptr(); local
112 if (__c == 0) return false;
113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n;
114 return (__new_pos >= 0) && (__STATIC_CAST(typename __container_type::size_type, __new_pos) <= __c->size());
138 _DBG_iter_base(const __owned_list* __c, const _Const_iterator& __it) : argument
140 __owned_link(__c), _M_iterato
193 _DBG_iter_mid(const __owned_list* __c, const _Const_iterator& __it) argument
223 _DBG_iter(const __owned_list* __c, const _Const_iterator& __it) argument
[all...]
H A D_string.h116 basic_string(size_type __n, _CharT __c, argument
118 : _M_non_dbg_impl(__n, __c, __a), _M_iter_list(&_M_non_dbg_impl) {}
178 _Self& operator=(_CharT __c) { argument
179 return assign(1, __c);
198 void resize(size_type __n, _CharT __c) { argument
203 _M_non_dbg_impl.resize(__n, __c);
240 _Self& operator+=(_CharT __c) { return append(1, __c); } argument
305 _Self& append(size_type __n, _CharT __c) { argument
307 _M_non_dbg_impl.append(__n, __c);
312 push_back(_CharT __c) argument
354 assign(size_type __n, _CharT __c) argument
419 insert(size_type __pos, size_type __n, _CharT __c) argument
426 insert(iterator __p, _CharT __c) argument
434 insert(iterator __p, size_t __n, _CharT __c) argument
548 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
583 replace(iterator __f, iterator __l, size_type __n, _CharT __c) argument
707 find(_CharT __c, size_type __pos ) const argument
723 rfind(_CharT __c, size_type __pos = npos) const argument
739 find_first_of(_CharT __c, size_type __pos = 0) const argument
755 find_last_of(_CharT __c, size_type __pos = npos) const argument
771 find_first_not_of(_CharT __c, size_type __pos = 0) const argument
787 find_last_not_of(_CharT __c, size_type __pos = npos) const argument
[all...]

Completed in 341 milliseconds

123