Home | History | Annotate | Download | only in x86

Lines Matching refs:__p

117 _mm_load1_ps(const float *__p)
119 return __extension__ (__m128)(__v4sf) { *__p, *__p, *__p, *__p };
124 _mm_loadu_si128(const __m128i_u *__p)
127 return *__p;
129 return ((const struct { __m128i_u __v; } _PACKALIAS *)__p)->__v;
135 _mm_loadu_si32(const void *__p)
138 int32_t __v = (*(const __m32_u *)__p)[0];
140 int32_t __v = ((const struct { int32_t __v; } _PACKALIAS *)__p)->__v;
147 _mm_loadu_si64(const void *__p)
150 int64_t __v = (int64_t)*(const __m64_u *)__p;
152 int64_t __v = ((const struct { int64_t __v; } _PACKALIAS *)__p)->__v;
159 _mm_load_si128(const __m128i *__p)
161 return *__p;
301 _mm_storeu_si128(__m128i_u *__p, __m128i __v)
304 *__p = __v;
306 ((struct { __m128i_u __v; } _PACKALIAS *)__p)->__v = __v;
312 _mm_storeu_si32(void *__p, __m128i __v)
315 *(__m32_u *)__p = (__m32)((__v4si)__v)[0];
317 ((struct { int32_t __v; } _PACKALIAS *)__p)->__v = ((__v4si)__v)[0];
323 _mm_storeu_si64(void *__p, __m128i __v)
326 *(__m64_u *)__p = (__m64)((__v2di)__v)[0];
328 ((struct { int64_t __v; } _PACKALIAS *)__p)->__v = ((__v2di)__v)[0];
334 _mm_store_si128(__m128i *__p, __m128i __v)
336 *__p = __v;