Home
last modified time | relevance | path

Searched refs:__c (Results 1 – 25 of 75) sorted by relevance

123

/external/bison/lib/
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 >= '0' && __c <= '9') \
163 || (__c >= 'A' && __c <= 'Z') \
164 || (__c >= 'a' && __c <= 'z')); \
173 ({ int __c = (c); \
[all …]
/external/stlport/src/
Dcomplex_io.cpp52 char __c; in operator >>() local
54 __is >> __c; in operator >>()
55 if (__c == '(') { in operator >>()
56 __is >> __re >> __c; in operator >>()
57 if (__c == ',') in operator >>()
58 __is >> __im >> __c; in operator >>()
59 if (__c != ')') in operator >>()
63 __is.putback(__c); in operator >>()
78 char __c; in operator >>() local
80 __is >> __c; in operator >>()
[all …]
/external/clang/lib/Headers/
Daltivec.h40 vec_perm(vector signed char __a, vector signed char __b, vector unsigned char __c);
45 vector unsigned char __c);
48 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c);
51 vec_perm(vector short __a, vector short __b, vector unsigned char __c);
56 vector unsigned char __c);
59 vec_perm(vector bool short __a, vector bool short __b, vector unsigned char __c);
62 vec_perm(vector pixel __a, vector pixel __b, vector unsigned char __c);
65 vec_perm(vector int __a, vector int __b, vector unsigned char __c);
68 vec_perm(vector unsigned int __a, vector unsigned int __b, vector unsigned char __c);
71 vec_perm(vector bool int __a, vector bool int __b, vector unsigned char __c);
[all …]
/external/compiler-rt/lib/
Ddivxc3.c22 __divxc3(long double __a, long double __b, long double __c, long double __d) in __divxc3() argument
25 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d))); in __divxc3()
29 __c = crt_scalbnl(__c, -__ilogbw); in __divxc3()
32 long double __denom = __c * __c + __d * __d; in __divxc3()
34 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw); in __divxc3()
35 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw); in __divxc3()
40 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a; in __divxc3()
41 __imag__ z = crt_copysignl(CRT_INFINITY, __c) * __b; in __divxc3()
44 crt_isfinite(__c) && crt_isfinite(__d)) in __divxc3()
48 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divxc3()
[all …]
Ddivdc3.c21 __divdc3(double __a, double __b, double __c, double __d) in __divdc3() argument
24 double __logbw = crt_logb(crt_fmax(crt_fabs(__c), crt_fabs(__d))); in __divdc3()
28 __c = crt_scalbn(__c, -__ilogbw); in __divdc3()
31 double __denom = __c * __c + __d * __d; in __divdc3()
33 __real__ z = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw); in __divdc3()
34 __imag__ z = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw); in __divdc3()
39 __real__ z = crt_copysign(CRT_INFINITY, __c) * __a; in __divdc3()
40 __imag__ z = crt_copysign(CRT_INFINITY, __c) * __b; in __divdc3()
43 crt_isfinite(__c) && crt_isfinite(__d)) in __divdc3()
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divdc3()
[all …]
Ddivsc3.c21 __divsc3(float __a, float __b, float __c, float __d) in __divsc3() argument
24 float __logbw = crt_logbf(crt_fmaxf(crt_fabsf(__c), crt_fabsf(__d))); in __divsc3()
28 __c = crt_scalbnf(__c, -__ilogbw); in __divsc3()
31 float __denom = __c * __c + __d * __d; in __divsc3()
33 __real__ z = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divsc3()
34 __imag__ z = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divsc3()
39 __real__ z = crt_copysignf(CRT_INFINITY, __c) * __a; in __divsc3()
40 __imag__ z = crt_copysignf(CRT_INFINITY, __c) * __b; in __divsc3()
43 crt_isfinite(__c) && crt_isfinite(__d)) in __divsc3()
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divsc3()
[all …]
Dmulxc3.c23 __mulxc3(long double __a, long double __b, long double __c, long double __d) in __mulxc3() argument
25 long double __ac = __a * __c; in __mulxc3()
28 long double __bc = __b * __c; in __mulxc3()
39 if (crt_isnan(__c)) in __mulxc3()
40 __c = crt_copysignl(0, __c); in __mulxc3()
45 if (crt_isinf(__c) || crt_isinf(__d)) in __mulxc3()
47 __c = crt_copysignl(crt_isinf(__c) ? 1 : 0, __c); in __mulxc3()
62 if (crt_isnan(__c)) in __mulxc3()
63 __c = crt_copysignl(0, __c); in __mulxc3()
70 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __mulxc3()
[all …]
Dmulsc3.c21 __mulsc3(float __a, float __b, float __c, float __d) in __mulsc3() argument
23 float __ac = __a * __c; in __mulsc3()
26 float __bc = __b * __c; in __mulsc3()
37 if (crt_isnan(__c)) in __mulsc3()
38 __c = crt_copysignf(0, __c); in __mulsc3()
43 if (crt_isinf(__c) || crt_isinf(__d)) in __mulsc3()
45 __c = crt_copysignf(crt_isinf(__c) ? 1 : 0, __c); in __mulsc3()
60 if (crt_isnan(__c)) in __mulsc3()
61 __c = crt_copysignf(0, __c); in __mulsc3()
68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __mulsc3()
[all …]
Dmuldc3.c21 __muldc3(double __a, double __b, double __c, double __d) in __muldc3() argument
23 double __ac = __a * __c; in __muldc3()
26 double __bc = __b * __c; in __muldc3()
37 if (crt_isnan(__c)) in __muldc3()
38 __c = crt_copysign(0, __c); in __muldc3()
43 if (crt_isinf(__c) || crt_isinf(__d)) in __muldc3()
45 __c = crt_copysign(crt_isinf(__c) ? 1 : 0, __c); in __muldc3()
60 if (crt_isnan(__c)) in __muldc3()
61 __c = crt_copysign(0, __c); in __muldc3()
68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __muldc3()
[all …]
/external/stlport/stlport/stl/
D_ctype.h78 bool is(mask __m, char __c) const in is() argument
79 { return ((*(_M_ctype_table+(unsigned char)__c)) & __m) != 0; } in is()
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); } in widen() argument
106 char narrow(char __c, char __dfault) const { in narrow() argument
107 return do_narrow(__c, __dfault); in narrow()
123 virtual char do_toupper(char __c) const;
124 virtual char do_tolower(char __c) const;
127 virtual char do_widen(char __c) const;
[all …]
D_messages_facets.h65 string_type get(catalog __c, int __set, int __msgid, in get() argument
67 { return do_get(__c, __set, __msgid, __dfault); } in get()
68 inline void close(catalog __c) const in close() argument
69 { do_close(__c); } in close()
78 virtual string_type do_get(catalog __c, int __set, int __msgid, in do_get() argument
81 virtual void do_close(catalog __c) const in do_close() argument
98 inline string_type get(catalog __c, int __set, int __msgid, in get() argument
100 { return do_get(__c, __set, __msgid, __dfault); } in get()
101 inline void close(catalog __c) const in close() argument
102 { do_close(__c); } in close()
[all …]
Dchar_traits.h160 static const char_type* _STLP_CALL find(const char_type* __s, size_t __n, const char_type& __c) { in find() argument
162 if (eq(*__s, __c)) in find()
175 static char_type* _STLP_CALL assign(char_type* __s, size_t __n, char_type __c) { in assign() argument
177 __s[__i] = __c; in assign()
181 static int_type _STLP_CALL not_eof(const int_type& __c) in not_eof() argument
182 { return !eq_int_type(__c, eof()) ? __c : __STATIC_CAST(int_type, 0); } in not_eof()
184 static char_type _STLP_CALL to_char_type(const int_type& __c) in to_char_type() argument
185 { return (char_type)__c; } in to_char_type()
187 static int_type _STLP_CALL to_int_type(const char_type& __c) in to_int_type() argument
188 { return (int_type)__c; } in to_int_type()
[all …]
D_ios.h110 static bool _STLP_CALL _S_eof(int_type __c) { in _S_eof() argument
112 return _Traits::eq_int_type(__c, __eof); in _S_eof()
145 basic_ios<_CharT, _Traits>::narrow(_CharT __c, char __default) const in narrow() argument
146 { return _M_ctype_facet()->narrow(__c, __default); } in narrow()
150 basic_ios<_CharT, _Traits>::widen(char __c) const in widen() argument
151 { return _M_ctype_facet()->widen(__c); } in widen()
156 basic_ios<char, char_traits<char> >::narrow(char __c, char) const in narrow() argument
158 return __c; in narrow()
163 basic_ios<char, char_traits<char> >::widen(char __c) const in widen() argument
165 return __c; in widen()
D_ostream.h89 void _M_put_char(_CharT __c);
96 _Self& put(char_type __c);
241 operator<<(basic_ostream<_CharT, _Traits>& __os, _CharT __c){
242 __os._M_put_char(__c);
257 operator<<(basic_ostream<char, char_traits<char> >& __os, char __c) {
258 __os._M_put_char(__c);
263 operator<<(basic_ostream<char, char_traits<char> >& __os, signed char __c) {
264 __os._M_put_char(__c);
269 operator<<(basic_ostream<char, char_traits<char> >& __os, unsigned char __c) {
270 __os._M_put_char(__c);
[all …]
D_num_get.c38 inline bool _STLP_CALL __get_fdigit(char __c, const char*) in __get_fdigit() argument
39 { return __c >= '0' && __c <= '9'; } in __get_fdigit()
41 inline bool _STLP_CALL __get_fdigit_or_sep(char& __c, char __sep, const char *__digits) { in __get_fdigit_or_sep() argument
42 if (__c == __sep) { in __get_fdigit_or_sep()
43 __c = ',' ; in __get_fdigit_or_sep()
47 return __get_fdigit(__c, __digits); in __get_fdigit_or_sep()
62 _CharT __c = *__in_ite; in __get_base_or_zero() local
64 if (__c == __atoms[1] /* __xminus_char */ ) { in __get_base_or_zero()
68 else if (__c == __atoms[0] /* __xplus_char */ ) in __get_base_or_zero()
132 const _CharT __c = *__first; in __get_integer() local
[all …]
D_valarray.h490 inline valarray<_Tp> _STLP_CALL operator*(const valarray<_Tp>& __x, const _Tp& __c) {
494 __tmp[__i] = __x[__i] * __c;
499 inline valarray<_Tp> _STLP_CALL operator*(const _Tp& __c, const valarray<_Tp>& __x) {
503 __tmp[__i] = __c * __x[__i];
508 inline valarray<_Tp> _STLP_CALL operator/(const valarray<_Tp>& __x, const _Tp& __c) {
512 __tmp[__i] = __x[__i] / __c;
517 inline valarray<_Tp> _STLP_CALL operator/(const _Tp& __c, const valarray<_Tp>& __x) {
521 __tmp[__i] = __c / __x[__i];
526 inline valarray<_Tp> _STLP_CALL operator%(const valarray<_Tp>& __x, const _Tp& __c) {
530 __tmp[__i] = __x[__i] % __c;
[all …]
D_complex.c117 _CharT __c; variable
119 __is >> __c;
120 if (_Traits::eq(__c, __wpunct[0])) { // Left paren
121 __is >> __re >> __c;
122 if (_Traits::eq(__c, __wpunct[1])) // Comma
123 __is >> __im >> __c;
124 if (!_Traits::eq(__c, __wpunct[2])) // Right paren
128 __is.putback(__c);
D_ctraits_fns.h46 _Eq_char_bound(typename _Traits::char_type __c) : __val(__c) {} in _Eq_char_bound()
56 _Neq_char_bound(typename _Traits::char_type __c) : __val(__c) {} in _Neq_char_bound()
66 _Eq_int_bound(typename _Traits::int_type __c) : __val(__c) {} in _Eq_int_bound()
D_sstream.c107 int_type __c = _Traits::to_int_type(*this->gptr()); in uflow() local
109 return __c; in uflow()
117 basic_stringbuf<_CharT, _Traits, _Alloc>::pbackfail(int_type __c) { in pbackfail() argument
119 if (!_Traits::eq_int_type(__c, _Traits::eof())) { in pbackfail()
120 if (_Traits::eq(_Traits::to_char_type(__c), this->gptr()[-1])) { in pbackfail()
122 return __c; in pbackfail()
126 *this->gptr() = _Traits::to_char_type(__c); in pbackfail()
127 return __c; in pbackfail()
134 return _Traits::not_eof(__c); in pbackfail()
142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) in overflow() argument
[all …]
D_rope.c173 const _RopeConcat* __c = __STATIC_CAST(const _RopeConcat*, __curr_rope); in _S_setcache() local
174 _RopeRep* __left = __c->_M_left; in _S_setcache()
180 __curr_rope = __c->_M_right; in _S_setcache()
215 const _RopeConcat* __c; in _S_setcache_for_incr() local
229 __c = __STATIC_CAST(const _RopeConcat*, __current_node); in _S_setcache_for_incr()
232 __node_start_pos -= __c->_M_left->_M_size._M_data; in _S_setcache_for_incr()
241 __c = __STATIC_CAST(const _RopeConcat*, __current_node); in _S_setcache_for_incr()
245 __node_start_pos += __c->_M_left->_M_size._M_data; in _S_setcache_for_incr()
246 __current_node = __c->_M_right; in _S_setcache_for_incr()
330 _RopeConcatenation* __c = __STATIC_CAST(_RopeConcatenation*, this); in _M_free_tree() local
[all …]
D_streambuf.h190 virtual streamsize _M_xsputnc(char_type __c, streamsize __n);
198 int_type sputc(char_type __c) { in sputc() argument
199 return ((_M_pnext < _M_pend) ? _Traits::to_int_type(*_M_pnext++ = __c) in sputc()
200 : this->overflow(_Traits::to_int_type(__c))); in sputc()
208 streamsize _M_sputnc(char_type __c, streamsize __n) in _M_sputnc() argument
209 { return this->_M_xsputnc(__c, __n); } in _M_sputnc()
241 int_type sputbackc(char_type __c) { in sputbackc() argument
242 return ((_M_gbegin < _M_gnext) && _Traits::eq(__c, *(_M_gnext - 1))) in sputbackc()
244 : this->pbackfail(_Traits::to_int_type(__c)); in sputbackc()
D_istream.c59 bool operator()(argument_type __c) const in operator()
60 { return !_M_ctype->is(ctype_base::space, __c); } in operator()
71 bool operator()(argument_type __c) const { in operator()
72 return _Traits::eq(__c, argument_type()) || in operator()
73 _M_ctype->is(ctype_base::space, __c); in operator()
168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) { in __pushback() argument
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof); in __pushback()
364 basic_istream<_CharT, _Traits>::get(_CharT& __c) { in get() argument
379 __c = _Traits::to_char_type(__tmp); in get()
400 int_type __c; in ignore() local
[all …]
/external/stlport/stlport/stl/debug/
D_string.h116 basic_string(size_type __n, _CharT __c,
118 : _M_non_dbg_impl(__n, __c, __a), _M_iter_list(&_M_non_dbg_impl) {} in _M_non_dbg_impl() argument
178 _Self& operator=(_CharT __c) {
179 return assign(1, __c);
198 void resize(size_type __n, _CharT __c) { in resize() argument
203 _M_non_dbg_impl.resize(__n, __c); in resize()
240 _Self& operator+=(_CharT __c) { return append(1, __c); }
305 _Self& append(size_type __n, _CharT __c) { in append() argument
307 _M_non_dbg_impl.append(__n, __c); in append()
312 void push_back(_CharT __c) { in push_back() argument
[all …]
D_iterator.h103 __container_type* __c = __it._Get_container_ptr(); in _Incrementable() local
104 return (__c != 0) && ((__n == 1 && __it._M_iterator != __c->end() ) || in _Incrementable()
105 (__n == -1 && __it._M_iterator != __c->begin())); in _Incrementable()
111 __container_type* __c = __it._Get_container_ptr(); in _Incrementable() local
112 if (__c == 0) return false; in _Incrementable()
113 ptrdiff_t __new_pos = (__it._M_iterator - __c->begin()) + __n; in _Incrementable()
114 …__new_pos >= 0) && (__STATIC_CAST(typename __container_type::size_type, __new_pos) <= __c->size()); in _Incrementable()
138 _DBG_iter_base(const __owned_list* __c, const _Const_iterator& __it) : in _DBG_iter_base()
140 __owned_link(__c), _M_iterator(*__REINTERPRET_CAST(const _Nonconst_iterator *, &__it)) {} in _DBG_iter_base()
142 __owned_link(__c), _M_iterator(*(const _Nonconst_iterator*)&__it) {}
[all …]
/external/clang/test/Parser/
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 == __…

123