Home
last modified time | relevance | path

Searched refs:__vr (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dvelintrin_approx.h12 static inline __vr _vel_approx_vfdivs_vvvl(__vr v0, __vr v1, int l) { in _vel_approx_vfdivs_vvvl()
14 __vr v2, v3, v4, v5; in _vel_approx_vfdivs_vvvl()
27 static inline __vr _vel_approx_pvfdiv_vvvl(__vr v0, __vr v1, int l) { in _vel_approx_pvfdiv_vvvl()
29 __vr v2, v3, v4, v5; in _vel_approx_pvfdiv_vvvl()
42 static inline __vr _vel_approx_vfdivs_vsvl(float s0, __vr v0, int l) { in _vel_approx_vfdivs_vsvl()
44 __vr v1, v2, v3, v4; in _vel_approx_vfdivs_vsvl()
57 static inline __vr _vel_approx_vfdivs_vvsl(__vr v0, float s0, int l) { in _vel_approx_vfdivs_vvsl()
59 __vr v1, v2; in _vel_approx_vfdivs_vvsl()
67 static inline __vr _vel_approx_vfdivd_vsvl(double s0, __vr v0, int l) { in _vel_approx_vfdivd_vsvl()
68 __vr v1, v2, v3; in _vel_approx_vfdivd_vsvl()
[all …]
H A Dvelintrin.h13 typedef double __vr __attribute__((__vector_size__(2048))); typedef
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2s.cpp206 uint64_t __vr, __vp, __vm; in __d2d() local
217 __vr = __mulShiftAll(__m2, __DOUBLE_POW5_INV_SPLIT[__q], __i, &__vp, &__vm, __mmShift); in __d2d()
242 __vr = __mulShiftAll(__m2, __DOUBLE_POW5_SPLIT[__i], __j, &__vp, &__vm, __mmShift); in __d2d()
244 // {__vr,__vp,__vm} is trailing zeros if {__mv,__mp,__mm} has at least __q trailing 0 bits. in __d2d()
278 const uint64_t __vrDiv10 = __div10(__vr); in __d2d()
279 const uint32_t __vrMod10 = static_cast<uint32_t>(__vr) - 10 * static_cast<uint32_t>(__vrDiv10); in __d2d()
283 __vr = __vrDiv10; in __d2d()
296 const uint64_t __vrDiv10 = __div10(__vr); in __d2d()
297 const uint32_t __vrMod10 = static_cast<uint32_t>(__vr) - 10 * static_cast<uint32_t>(__vrDiv10); in __d2d()
300 __vr in __d2d()
[all...]
H A Df2s.cpp178 uint32_t __vr, __vp, __vm; in __f2d() local
188 __vr = __mulPow5InvDivPow2(__mv, __q, __i); in __f2d()
216 __vr = __mulPow5divPow2(__mv, static_cast<uint32_t>(__i), __j); in __f2d()
224 // {__vr,__vp,__vm} is trailing zeros if {__mv,__mp,__mm} has at least __q trailing 0 bits. in __f2d()
251 __lastRemovedDigit = static_cast<uint8_t>(__vr % 10); in __f2d()
252 __vr /= 10; in __f2d()
260 __lastRemovedDigit = static_cast<uint8_t>(__vr % 10); in __f2d()
261 __vr /= 10; in __f2d()
267 if (__vrIsTrailingZeros && __lastRemovedDigit == 5 && __vr % 2 == 0) { in __f2d()
271 // We need to take __vr in __f2d()
[all...]
/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwindCursor.hpp2400 &(uContext->__extctx->__vmx.__vr[i])))); in stepWithTBTable()