HomeSort by relevance Sort by last modified time
    Searched refs:__c (Results 1 - 25 of 592) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/host-tools/sed-4.2.1/lib/
c-ctype.h 148 ({ int __c = (c); \
149 (__c >= 0x00 && __c <= 0x7f); \
157 ({ int __c = (c); \
158 ((__c >= '0' && __c <= '9') \
159 || ((__c & ~0x20) >= 'A' && (__c & ~0x20) <= 'Z')); \
164 ({ int __c = (c); \
165 ((__c >= '0' && __c <= '9')
    [all...]
  /external/compiler-rt/lib/
divdc3.c 21 __divdc3(double __a, double __b, double __c, double __d)
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) * __b
    [all...]
divsc3.c 21 __divsc3(float __a, float __b, float __c, float __d)
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) * __b
    [all...]
divxc3.c 22 __divxc3(long double __a, long double __b, long double __c, long double __d)
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) * __b
    [all...]
muldc3.c 21 __muldc3(double __a, double __b, double __c, double __d)
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...]
mulsc3.c 21 __mulsc3(float __a, float __b, float __c, float __d)
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...]
mulxc3.c 23 __mulxc3(long double __a, long double __b, long double __c, long double __d)
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...]
  /frameworks/compile/libbcc/runtime/lib/
divdc3.c 22 __divdc3(double __a, double __b, double __c, double __d)
25 double __logbw = logb(fmax(fabs(__c), fabs(__d)));
29 __c = scalbn(__c, -__ilogbw);
32 double __denom = __c * __c + __d * __d;
34 __real__ z = scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
40 __real__ z = copysign(INFINITY, __c) * __a;
41 __imag__ z = copysign(INFINITY, __c) * __b
    [all...]
divsc3.c 22 __divsc3(float __a, float __b, float __c, float __d)
25 float __logbw = logbf(fmaxf(fabsf(__c), fabsf(__d)));
29 __c = scalbnf(__c, -__ilogbw);
32 float __denom = __c * __c + __d * __d;
34 __real__ z = scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
40 __real__ z = copysignf(INFINITY, __c) * __a;
41 __imag__ z = copysignf(INFINITY, __c) * __b
    [all...]
divxc3.c 23 __divxc3(long double __a, long double __b, long double __c, long double __d)
26 long double __logbw = logbl(fmaxl(fabsl(__c), fabsl(__d)));
30 __c = scalbnl(__c, -__ilogbw);
33 long double __denom = __c * __c + __d * __d;
35 __real__ z = scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
36 __imag__ z = scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
41 __real__ z = copysignl(INFINITY, __c) * __a;
42 __imag__ z = copysignl(INFINITY, __c) * __b
    [all...]
muldc3.c 22 __muldc3(double __a, double __b, double __c, double __d)
24 double __ac = __a * __c;
27 double __bc = __b * __c;
38 if (isnan(__c))
39 __c = copysign(0, __c);
44 if (isinf(__c) || isinf(__d))
46 __c = copysign(isinf(__c) ? 1 : 0, __c);
    [all...]
mulsc3.c 22 __mulsc3(float __a, float __b, float __c, float __d)
24 float __ac = __a * __c;
27 float __bc = __b * __c;
38 if (isnan(__c))
39 __c = copysignf(0, __c);
44 if (isinf(__c) || isinf(__d))
46 __c = copysignf(isinf(__c) ? 1 : 0, __c);
    [all...]
mulxc3.c 24 __mulxc3(long double __a, long double __b, long double __c, long double __d)
26 long double __ac = __a * __c;
29 long double __bc = __b * __c;
40 if (isnan(__c))
41 __c = copysignl(0, __c);
46 if (isinf(__c) || isinf(__d))
48 __c = copysignl(isinf(__c) ? 1 : 0, __c);
    [all...]
  /external/clang/test/CodeGen/
pr9614.c 11 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) {
13 return __builtin_strrchr (__s, __c);
  /external/stlport/src/
complex_io.cpp 52 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...]
  /ndk/sources/cxx-stl/stlport/src/
complex_io.cpp 52 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/stlport/stlport/stl/
_ctype.h 78 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 {
107 return do_narrow(__c, __dfault)
    [all...]
_messages_facets.h 65 string_type get(catalog __c, int __set, int __msgid,
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,
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 78 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 {
107 return do_narrow(__c, __dfault)
    [all...]
_messages_facets.h 65 string_type get(catalog __c, int __set, int __msgid,
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,
100 { return do_get(__c, __set, __msgid, __dfault); }
101 inline void close(catalog __c) const
102 { do_close(__c); }
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 78 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 {
107 return do_narrow(__c, __dfault)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 78 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 {
107 return do_narrow(__c, __dfault)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 78 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 {
107 return do_narrow(__c, __dfault)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ctype.h 78 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 {
107 return do_narrow(__c, __dfault)
    [all...]
  /external/clang/test/Parser/
cxx-member-crash.cpp 14 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)) {

Completed in 1006 milliseconds

1 2 3 4 5 6 7 8 91011>>