HomeSort by: relevance | last modified time | path
    Searched refs:__v (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/crypto/arch/x86/
immintrin_ext.h 41 return ((const struct { __m128i_u __v; } _PACKALIAS *)__p)->__v;
47 _mm_storeu_epi8(void *__p, __m128i __v)
50 *(__v16qi_u *)__p = (__v16qi_u)__v;
52 ((struct { __m128i_u __v; } _PACKALIAS *)__p)->__v = __v;
immintrin.h 129 return ((const struct { __m128i_u __v; } _PACKALIAS *)__p)->__v;
138 int32_t __v = (*(const __m32_u *)__p)[0]; local in function:_mm_loadu_si32
140 int32_t __v = ((const struct { int32_t __v; } _PACKALIAS *)__p)->__v;
142 return __extension__ (__m128i)(__v4si){ __v, 0, 0, 0 };
150 int64_t __v = (int64_t)*(const __m64_u *)__p; local in function:_mm_loadu_si64
152 int64_t __v = ((const struct { int64_t __v; } _PACKALIAS *)__p)->__v
    [all...]
  /src/sys/crypto/arch/arm/
arm_neon.h 64 #define __neon_lane_index(__v, __i) (__arraycount(__v) - 1 - (__i))
65 #define __neon_laneq_index(__v, __i) (__arraycount(__v) - 1 - (__i))
67 #define __neon_lane_index(__v, __i) ((__i) ^ (__arraycount(__v) - 1))
68 #define __neon_laneq_index(__v, __i) ((__i) ^ (__arraycount(__v)/2 - 1))
70 #define __neon_lane_index(__v, __i) (__i)
71 #define __neon_laneq_index(__v, __i) (__i
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_linux.h 113 ({ void** __v; __asm__("mrs %0, tpidr_el0" : "=r"(__v)); __v; })
116 ({ void** __v; __asm__("mrc p15, 0, %0, c13, c0, 3" : "=r"(__v)); __v; })
121 ({ register void** __v asm("v1"); \
125 ".set pop\n" : "=r"(__v)); \
126 __v; })
129 ({ void** __v; __asm__("movl %%gs:0, %0" : "=r"(__v)); __v; }
    [all...]
  /src/sys/sys/
bitops.h 306 #define __BITMAP_BIT(__n, __v) \
307 ((__typeof__((__v)->_b[0]))1 << ((__n) & __BITMAP_MASK(*(__v)->_b)))
308 #define __BITMAP_WORD(__n, __v) \
309 ((__n) >> __BITMAP_SHIFT(*(__v)->_b))
311 #define __BITMAP_SET(__n, __v) \
312 ((__v)->_b[__BITMAP_WORD(__n, __v)] |= __BITMAP_BIT(__n, __v))
313 #define __BITMAP_CLR(__n, __v) \
    [all...]
systm.h 213 void *__v; \
214 hash_value(&__v, sizeof(__v), &src, sizeof(src)); \
215 dst = __v; \
232 uint64_t __v = src; \
233 hash_value(&dst, sizeof(dst), &__v, sizeof(__v)); \
  /src/sys/dev/ic/
i82557var.h 310 uint32_t __v; \
326 __v = 0xffffffff; \
327 memcpy(__UNVOLATILE(&__rfa->link_addr), &__v, sizeof(__v)); \
328 memcpy(__UNVOLATILE(&__rfa->rbd_addr), &__v, sizeof(__v)); \
337 __v = htole32(__rxmap->dm_segs[0].ds_addr + \
341 memcpy(__UNVOLATILE(&__p_rfa->link_addr), &__v, \
342 sizeof(__v)); \
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_utils.h 150 unsigned long __v = (unsigned long)(ptr); \
151 (typeof(ptr))(__v & -BIT(n)); \
157 unsigned long __v = (unsigned long)(ptr); \
158 *(bits) = __v & (BIT(n) - 1); \
159 (typeof(ptr))(__v & -BIT(n)); \
169 unsigned long __v = (unsigned long)(ptr); \
170 (typeof(ptr))(__v - 1); \
174 unsigned long __v = (unsigned long)(ptr); \
175 (typeof(ptr))(__v + 1); \
  /src/sys/arch/arm/include/
armreg.h 698 const bool __v = (psr & PSR_V_bit); local in function:arm_cond_ok_p
710 __ok = __v;
716 __ok = __n == __v;
719 __ok = __n == __v && !__z;

Completed in 72 milliseconds