Searched defs:__c (Results 1 - 25 of 57) sorted by relevance

123

/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/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 __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...]
H A Dfstream.cpp49 int_type __c = traits_type::to_int_type(*__this->gptr()); local
50 return __c;
/external/stlport/stlport/stl/
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_istream.c59 bool operator()(argument_type __c) const
60 { return !_M_ctype->is(ctype_base::space, __c); } member in struct:_Is_not_wspace
71 bool operator()(argument_type __c) const {
72 return _Traits::eq(__c, argument_type()) ||
73 _M_ctype->is(ctype_base::space, __c);
168 __pushback(basic_streambuf<_CharT, _Traits>* __buf, _CharT __c) {
172 ret = !_Traits::eq_int_type(__buf->sputbackc(__c), __eof);
378 basic_istream<_CharT, _Traits>::get(_CharT& __c) {
393 __c = _Traits::to_char_type(__tmp);
414 int_type __c;
[all...]
H A D_string_operators.h64 operator+(_CharT __c, argument
73 __result.push_back(__c);
99 const _CharT __c) {
108 __result.push_back(__c);
235 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT __c) {
239 __root_type __root(__c, _STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc>(__x.get_allocator()));
252 operator+(const _CharT __c, const basic_string<_CharT,_Traits,_Alloc>& __x) {
258 __root_type, _STLP_PRIV __on_right>(__c, __root);
266 operator+(const _STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir>& __x, const _CharT __c) {
268 _STLP_PRIV __char_wrapper<_CharT>, _STLP_PRIV __on_left>(__x, __c);
98 operator +(const basic_string<_CharT,_Traits,_Alloc>& __x, const _CharT __c) argument
[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_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*/,
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); }
[all...]
H A D_ostreambuf_iterator.h61 ostreambuf_iterator<_CharT, _Traits>& operator=(char_type __c) { argument
62 _M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
H A D_string_sum_methods.h41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) { argument
42 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
59 _CharT* _M_append_fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf, size_type /*__pos*/, size_type __n) { argument
62 _STLP_STD::_Copy_Construct(__buf, __c.getValue());
H A D_bitset.c197 char __c = __is.narrow(__c2, '*'); local
199 if (__c == '0' || __c == '1')
200 __tmp.push_back(__c);
H A D_iomanip.h137 _Setfill_Manip(_CharT __c) : _M_c(__c) {} argument
160 inline _STLP_PRIV _Setfill_Manip<_CharT> _STLP_CALL setfill(_CharT __c) argument
161 { return _STLP_PRIV _Setfill_Manip<_CharT>(__c); }
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_queue.h87 explicit queue(const _Sequence& __c) : c(__c) {} argument
212 const _Compare& __x, const _Sequence& __c)
213 : c(__c), comp(__x)
211 priority_queue(const value_type* __first, const value_type* __last, const _Compare& __x, const _Sequence& __c) argument
H A D_stream_iterator.h178 ostream_iterator(ostream_type& __s, const _CharT* __c) argument
179 : _M_stream(&__s), _M_string(__c) {}
H A D_streambuf.c68 int_type __c = this->sbumpc(); local
69 if (!_Traits::eq_int_type(__c, __eof)) {
70 *__s = _Traits::to_char_type(__c);
112 basic_streambuf<_CharT, _Traits>::_M_xsputnc(_CharT __c, streamsize __n) argument
121 _Traits::assign(_M_pnext, __chunk, __c);
126 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(__c)),
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);
/external/chromium_org/tools/page_cycler/common/
H A Dhead.js5 var __c = ""; // that's good enough for me. variable
/external/stlport/stlport/stl/debug/
H A D_string_sum_methods.h43 _Base& _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str) argument
44 { return __str += __c.getValue(); }
59 _Base& _M_append_fast_pos(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str, size_type /*__pos*/, size_type __n) { argument
62 return __str += __c.getValue();

Completed in 336 milliseconds

123