Lines Matching defs:v_u64_t
105 typedef u64_t v_u64_t;
262 static inline v_u64_t
284 v_any_u64 (v_u64_t x)
289 static inline v_u64_t
290 v_cond_u64 (v_u64_t x)
321 v_to_f64_u64 (v_u64_t x)
326 static inline v_u64_t
329 union { v_f64_t f; v_u64_t u; } r = {x};
333 v_as_f64_u64 (v_u64_t x)
335 union { v_u64_t u; v_f64_t f; } r = {x};
339 v_as_s64_u64 (v_u64_t x)
341 union { v_u64_t u; v_s64_t i; } r = {x};
344 static inline v_u64_t
347 union { v_s64_t i; v_u64_t u; } r = {x};
351 v_lookup_f64 (const f64_t *tab, v_u64_t idx)
355 static inline v_u64_t
356 v_lookup_u64 (const u64_t *tab, v_u64_t idx)
361 v_call_f64 (f64_t (*f) (f64_t), v_f64_t x, v_f64_t y, v_u64_t p)
373 typedef uint64x2_t v_u64_t;
534 static inline v_u64_t
537 return (v_u64_t){x, x};
556 v_any_u64 (v_u64_t x)
562 static inline v_u64_t
563 v_cond_u64 (v_u64_t x)
594 v_to_f64_u64 (v_u64_t x)
599 static inline v_u64_t
602 union { v_f64_t f; v_u64_t u; } r = {x};
606 v_as_f64_u64 (v_u64_t x)
608 union { v_u64_t u; v_f64_t f; } r = {x};
612 v_as_s64_u64 (v_u64_t x)
614 union { v_u64_t u; v_s64_t i; } r = {x};
617 static inline v_u64_t
620 union { v_s64_t i; v_u64_t u; } r = {x};
624 v_lookup_f64 (const f64_t *tab, v_u64_t idx)
628 static inline v_u64_t
629 v_lookup_u64 (const u64_t *tab, v_u64_t idx)
631 return (v_u64_t){tab[idx[0]], tab[idx[1]]};
634 v_call_f64 (f64_t (*f) (f64_t), v_f64_t x, v_f64_t y, v_u64_t p)