HomeSort by relevance Sort by last modified time
    Searched refs:__b (Results 51 - 75 of 287) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/
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)))
40 __imag__ z = crt_copysignf(CRT_INFINITY, __c) * __b;
42 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
46 __b = crt_copysignf(crt_isinf(__b) ? 1 : 0, __b);
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)))
41 __imag__ z = crt_copysignl(CRT_INFINITY, __c) * __b;
43 else if ((crt_isinf(__a) || crt_isinf(__b)) &&
47 __b = crt_copysignl(crt_isinf(__b) ? 1 : 0, __b);
48 __real__ z = CRT_INFINITY * (__a * __c + __b * __d)
    [all...]
  /frameworks/compile/libbcc/runtime/lib/
divdc3.c 22 __divdc3(double __a, double __b, double __c, double __d)
34 __real__ z = scalbn((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = scalbn((__b * __c - __a * __d) / __denom, -__ilogbw);
38 if ((__denom == 0.0) && (!isnan(__a) || !isnan(__b)))
41 __imag__ z = copysign(INFINITY, __c) * __b;
43 else if ((isinf(__a) || isinf(__b)) && isfinite(__c) && isfinite(__d))
46 __b = copysign(isinf(__b) ? 1.0 : 0.0, __b);
47 __real__ z = INFINITY * (__a * __c + __b * __d)
    [all...]
divsc3.c 22 __divsc3(float __a, float __b, float __c, float __d)
34 __real__ z = scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
38 if ((__denom == 0) && (!isnan(__a) || !isnan(__b)))
41 __imag__ z = copysignf(INFINITY, __c) * __b;
43 else if ((isinf(__a) || isinf(__b)) && isfinite(__c) && isfinite(__d))
46 __b = copysignf(isinf(__b) ? 1 : 0, __b);
47 __real__ z = INFINITY * (__a * __c + __b * __d)
    [all...]
divxc3.c 23 __divxc3(long double __a, long double __b, long double __c, long double __d)
35 __real__ z = scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw);
36 __imag__ z = scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw);
39 if ((__denom == 0) && (!isnan(__a) || !isnan(__b)))
42 __imag__ z = copysignl(INFINITY, __c) * __b;
44 else if ((isinf(__a) || isinf(__b)) && isfinite(__c) && isfinite(__d))
47 __b = copysignl(isinf(__b) ? 1 : 0, __b);
48 __real__ z = INFINITY * (__a * __c + __b * __d)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
arm_neon.h 400 vadd_s8 (int8x8_t __a, int8x8_t __b)
402 return (int8x8_t)__builtin_neon_vaddv8qi (__a, __b, 1);
406 vadd_s16 (int16x4_t __a, int16x4_t __b)
408 return (int16x4_t)__builtin_neon_vaddv4hi (__a, __b, 1);
412 vadd_s32 (int32x2_t __a, int32x2_t __b)
414 return (int32x2_t)__builtin_neon_vaddv2si (__a, __b, 1);
418 vadd_f32 (float32x2_t __a, float32x2_t __b)
420 return (float32x2_t)__builtin_neon_vaddv2sf (__a, __b, 3);
424 vadd_u8 (uint8x8_t __a, uint8x8_t __b)
426 return (uint8x8_t)__builtin_neon_vaddv8qi ((int8x8_t) __a, (int8x8_t) __b, 0)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/
arm_neon.h 400 vadd_s8 (int8x8_t __a, int8x8_t __b)
402 return (int8x8_t)__builtin_neon_vaddv8qi (__a, __b, 1);
406 vadd_s16 (int16x4_t __a, int16x4_t __b)
408 return (int16x4_t)__builtin_neon_vaddv4hi (__a, __b, 1);
412 vadd_s32 (int32x2_t __a, int32x2_t __b)
414 return (int32x2_t)__builtin_neon_vaddv2si (__a, __b, 1);
418 vadd_f32 (float32x2_t __a, float32x2_t __b)
420 return (float32x2_t)__builtin_neon_vaddv2sf (__a, __b, 3);
424 vadd_u8 (uint8x8_t __a, uint8x8_t __b)
426 return (uint8x8_t)__builtin_neon_vaddv8qi ((int8x8_t) __a, (int8x8_t) __b, 0)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
arm_neon.h 400 vadd_s8 (int8x8_t __a, int8x8_t __b)
402 return (int8x8_t)__builtin_neon_vaddv8qi (__a, __b, 1);
406 vadd_s16 (int16x4_t __a, int16x4_t __b)
408 return (int16x4_t)__builtin_neon_vaddv4hi (__a, __b, 1);
412 vadd_s32 (int32x2_t __a, int32x2_t __b)
414 return (int32x2_t)__builtin_neon_vaddv2si (__a, __b, 1);
418 vadd_f32 (float32x2_t __a, float32x2_t __b)
420 return (float32x2_t)__builtin_neon_vaddv2sf (__a, __b, 3);
424 vadd_u8 (uint8x8_t __a, uint8x8_t __b)
426 return (uint8x8_t)__builtin_neon_vaddv8qi ((int8x8_t) __a, (int8x8_t) __b, 0)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/include/
arm_neon.h 400 vadd_s8 (int8x8_t __a, int8x8_t __b)
402 return (int8x8_t)__builtin_neon_vaddv8qi (__a, __b, 1);
406 vadd_s16 (int16x4_t __a, int16x4_t __b)
408 return (int16x4_t)__builtin_neon_vaddv4hi (__a, __b, 1);
412 vadd_s32 (int32x2_t __a, int32x2_t __b)
414 return (int32x2_t)__builtin_neon_vaddv2si (__a, __b, 1);
418 vadd_f32 (float32x2_t __a, float32x2_t __b)
420 return (float32x2_t)__builtin_neon_vaddv2sf (__a, __b, 3);
424 vadd_u8 (uint8x8_t __a, uint8x8_t __b)
426 return (uint8x8_t)__builtin_neon_vaddv8qi ((int8x8_t) __a, (int8x8_t) __b, 0)
    [all...]
  /external/elfutils/libdw/
memory-access.c 60 unsigned char __b; local
68 unsigned char __b; local
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_cursor.h 51 _SpecializedCursor(const _FwdIterT& __b, const _FwdIterT __e)
52 : _M_b(__b), _M_c(__b), _M_e(__e)
88 __cursor(const _FwdIterT& __b, const _FwdIterT __e)
89 { return _SpecializedCursor<_FwdIterT>(__b, __e); }
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)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b; }
97 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
98 { 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/
regex_cursor.h 51 _SpecializedCursor(const _FwdIterT& __b, const _FwdIterT __e)
52 : _M_b(__b), _M_c(__b), _M_e(__e)
88 __cursor(const _FwdIterT& __b, const _FwdIterT __e)
89 { return _SpecializedCursor<_FwdIterT>(__b, __e); }
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)); }
93 operator|=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
94 { return __a = __a | __b; }
97 operator&=(_Ios_Fmtflags& __a, _Ios_Fmtflags __b)
98 { return __a = __a & __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)
101 { return __a = __a & __b; }
    [all...]
move.h 76 swap(_Tp& __a, _Tp& __b)
82 __a = _GLIBCXX_MOVE(__b);
83 __b = _GLIBCXX_MOVE(__tmp);
90 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
93 swap(__a[__n], __b[__n]);
valarray_array.h 76 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e)
78 while (__b != __e)
79 new(__b++) _Tp();
88 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e)
89 { __builtin_memset(__b, 0, (__e - __b) * sizeof(_Tp)); }
94 __valarray_default_construct(_Tp* __restrict__ __b, _Tp* __restrict__ __e)
96 _Array_default_ctor<_Tp, __is_scalar<_Tp>::__value>::_S_do_it(__b, __e);
108 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t)
110 while (__b != __e
    [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)
101 { return __a = __a & __b; }
    [all...]
move.h 76 swap(_Tp& __a, _Tp& __b)
82 __a = _GLIBCXX_MOVE(__b);
83 __b = _GLIBCXX_MOVE(__tmp);
90 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
93 swap(__a[__n], __b[__n]);
  /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)
101 { return __a = __a & __b; }
    [all...]
move.h 76 swap(_Tp& __a, _Tp& __b)
82 __a = _GLIBCXX_MOVE(__b);
83 __b = _GLIBCXX_MOVE(__tmp);
90 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
93 swap(__a[__n], __b[__n]);
  /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)
101 { return __a = __a & __b; }
    [all...]
move.h 76 swap(_Tp& __a, _Tp& __b)
82 __a = _GLIBCXX_MOVE(__b);
83 __b = _GLIBCXX_MOVE(__tmp);
90 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
93 swap(__a[__n], __b[__n]);
  /prebuilts/ndk/8/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)
101 { return __a = __a & __b; }
    [all...]
move.h 76 swap(_Tp& __a, _Tp& __b)
82 __a = _GLIBCXX_MOVE(__b);
83 __b = _GLIBCXX_MOVE(__tmp);
90 swap(_Tp (&__a)[_Nm], _Tp (&__b)[_Nm])
93 swap(__a[__n], __b[__n]);

Completed in 2073 milliseconds

1 23 4 5 6 7 8 91011>>