Home | History | Annotate | Download | only in include

Lines Matching refs:__m128d

93 extern __inline __m128d __attribute__((__gnu_inline__, __always_inline__, __artificial__))
94 _mm_round_pd (__m128d __V, const int __M)
96 return (__m128d) __builtin_ia32_roundpd ((__v2df)__V, __M);
99 extern __inline __m128d __attribute__((__gnu_inline__, __always_inline__, __artificial__))
100 _mm_round_sd(__m128d __D, __m128d __V, const int __M)
102 return (__m128d) __builtin_ia32_roundsd ((__v2df)__D,
108 ((__m128d) __builtin_ia32_roundpd ((__v2df)(__m128d)(V), (int)(M)))
111 ((__m128d) __builtin_ia32_roundsd ((__v2df)(__m128d)(D), \
112 (__v2df)(__m128d)(V), (int)(M)))