HomeSort by relevance Sort by last modified time
    Searched full:__x (Results 1 - 25 of 2806) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/lib/Headers/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/clang/darwin-x86/host/3.4/lib/clang/3.4/include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/clang/linux-x86/host/3.4/lib/clang/3.4/include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/sdk/tools/darwin/renderscript/clang-include/
tgmath.h 56 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x)))
57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \
59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \
67 __tg_acos(float __x) {return acosf(__x);}
71 __tg_acos(double __x) {return acos(__x);}
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.8/lib/gcc/x86_64-linux-android/4.8/include/
tbmintrin.h 37 __bextri_u32 (unsigned int __X, const unsigned int __I)
39 return __builtin_ia32_bextri_u32 (__X, __I);
48 __blcfill_u32 (unsigned int __X)
50 return __X & (__X + 1);
54 __blci_u32 (unsigned int __X)
56 return __X | ~(__X + 1);
60 __blcic_u32 (unsigned int __X)
62 return ~__X & (__X + 1)
    [all...]
bmiintrin.h 36 __tzcnt_u16 (unsigned short __X)
38 return __builtin_ctzs (__X);
42 __andn_u32 (unsigned int __X, unsigned int __Y)
44 return ~__X & __Y;
48 __bextr_u32 (unsigned int __X, unsigned int __Y)
50 return __builtin_ia32_bextr_u32 (__X, __Y);
54 _bextr_u32 (unsigned int __X, unsigned int __Y, unsigned __Z)
56 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
60 __blsi_u32 (unsigned int __X)
62 return __X & -__X
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
tbmintrin.h 39 __bextri_u32 (unsigned int __X, const unsigned int __I)
41 return __builtin_ia32_bextri_u32 (__X, __I);
50 __blcfill_u32 (unsigned int __X)
52 return __X & (__X + 1);
56 __blci_u32 (unsigned int __X)
58 return __X | ~(__X + 1);
62 __blcic_u32 (unsigned int __X)
64 return ~__X & (__X + 1)
    [all...]
bmiintrin.h 38 __tzcnt_u16 (unsigned short __X)
40 return __builtin_ctzs (__X);
44 __andn_u32 (unsigned int __X, unsigned int __Y)
46 return ~__X & __Y;
50 __bextr_u32 (unsigned int __X, unsigned int __Y)
52 return __builtin_ia32_bextr_u32 (__X, __Y);
56 _bextr_u32 (unsigned int __X, unsigned int __Y, unsigned __Z)
58 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
62 __blsi_u32 (unsigned int __X)
64 return __X & -__X
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/gcc/x86_64-linux/4.8/include/
tbmintrin.h 37 __bextri_u32 (unsigned int __X, const unsigned int __I)
39 return __builtin_ia32_bextri_u32 (__X, __I);
48 __blcfill_u32 (unsigned int __X)
50 return __X & (__X + 1);
54 __blci_u32 (unsigned int __X)
56 return __X | ~(__X + 1);
60 __blcic_u32 (unsigned int __X)
62 return ~__X & (__X + 1)
    [all...]
bmiintrin.h 36 __tzcnt_u16 (unsigned short __X)
38 return __builtin_ctzs (__X);
42 __andn_u32 (unsigned int __X, unsigned int __Y)
44 return ~__X & __Y;
48 __bextr_u32 (unsigned int __X, unsigned int __Y)
50 return __builtin_ia32_bextr_u32 (__X, __Y);
54 _bextr_u32 (unsigned int __X, unsigned int __Y, unsigned __Z)
56 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
60 __blsi_u32 (unsigned int __X)
62 return __X & -__X
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tbmintrin.h 37 __bextri_u32 (unsigned int __X, const unsigned int __I)
39 return __builtin_ia32_bextri_u32 (__X, __I);
48 __blcfill_u32 (unsigned int __X)
50 return __X & (__X + 1);
54 __blci_u32 (unsigned int __X)
56 return __X | ~(__X + 1);
60 __blcic_u32 (unsigned int __X)
62 return ~__X & (__X + 1)
    [all...]
bmiintrin.h 36 __tzcnt_u16 (unsigned short __X)
38 return __builtin_ctzs (__X);
42 __andn_u32 (unsigned int __X, unsigned int __Y)
44 return ~__X & __Y;
48 __bextr_u32 (unsigned int __X, unsigned int __Y)
50 return __builtin_ia32_bextr_u32 (__X, __Y);
54 _bextr_u32 (unsigned int __X, unsigned int __Y, unsigned __Z)
56 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
60 __blsi_u32 (unsigned int __X)
62 return __X & -__X
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.8/lib/gcc/x86_64-linux-android/4.8/include/
tbmintrin.h 37 __bextri_u32 (unsigned int __X, const unsigned int __I)
39 return __builtin_ia32_bextri_u32 (__X, __I);
48 __blcfill_u32 (unsigned int __X)
50 return __X & (__X + 1);
54 __blci_u32 (unsigned int __X)
56 return __X | ~(__X + 1);
60 __blcic_u32 (unsigned int __X)
62 return ~__X & (__X + 1)
    [all...]
bmiintrin.h 36 __tzcnt_u16 (unsigned short __X)
38 return __builtin_ctzs (__X);
42 __andn_u32 (unsigned int __X, unsigned int __Y)
44 return ~__X & __Y;
48 __bextr_u32 (unsigned int __X, unsigned int __Y)
50 return __builtin_ia32_bextr_u32 (__X, __Y);
54 _bextr_u32 (unsigned int __X, unsigned int __Y, unsigned __Z)
56 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
60 __blsi_u32 (unsigned int __X)
62 return __X & -__X
    [all...]
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/
tbmintrin.h 39 __bextri_u32 (unsigned int __X, const unsigned int __I)
41 return __builtin_ia32_bextri_u32 (__X, __I);
50 __blcfill_u32 (unsigned int __X)
52 return __X & (__X + 1);
56 __blci_u32 (unsigned int __X)
58 return __X | ~(__X + 1);
62 __blcic_u32 (unsigned int __X)
64 return ~__X & (__X + 1)
    [all...]
bmiintrin.h 38 __tzcnt_u16 (unsigned short __X)
40 return __builtin_ctzs (__X);
44 __andn_u32 (unsigned int __X, unsigned int __Y)
46 return ~__X & __Y;
50 __bextr_u32 (unsigned int __X, unsigned int __Y)
52 return __builtin_ia32_bextr_u32 (__X, __Y);
56 _bextr_u32 (unsigned int __X, unsigned int __Y, unsigned __Z)
58 return __builtin_ia32_bextr_u32 (__X, ((__Y & 0xff) | ((__Z & 0xff) << 8)));
62 __blsi_u32 (unsigned int __X)
64 return __X & -__X
    [all...]
  /external/stlport/stlport/stl/
_relops_cont.h 7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
17 return lexicographical_compare(__x.begin(), __x.end(),
25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x,
27 __x.swap(__y);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
17 return lexicographical_compare(__x.begin(), __x.end(),
25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x,
27 __x.swap(__y);
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
17 return lexicographical_compare(__x.begin(), __x.end(),
25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x,
27 __x.swap(__y);
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_relops_cont.h 7 inline bool _STLP_CALL operator==(const _STLP_TEMPLATE_CONTAINER& __x,
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
15 inline bool _STLP_CALL operator<(const _STLP_TEMPLATE_CONTAINER& __x,
17 return lexicographical_compare(__x.begin(), __x.end(),
25 inline void _STLP_CALL swap(_STLP_TEMPLATE_CONTAINER& __x,
27 __x.swap(__y);

Completed in 1069 milliseconds

1 2 3 4 5 6 7 8 91011>>