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

12345

/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 __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 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_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_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
/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/clang/lib/Headers/
H A 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);
1645 vec_dst(const void *__a, int __b, int __c) argument
1653 vec_dstst(const void *__a, int __b, int __c) argument
1661 vec_dststt(const void *__a, int __b, int __c) argument
1669 vec_dstt(const void *__a, int __b, int __c) argument
2345 vec_madd(vector float __a, vector float __b, vector float __c) argument
2353 vec_vmaddfp(vector float __a, vector float __b, vector float __c) argument
2361 vec_madds(vector signed short __a, vector signed short __b, vector signed short __c) argument
2368 vec_vmhaddshs(vector signed short __a, vector signed short __b, vector signed short __c) argument
3256 vec_mladd(vector short __a, vector short __b, vector short __c) argument
3262 vec_mladd(vector short __a, vector unsigned short __b, vector unsigned short __c) argument
3268 vec_mladd(vector unsigned short __a, vector short __b, vector short __c) argument
3274 vec_mladd(vector unsigned short __a, vector unsigned short __b, vector unsigned short __c) argument
3284 vec_vmladduhm(vector short __a, vector short __b, vector short __c) argument
3290 vec_vmladduhm(vector short __a, vector unsigned short __b, vector unsigned short __c) argument
3296 vec_vmladduhm(vector unsigned short __a, vector short __b, vector short __c) argument
3302 vec_vmladduhm(vector unsigned short __a, vector unsigned short __b, vector unsigned short __c) argument
3312 vec_mradds(vector short __a, vector short __b, vector short __c) argument
3320 vec_vmhraddshs(vector short __a, vector short __b, vector short __c) argument
3328 vec_msum(vector signed char __a, vector unsigned char __b, vector int __c) argument
3334 vec_msum(vector unsigned char __a, vector unsigned char __b, vector unsigned int __c) argument
3340 vec_msum(vector short __a, vector short __b, vector int __c) argument
3346 vec_msum(vector unsigned short __a, vector unsigned short __b, vector unsigned int __c) argument
3356 vec_vmsummbm(vector signed char __a, vector unsigned char __b, vector int __c) argument
3364 vec_vmsumubm(vector unsigned char __a, vector unsigned char __b, vector unsigned int __c) argument
3374 vec_vmsumshm(vector short __a, vector short __b, vector int __c) argument
3382 vec_vmsumuhm(vector unsigned short __a, vector unsigned short __b, vector unsigned int __c) argument
3392 vec_msums(vector short __a, vector short __b, vector int __c) argument
3398 vec_msums(vector unsigned short __a, vector unsigned short __b, vector unsigned int __c) argument
3408 vec_vmsumshs(vector short __a, vector short __b, vector int __c) argument
3416 vec_vmsumuhs(vector unsigned short __a, vector unsigned short __b, vector unsigned int __c) argument
3677 vec_nmsub(vector float __a, vector float __b, vector float __c) argument
3685 vec_vnmsubfp(vector float __a, vector float __b, vector float __c) argument
4510 vec_perm(vector signed char __a, vector signed char __b, vector unsigned char __c) argument
4525 vec_perm(vector unsigned char __a, vector unsigned char __b, vector unsigned char __c) argument
4542 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c) argument
4557 vec_perm(vector short __a, vector short __b, vector unsigned char __c) argument
4572 vec_perm(vector unsigned short __a, vector unsigned short __b, vector unsigned char __c) argument
4589 vec_perm(vector bool short __a, vector bool short __b, vector unsigned char __c) argument
4604 vec_perm(vector pixel __a, vector pixel __b, vector unsigned char __c) argument
4619 vec_perm(vector int __a, vector int __b, vector unsigned char __c) argument
4632 vec_perm(vector unsigned int __a, vector unsigned int __b, vector unsigned char __c) argument
4647 vec_perm(vector bool int __a, vector bool int __b, vector unsigned char __c) argument
4662 vec_perm(vector float __a, vector float __b, vector unsigned char __c) argument
4679 vec_vperm(vector signed char __a, vector signed char __b, vector unsigned char __c) argument
4685 vec_vperm(vector unsigned char __a, vector unsigned char __b, vector unsigned char __c) argument
4693 vec_vperm(vector bool char __a, vector bool char __b, vector unsigned char __c) argument
4699 vec_vperm(vector short __a, vector short __b, vector unsigned char __c) argument
4705 vec_vperm(vector unsigned short __a, vector unsigned short __b, vector unsigned char __c) argument
4713 vec_vperm(vector bool short __a, vector bool short __b, vector unsigned char __c) argument
4719 vec_vperm(vector pixel __a, vector pixel __b, vector unsigned char __c) argument
4725 vec_vperm(vector int __a, vector int __b, vector unsigned char __c) argument
4731 vec_vperm(vector unsigned int __a, vector unsigned int __b, vector unsigned char __c) argument
4737 vec_vperm(vector bool int __a, vector bool int __b, vector unsigned char __c) argument
4743 vec_vperm(vector float __a, vector float __b, vector unsigned char __c) argument
4881 vec_sel(vector signed char __a, vector signed char __b, vector unsigned char __c) argument
4887 vec_sel(vector signed char __a, vector signed char __b, vector bool char __c) argument
4893 vec_sel(vector unsigned char __a, vector unsigned char __b, vector unsigned char __c) argument
4899 vec_sel(vector unsigned char __a, vector unsigned char __b, vector bool char __c) argument
4905 vec_sel(vector bool char __a, vector bool char __b, vector unsigned char __c) argument
4911 vec_sel(vector bool char __a, vector bool char __b, vector bool char __c) argument
4917 vec_sel(vector short __a, vector short __b, vector unsigned short __c) argument
4923 vec_sel(vector short __a, vector short __b, vector bool short __c) argument
4929 vec_sel(vector unsigned short __a, vector unsigned short __b, vector unsigned short __c) argument
4937 vec_sel(vector unsigned short __a, vector unsigned short __b, vector bool short __c) argument
4943 vec_sel(vector bool short __a, vector bool short __b, vector unsigned short __c) argument
4949 vec_sel(vector bool short __a, vector bool short __b, vector bool short __c) argument
4955 vec_sel(vector int __a, vector int __b, vector unsigned int __c) argument
4961 vec_sel(vector int __a, vector int __b, vector bool int __c) argument
4967 vec_sel(vector unsigned int __a, vector unsigned int __b, vector unsigned int __c) argument
4973 vec_sel(vector unsigned int __a, vector unsigned int __b, vector bool int __c) argument
4979 vec_sel(vector bool int __a, vector bool int __b, vector unsigned int __c) argument
4985 vec_sel(vector bool int __a, vector bool int __b, vector bool int __c) argument
4991 vec_sel(vector float __a, vector float __b, vector unsigned int __c) argument
4999 vec_sel(vector float __a, vector float __b, vector bool int __c) argument
5009 vec_vsel(vector signed char __a, vector signed char __b, vector unsigned char __c) argument
5015 vec_vsel(vector signed char __a, vector signed char __b, vector bool char __c) argument
5021 vec_vsel(vector unsigned char __a, vector unsigned char __b, vector unsigned char __c) argument
5027 vec_vsel(vector unsigned char __a, vector unsigned char __b, vector bool char __c) argument
5033 vec_vsel(vector bool char __a, vector bool char __b, vector unsigned char __c) argument
5039 vec_vsel(vector bool char __a, vector bool char __b, vector bool char __c) argument
5045 vec_vsel(vector short __a, vector short __b, vector unsigned short __c) argument
5051 vec_vsel(vector short __a, vector short __b, vector bool short __c) argument
5057 vec_vsel(vector unsigned short __a, vector unsigned short __b, vector unsigned short __c) argument
5065 vec_vsel(vector unsigned short __a, vector unsigned short __b, vector bool short __c) argument
5071 vec_vsel(vector bool short __a, vector bool short __b, vector unsigned short __c) argument
5077 vec_vsel(vector bool short __a, vector bool short __b, vector bool short __c) argument
5083 vec_vsel(vector int __a, vector int __b, vector unsigned int __c) argument
5089 vec_vsel(vector int __a, vector int __b, vector bool int __c) argument
5095 vec_vsel(vector unsigned int __a, vector unsigned int __b, vector unsigned int __c) argument
5101 vec_vsel(vector unsigned int __a, vector unsigned int __b, vector bool int __c) argument
5107 vec_vsel(vector bool int __a, vector bool int __b, vector unsigned int __c) argument
5113 vec_vsel(vector bool int __a, vector bool int __b, vector bool int __c) argument
5119 vec_vsel(vector float __a, vector float __b, vector unsigned int __c) argument
5127 vec_vsel(vector float __a, vector float __b, vector bool int __c) argument
5225 vec_sld(vector signed char __a, vector signed char __b, unsigned char __c) argument
5239 vec_sld(vector unsigned char __a, vector unsigned char __b, unsigned char __c) argument
5253 vec_sld(vector short __a, vector short __b, unsigned char __c) argument
5267 vec_sld(vector unsigned short __a, vector unsigned short __b, unsigned char __c) argument
5281 vec_sld(vector pixel __a, vector pixel __b, unsigned char __c) argument
5295 vec_sld(vector int __a, vector int __b, unsigned char __c) argument
5309 vec_sld(vector unsigned int __a, vector unsigned int __b, unsigned char __c) argument
5323 vec_sld(vector float __a, vector float __b, unsigned char __c) argument
5339 vec_vsldoi(vector signed char __a, vector signed char __b, unsigned char __c) argument
5353 vec_vsldoi(vector unsigned char __a, vector unsigned char __b, unsigned char __c) argument
5367 vec_vsldoi(vector short __a, vector short __b, unsigned char __c) argument
5381 vec_vsldoi(vector unsigned short __a, vector unsigned short __b, unsigned char __c) argument
5395 vec_vsldoi(vector pixel __a, vector pixel __b, unsigned char __c) argument
5409 vec_vsldoi(vector int __a, vector int __b, unsigned char __c) argument
5423 vec_vsldoi(vector unsigned int __a, vector unsigned int __b, unsigned char __c) argument
5437 vec_vsldoi(vector float __a, vector float __b, unsigned char __c) argument
7100 vec_st(vector signed char __a, int __b, vector signed char *__c) argument
7106 vec_st(vector signed char __a, int __b, signed char *__c) argument
7112 vec_st(vector unsigned char __a, int __b, vector unsigned char *__c) argument
7118 vec_st(vector unsigned char __a, int __b, unsigned char *__c) argument
7124 vec_st(vector bool char __a, int __b, signed char *__c) argument
7130 vec_st(vector bool char __a, int __b, unsigned char *__c) argument
7136 vec_st(vector bool char __a, int __b, vector bool char *__c) argument
7142 vec_st(vector short __a, int __b, vector short *__c) argument
7148 vec_st(vector short __a, int __b, short *__c) argument
7154 vec_st(vector unsigned short __a, int __b, vector unsigned short *__c) argument
7160 vec_st(vector unsigned short __a, int __b, unsigned short *__c) argument
7166 vec_st(vector bool short __a, int __b, short *__c) argument
7172 vec_st(vector bool short __a, int __b, unsigned short *__c) argument
7178 vec_st(vector bool short __a, int __b, vector bool short *__c) argument
7184 vec_st(vector pixel __a, int __b, short *__c) argument
7190 vec_st(vector pixel __a, int __b, unsigned short *__c) argument
7196 vec_st(vector pixel __a, int __b, vector pixel *__c) argument
7202 vec_st(vector int __a, int __b, vector int *__c) argument
7208 vec_st(vector int __a, int __b, int *__c) argument
7214 vec_st(vector unsigned int __a, int __b, vector unsigned int *__c) argument
7220 vec_st(vector unsigned int __a, int __b, unsigned int *__c) argument
7226 vec_st(vector bool int __a, int __b, int *__c) argument
7232 vec_st(vector bool int __a, int __b, unsigned int *__c) argument
7238 vec_st(vector bool int __a, int __b, vector bool int *__c) argument
7244 vec_st(vector float __a, int __b, vector float *__c) argument
7250 vec_st(vector float __a, int __b, float *__c) argument
7258 vec_stvx(vector signed char __a, int __b, vector signed char *__c) argument
7264 vec_stvx(vector signed char __a, int __b, signed char *__c) argument
7270 vec_stvx(vector unsigned char __a, int __b, vector unsigned char *__c) argument
7276 vec_stvx(vector unsigned char __a, int __b, unsigned char *__c) argument
7282 vec_stvx(vector bool char __a, int __b, signed char *__c) argument
7288 vec_stvx(vector bool char __a, int __b, unsigned char *__c) argument
7294 vec_stvx(vector bool char __a, int __b, vector bool char *__c) argument
7300 vec_stvx(vector short __a, int __b, vector short *__c) argument
7306 vec_stvx(vector short __a, int __b, short *__c) argument
7312 vec_stvx(vector unsigned short __a, int __b, vector unsigned short *__c) argument
7318 vec_stvx(vector unsigned short __a, int __b, unsigned short *__c) argument
7324 vec_stvx(vector bool short __a, int __b, short *__c) argument
7330 vec_stvx(vector bool short __a, int __b, unsigned short *__c) argument
7336 vec_stvx(vector bool short __a, int __b, vector bool short *__c) argument
7342 vec_stvx(vector pixel __a, int __b, short *__c) argument
7348 vec_stvx(vector pixel __a, int __b, unsigned short *__c) argument
7354 vec_stvx(vector pixel __a, int __b, vector pixel *__c) argument
7360 vec_stvx(vector int __a, int __b, vector int *__c) argument
7366 vec_stvx(vector int __a, int __b, int *__c) argument
7372 vec_stvx(vector unsigned int __a, int __b, vector unsigned int *__c) argument
7378 vec_stvx(vector unsigned int __a, int __b, unsigned int *__c) argument
7384 vec_stvx(vector bool int __a, int __b, int *__c) argument
7390 vec_stvx(vector bool int __a, int __b, unsigned int *__c) argument
7396 vec_stvx(vector bool int __a, int __b, vector bool int *__c) argument
7402 vec_stvx(vector float __a, int __b, vector float *__c) argument
7408 vec_stvx(vector float __a, int __b, float *__c) argument
7416 vec_ste(vector signed char __a, int __b, signed char *__c) argument
7422 vec_ste(vector unsigned char __a, int __b, unsigned char *__c) argument
7428 vec_ste(vector bool char __a, int __b, signed char *__c) argument
7434 vec_ste(vector bool char __a, int __b, unsigned char *__c) argument
7440 vec_ste(vector short __a, int __b, short *__c) argument
7446 vec_ste(vector unsigned short __a, int __b, unsigned short *__c) argument
7452 vec_ste(vector bool short __a, int __b, short *__c) argument
7458 vec_ste(vector bool short __a, int __b, unsigned short *__c) argument
7464 vec_ste(vector pixel __a, int __b, short *__c) argument
7470 vec_ste(vector pixel __a, int __b, unsigned short *__c) argument
7476 vec_ste(vector int __a, int __b, int *__c) argument
7482 vec_ste(vector unsigned int __a, int __b, unsigned int *__c) argument
7488 vec_ste(vector bool int __a, int __b, int *__c) argument
7494 vec_ste(vector bool int __a, int __b, unsigned int *__c) argument
7500 vec_ste(vector float __a, int __b, float *__c) argument
7508 vec_stvebx(vector signed char __a, int __b, signed char *__c) argument
7514 vec_stvebx(vector unsigned char __a, int __b, unsigned char *__c) argument
7520 vec_stvebx(vector bool char __a, int __b, signed char *__c) argument
7526 vec_stvebx(vector bool char __a, int __b, unsigned char *__c) argument
7534 vec_stvehx(vector short __a, int __b, short *__c) argument
7540 vec_stvehx(vector unsigned short __a, int __b, unsigned short *__c) argument
7546 vec_stvehx(vector bool short __a, int __b, short *__c) argument
7552 vec_stvehx(vector bool short __a, int __b, unsigned short *__c) argument
7558 vec_stvehx(vector pixel __a, int __b, short *__c) argument
7564 vec_stvehx(vector pixel __a, int __b, unsigned short *__c) argument
7572 vec_stvewx(vector int __a, int __b, int *__c) argument
7578 vec_stvewx(vector unsigned int __a, int __b, unsigned int *__c) argument
7584 vec_stvewx(vector bool int __a, int __b, int *__c) argument
7590 vec_stvewx(vector bool int __a, int __b, unsigned int *__c) argument
7596 vec_stvewx(vector float __a, int __b, float *__c) argument
7604 vec_stl(vector signed char __a, int __b, vector signed char *__c) argument
7610 vec_stl(vector signed char __a, int __b, signed char *__c) argument
7616 vec_stl(vector unsigned char __a, int __b, vector unsigned char *__c) argument
7622 vec_stl(vector unsigned char __a, int __b, unsigned char *__c) argument
7628 vec_stl(vector bool char __a, int __b, signed char *__c) argument
7634 vec_stl(vector bool char __a, int __b, unsigned char *__c) argument
7640 vec_stl(vector bool char __a, int __b, vector bool char *__c) argument
7646 vec_stl(vector short __a, int __b, vector short *__c) argument
7652 vec_stl(vector short __a, int __b, short *__c) argument
7658 vec_stl(vector unsigned short __a, int __b, vector unsigned short *__c) argument
7664 vec_stl(vector unsigned short __a, int __b, unsigned short *__c) argument
7670 vec_stl(vector bool short __a, int __b, short *__c) argument
7676 vec_stl(vector bool short __a, int __b, unsigned short *__c) argument
7682 vec_stl(vector bool short __a, int __b, vector bool short *__c) argument
7688 vec_stl(vector pixel __a, int __b, short *__c) argument
7694 vec_stl(vector pixel __a, int __b, unsigned short *__c) argument
7700 vec_stl(vector pixel __a, int __b, vector pixel *__c) argument
7706 vec_stl(vector int __a, int __b, vector int *__c) argument
7712 vec_stl(vector int __a, int __b, int *__c) argument
7718 vec_stl(vector unsigned int __a, int __b, vector unsigned int *__c) argument
7724 vec_stl(vector unsigned int __a, int __b, unsigned int *__c) argument
7730 vec_stl(vector bool int __a, int __b, int *__c) argument
7736 vec_stl(vector bool int __a, int __b, unsigned int *__c) argument
7742 vec_stl(vector bool int __a, int __b, vector bool int *__c) argument
7748 vec_stl(vector float __a, int __b, vector float *__c) argument
7754 vec_stl(vector float __a, int __b, float *__c) argument
7762 vec_stvxl(vector signed char __a, int __b, vector signed char *__c) argument
7768 vec_stvxl(vector signed char __a, int __b, signed char *__c) argument
7774 vec_stvxl(vector unsigned char __a, int __b, vector unsigned char *__c) argument
7780 vec_stvxl(vector unsigned char __a, int __b, unsigned char *__c) argument
7786 vec_stvxl(vector bool char __a, int __b, signed char *__c) argument
7792 vec_stvxl(vector bool char __a, int __b, unsigned char *__c) argument
7798 vec_stvxl(vector bool char __a, int __b, vector bool char *__c) argument
7804 vec_stvxl(vector short __a, int __b, vector short *__c) argument
7810 vec_stvxl(vector short __a, int __b, short *__c) argument
7816 vec_stvxl(vector unsigned short __a, int __b, vector unsigned short *__c) argument
7822 vec_stvxl(vector unsigned short __a, int __b, unsigned short *__c) argument
7828 vec_stvxl(vector bool short __a, int __b, short *__c) argument
7834 vec_stvxl(vector bool short __a, int __b, unsigned short *__c) argument
7840 vec_stvxl(vector bool short __a, int __b, vector bool short *__c) argument
7846 vec_stvxl(vector pixel __a, int __b, short *__c) argument
7852 vec_stvxl(vector pixel __a, int __b, unsigned short *__c) argument
7858 vec_stvxl(vector pixel __a, int __b, vector pixel *__c) argument
7864 vec_stvxl(vector int __a, int __b, vector int *__c) argument
7870 vec_stvxl(vector int __a, int __b, int *__c) argument
7876 vec_stvxl(vector unsigned int __a, int __b, vector unsigned int *__c) argument
7882 vec_stvxl(vector unsigned int __a, int __b, unsigned int *__c) argument
7888 vec_stvxl(vector bool int __a, int __b, int *__c) argument
7894 vec_stvxl(vector bool int __a, int __b, unsigned int *__c) argument
7900 vec_stvxl(vector bool int __a, int __b, vector bool int *__c) argument
7906 vec_stvxl(vector float __a, int __b, vector float *__c) argument
7912 vec_stvxl(vector float __a, int __b, float *__c) argument
8465 vector int __c = (vector signed int) local
8483 vector int __c = (vector signed int) local
9117 vec_insert(signed char __a, vector signed char __b, int __c) argument
9124 vec_insert(unsigned char __a, vector unsigned char __b, int __c) argument
9131 vec_insert(short __a, vector short __b, int __c) argument
9138 vec_insert(unsigned short __a, vector unsigned short __b, int __c) argument
9145 vec_insert(int __a, vector int __b, int __c) argument
9152 vec_insert(unsigned int __a, vector unsigned int __b, int __c) argument
9159 vec_insert(float __a, vector float __b, int __c) argument
9752 vec_stvlx(vector signed char __a, int __b, signed char *__c) argument
9761 vec_stvlx(vector signed char __a, int __b, vector signed char *__c) argument
9770 vec_stvlx(vector unsigned char __a, int __b, unsigned char *__c) argument
9779 vec_stvlx(vector unsigned char __a, int __b, vector unsigned char *__c) argument
9788 vec_stvlx(vector bool char __a, int __b, vector bool char *__c) argument
9797 vec_stvlx(vector short __a, int __b, short *__c) argument
9806 vec_stvlx(vector short __a, int __b, vector short *__c) argument
9815 vec_stvlx(vector unsigned short __a, int __b, unsigned short *__c) argument
9824 vec_stvlx(vector unsigned short __a, int __b, vector unsigned short *__c) argument
9833 vec_stvlx(vector bool short __a, int __b, vector bool short *__c) argument
9842 vec_stvlx(vector pixel __a, int __b, vector pixel *__c) argument
9851 vec_stvlx(vector int __a, int __b, int *__c) argument
9860 vec_stvlx(vector int __a, int __b, vector int *__c) argument
9869 vec_stvlx(vector unsigned int __a, int __b, unsigned int *__c) argument
9878 vec_stvlx(vector unsigned int __a, int __b, vector unsigned int *__c) argument
9887 vec_stvlx(vector bool int __a, int __b, vector bool int *__c) argument
9896 vec_stvlx(vector float __a, int __b, vector float *__c) argument
9907 vec_stvlxl(vector signed char __a, int __b, signed char *__c) argument
9916 vec_stvlxl(vector signed char __a, int __b, vector signed char *__c) argument
9925 vec_stvlxl(vector unsigned char __a, int __b, unsigned char *__c) argument
9934 vec_stvlxl(vector unsigned char __a, int __b, vector unsigned char *__c) argument
9943 vec_stvlxl(vector bool char __a, int __b, vector bool char *__c) argument
9952 vec_stvlxl(vector short __a, int __b, short *__c) argument
9961 vec_stvlxl(vector short __a, int __b, vector short *__c) argument
9970 vec_stvlxl(vector unsigned short __a, int __b, unsigned short *__c) argument
9979 vec_stvlxl(vector unsigned short __a, int __b, vector unsigned short *__c) argument
9988 vec_stvlxl(vector bool short __a, int __b, vector bool short *__c) argument
9997 vec_stvlxl(vector pixel __a, int __b, vector pixel *__c) argument
10006 vec_stvlxl(vector int __a, int __b, int *__c) argument
10015 vec_stvlxl(vector int __a, int __b, vector int *__c) argument
10024 vec_stvlxl(vector unsigned int __a, int __b, unsigned int *__c) argument
10033 vec_stvlxl(vector unsigned int __a, int __b, vector unsigned int *__c) argument
10042 vec_stvlxl(vector bool int __a, int __b, vector bool int *__c) argument
10051 vec_stvlxl(vector float __a, int __b, vector float *__c) argument
10062 vec_stvrx(vector signed char __a, int __b, signed char *__c) argument
10071 vec_stvrx(vector signed char __a, int __b, vector signed char *__c) argument
10080 vec_stvrx(vector unsigned char __a, int __b, unsigned char *__c) argument
10089 vec_stvrx(vector unsigned char __a, int __b, vector unsigned char *__c) argument
10098 vec_stvrx(vector bool char __a, int __b, vector bool char *__c) argument
10107 vec_stvrx(vector short __a, int __b, short *__c) argument
10116 vec_stvrx(vector short __a, int __b, vector short *__c) argument
10125 vec_stvrx(vector unsigned short __a, int __b, unsigned short *__c) argument
10134 vec_stvrx(vector unsigned short __a, int __b, vector unsigned short *__c) argument
10143 vec_stvrx(vector bool short __a, int __b, vector bool short *__c) argument
10152 vec_stvrx(vector pixel __a, int __b, vector pixel *__c) argument
10161 vec_stvrx(vector int __a, int __b, int *__c) argument
10170 vec_stvrx(vector int __a, int __b, vector int *__c) argument
10179 vec_stvrx(vector unsigned int __a, int __b, unsigned int *__c) argument
10188 vec_stvrx(vector unsigned int __a, int __b, vector unsigned int *__c) argument
10197 vec_stvrx(vector bool int __a, int __b, vector bool int *__c) argument
10206 vec_stvrx(vector float __a, int __b, vector float *__c) argument
10217 vec_stvrxl(vector signed char __a, int __b, signed char *__c) argument
10226 vec_stvrxl(vector signed char __a, int __b, vector signed char *__c) argument
10235 vec_stvrxl(vector unsigned char __a, int __b, unsigned char *__c) argument
10244 vec_stvrxl(vector unsigned char __a, int __b, vector unsigned char *__c) argument
10253 vec_stvrxl(vector bool char __a, int __b, vector bool char *__c) argument
10262 vec_stvrxl(vector short __a, int __b, short *__c) argument
10271 vec_stvrxl(vector short __a, int __b, vector short *__c) argument
10280 vec_stvrxl(vector unsigned short __a, int __b, unsigned short *__c) argument
10289 vec_stvrxl(vector unsigned short __a, int __b, vector unsigned short *__c) argument
10298 vec_stvrxl(vector bool short __a, int __b, vector bool short *__c) argument
10307 vec_stvrxl(vector pixel __a, int __b, vector pixel *__c) argument
10316 vec_stvrxl(vector int __a, int __b, int *__c) argument
10325 vec_stvrxl(vector int __a, int __b, vector int *__c) argument
10334 vec_stvrxl(vector unsigned int __a, int __b, unsigned int *__c) argument
10343 vec_stvrxl(vector unsigned int __a, int __b, vector unsigned int *__c) argument
10352 vec_stvrxl(vector bool int __a, int __b, vector bool int *__c) argument
10361 vec_stvrxl(vector float __a, int __b, vector float *__c) argument
[all...]
/external/libcxx/src/support/solaris/
H A Dxlocale.c34 wint_t btowc_l(int __c, locale_t __l) { argument
36 return __l->lc_ctype->cmapp->core.user_api->btowc(__l->lc_ctype->cmapp, __c);
39 int wctob_l(wint_t __c, locale_t __l) { argument
41 return __l->lc_ctype->cmapp->core.user_api->wctob(__l->lc_ctype->cmapp, __c);
113 int is##ctype##_l(int __c, locale_t __l) { \
114 if ((__c < 0) || (__c > 255)) return 0;\
116 return __l->lc_ctype->mask[__c] & m;\
118 int isw##ctype##_l(wchar_t __c, locale_t __l) { \
120 return __l->lc_ctype->core.user_api->iswctype(__l->lc_ctype, __c,
141 toupper_l(int __c, locale_t __l) argument
146 tolower_l(int __c, locale_t __l) argument
151 towupper_l(wint_t __c, locale_t __l) argument
155 towlower_l(wint_t __c, locale_t __l) argument
[all...]
/external/libcxx/test/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/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/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;

Completed in 937 milliseconds

12345