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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/com32/include/
ctype.h 39 __ctype_inline int isalnum(int __c)
41 return __ctypes[__c + 1] & (__ctype_upper | __ctype_lower | __ctype_digit);
44 __ctype_inline int isalpha(int __c)
46 return __ctypes[__c + 1] & (__ctype_upper | __ctype_lower);
49 __ctype_inline int isascii(int __c)
51 return !(__c & ~0x7f);
54 __ctype_inline int isblank(int __c)
56 return (__c == '\t') || (__c == ' ');
59 __ctype_inline int iscntrl(int __c)
    [all...]
  /external/compiler-rt/lib/builtins/
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 COMPLEX_REAL(z) = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
34 COMPLEX_IMAGINARY(z) = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
39 COMPLEX_REAL(z) = crt_copysign(CRT_INFINITY, __c) * __a;
40 COMPLEX_IMAGINARY(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 COMPLEX_REAL(z) = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
34 COMPLEX_IMAGINARY(z) = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
39 COMPLEX_REAL(z) = crt_copysignf(CRT_INFINITY, __c) * __a;
40 COMPLEX_IMAGINARY(z) = crt_copysignf(CRT_INFINITY, __c) * __b
    [all...]
divtc3.c 21 __divtc3(long double __a, long double __b, long double __c, long double __d)
24 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d)));
28 __c = crt_scalbnl(__c, -__ilogbw);
31 long double __denom = __c * __c + __d * __d;
33 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
39 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a;
40 __imag__ z = crt_copysignl(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 COMPLEX_REAL(z) = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
35 COMPLEX_IMAGINARY(z) = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
40 COMPLEX_REAL(z) = crt_copysignl(CRT_INFINITY, __c) * __a;
41 COMPLEX_IMAGINARY(z) = crt_copysignl(CRT_INFINITY, __c) * __b
    [all...]
  /external/libcxx/include/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/
string.h 74 char* __libcpp_strchr(const char* __s, int __c) {return (char*)strchr(__s, __c);}
76 const char* strchr(const char* __s, int __c) {return __libcpp_strchr(__s, __c);}
78 char* strchr( char* __s, int __c) {return __libcpp_strchr(__s, __c);}
88 char* __libcpp_strrchr(const char* __s, int __c) {return (char*)strrchr(__s, __c);}
90 const char* strrchr(const char* __s, int __c) {return __libcpp_strrchr(__s, __c);}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_complex_builtins.h 33 double __c, double __d) {
34 double __ac = __a * __c;
37 double __bc = __b * __c;
46 if (std::isnan(__c))
47 __c = std::copysign(0, __c);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 33 double __c, double __d) {
34 double __ac = __a * __c;
37 double __bc = __b * __c;
46 if (std::isnan(__c))
47 __c = std::copysign(0, __c);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
__clang_cuda_complex_builtins.h 33 double __c, double __d) {
34 double __ac = __a * __c;
37 double __bc = __b * __c;
46 if (std::isnan(__c))
47 __c = std::copysign(0, __c);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
__clang_cuda_complex_builtins.h 33 double __c, double __d) {
34 double __ac = __a * __c;
37 double __bc = __b * __c;
46 if (std::isnan(__c))
47 __c = std::copysign(0, __c);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
    [all...]

Completed in 571 milliseconds

1 2 3 4 5 6 7 8 91011>>