HomeSort by relevance Sort by last modified time
    Searched refs:__a (Results 76 - 100 of 1100) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/compiler-rt/lib/
mulxc3.c 23 __mulxc3(long double __a, long double __b, long double __c, long double __d)
25 long double __ac = __a * __c;
27 long double __ad = __a * __d;
35 if (crt_isinf(__a) || crt_isinf(__b))
37 __a = crt_copysignl(crt_isinf(__a) ? 1 : 0, __a);
49 if (crt_isnan(__a))
50 __a = crt_copysignl(0, __a);
    [all...]
divdc3.c 21 __divdc3(double __a, double __b, double __c, double __d)
33 __real__ z = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
37 if ((__denom == 0.0) && (!crt_isnan(__a) || !crt_isnan(__b)))
39 __real__ z = crt_copysign(CRT_INFINITY, __c) * __a;
42 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
45 __a = crt_copysign(crt_isinf(__a) ? 1.0 : 0.0, __a);
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d)
    [all...]
divsc3.c 21 __divsc3(float __a, float __b, float __c, float __d)
33 __real__ z = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
34 __imag__ z = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
37 if ((__denom == 0) && (!crt_isnan(__a) || !crt_isnan(__b)))
39 __real__ z = crt_copysignf(CRT_INFINITY, __c) * __a;
42 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
45 __a = crt_copysignf(crt_isinf(__a) ? 1 : 0, __a);
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d)
    [all...]
divxc3.c 22 __divxc3(long double __a, long double __b, long double __c, long double __d)
34 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
38 if ((__denom == 0) && (!crt_isnan(__a) || !crt_isnan(__b)))
40 __real__ z = crt_copysignl(CRT_INFINITY, __c) * __a;
43 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
46 __a = crt_copysignl(crt_isinf(__a) ? 1 : 0, __a);
48 __real__ z = CRT_INFINITY * (__a * __c + __b * __d)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
set_operations.h 79 _M_invoke(_IIter __a, _IIter __b, _IIter __c, _IIter __d,
82 while (__a != __b && __c != __d)
84 if (_M_comp(*__a, *__c))
86 *__r = *__a;
87 ++__a;
90 else if (_M_comp(*__c, *__a))
98 ++__a;
102 return std::copy(__c, __d, std::copy(__a, __b, __r));
106 __count(_IIter __a, _IIter __b, _IIter __c, _IIter __d) const
110 while (__a != __b && __c != __d
    [all...]
  /external/clang/lib/Headers/
avxintrin.h 44 _mm256_add_pd(__m256d __a, __m256d __b)
46 return __a+__b;
50 _mm256_add_ps(__m256 __a, __m256 __b)
52 return __a+__b;
56 _mm256_sub_pd(__m256d __a, __m256d __b)
58 return __a-__b;
62 _mm256_sub_ps(__m256 __a, __m256 __b)
64 return __a-__b;
68 _mm256_addsub_pd(__m256d __a, __m256d __b)
70 return (__m256d)__builtin_ia32_addsubpd256((__v4df)__a, (__v4df)__b)
    [all...]
avx2intrin.h 35 _mm256_abs_epi8(__m256i __a)
37 return (__m256i)__builtin_ia32_pabsb256((__v32qi)__a);
41 _mm256_abs_epi16(__m256i __a)
43 return (__m256i)__builtin_ia32_pabsw256((__v16hi)__a);
47 _mm256_abs_epi32(__m256i __a)
49 return (__m256i)__builtin_ia32_pabsd256((__v8si)__a);
53 _mm256_packs_epi16(__m256i __a, __m256i __b)
55 return (__m256i)__builtin_ia32_packsswb256((__v16hi)__a, (__v16hi)__b);
59 _mm256_packs_epi32(__m256i __a, __m256i __b)
61 return (__m256i)__builtin_ia32_packssdw256((__v8si)__a, (__v8si)__b)
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
avxintrin.h 44 _mm256_add_pd(__m256d __a, __m256d __b)
46 return __a+__b;
50 _mm256_add_ps(__m256 __a, __m256 __b)
52 return __a+__b;
56 _mm256_sub_pd(__m256d __a, __m256d __b)
58 return __a-__b;
62 _mm256_sub_ps(__m256 __a, __m256 __b)
64 return __a-__b;
68 _mm256_addsub_pd(__m256d __a, __m256d __b)
70 return (__m256d)__builtin_ia32_addsubpd256((__v4df)__a, (__v4df)__b)
    [all...]
avx2intrin.h 35 _mm256_abs_epi8(__m256i __a)
37 return (__m256i)__builtin_ia32_pabsb256((__v32qi)__a);
41 _mm256_abs_epi16(__m256i __a)
43 return (__m256i)__builtin_ia32_pabsw256((__v16hi)__a);
47 _mm256_abs_epi32(__m256i __a)
49 return (__m256i)__builtin_ia32_pabsd256((__v8si)__a);
53 _mm256_packs_epi16(__m256i __a, __m256i __b)
55 return (__m256i)__builtin_ia32_packsswb256((__v16hi)__a, (__v16hi)__b);
59 _mm256_packs_epi32(__m256i __a, __m256i __b)
61 return (__m256i)__builtin_ia32_packssdw256((__v8si)__a, (__v8si)__b)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
ios_base.h 84 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
85 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
88 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
89 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
92 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
93 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
96 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
97 { return __a = __a | __b; }
100 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
ios_base.h 77 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
78 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
81 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
82 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
85 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
86 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
89 operator~(_Ios_Fmtflags __a)
90 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
ios_base.h 77 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
78 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
81 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
82 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
85 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
86 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
89 operator~(_Ios_Fmtflags __a)
90 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b;
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 84 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
85 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
88 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
89 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
92 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
93 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
96 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
97 { return __a = __a | __b; }
100 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 84 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
85 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
88 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
89 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
92 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
93 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
96 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
97 { return __a = __a | __b; }
100 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
ios_base.h 84 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
85 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
88 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
89 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
92 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
93 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
96 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
97 { return __a = __a | __b; }
100 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
ios_base.h 84 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
85 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
88 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
89 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
92 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
93 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
96 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
97 { return __a = __a | __b; }
100 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
ios_base.h 77 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
78 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
81 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
82 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
85 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
86 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
89 operator~(_Ios_Fmtflags __a)
90 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
ios_base.h 77 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
78 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
81 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
82 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
85 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
86 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
89 operator~(_Ios_Fmtflags __a)
90 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b;
    [all...]
shared_ptr.h 154 * @param __a An allocator.
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a)
166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
173 * @param __a An allocator.
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
315 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a,
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
328 operator==(const shared_ptr<_Tp1>& __a,
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
ios_base.h 77 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
78 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
81 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
82 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
85 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
86 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
89 operator~(_Ios_Fmtflags __a)
90 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b;
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
ios_base.h 77 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
78 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
81 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
82 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
85 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
86 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
89 operator~(_Ios_Fmtflags __a)
90 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b;
    [all...]
shared_ptr.h 154 * @param __a An allocator.
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a)
166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
173 * @param __a An allocator.
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
315 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a,
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
328 operator==(const shared_ptr<_Tp1>& __a,
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
ios_base.h 75 operator&(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
76 { return _Ios_Fmtflags(static_cast<int>(__a) & static_cast<int>(__b)); }
79 operator|(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
80 { return _Ios_Fmtflags(static_cast<int>(__a) | static_cast<int>(__b)); }
83 operator^(_Ios_Fmtflags __a, _Ios_Fmtflags __b)
84 { return _Ios_Fmtflags(static_cast<int>(__a) ^ static_cast<int>(__b)); }
87 operator~(_Ios_Fmtflags __a)
88 { return _Ios_Fmtflags(~static_cast<int>(__a)); }
91 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
92 { return __a = __a | __b;
    [all...]
shared_ptr.h 154 * @param __a An allocator.
165 shared_ptr(_Tp1* __p, _Deleter __d, _Alloc __a)
166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
173 * @param __a An allocator.
184 shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
314 shared_ptr(_Sp_make_shared_tag __tag, const _Alloc& __a,
316 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
321 allocate_shared(const _Alloc& __a, _Args&&... __args);
327 operator==(const shared_ptr<_Tp1>& __a,
    [all...]
  /external/clang/test/PCH/
cxx-variadic-templates.h 8 allocate_shared(const _Alloc& __a, _Args&& ...__args);
14 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)

Completed in 297 milliseconds

1 2 34 5 6 7 8 91011>>