Home
last modified time | relevance | path

Searched refs:IndexMask (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/arm-optimized-routines/pl/math/
H A Dv_log_inline.h47 #define IndexMask (N - 1) macro
60 uint64_t i0 = (i[0] >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in log_lookup()
61 uint64_t i1 = (i[1] >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in log_lookup()
H A Dv_log2_3u.c36 #define IndexMask (N - 1) macro
48 uint64_t i0 = (i[0] >> (52 - V_LOG2_TABLE_BITS)) & IndexMask; in lookup()
49 uint64_t i1 = (i[1] >> (52 - V_LOG2_TABLE_BITS)) & IndexMask; in lookup()
H A Dv_log10_2u5.c37 #define IndexMask (N - 1) macro
51 uint64_t i0 = (i[0] >> (52 - V_LOG10_TABLE_BITS)) & IndexMask; in lookup()
52 uint64_t i1 = (i[1] >> (52 - V_LOG10_TABLE_BITS)) & IndexMask; in lookup()
H A Dv_exp2_2u.c14 #define IndexMask (N - 1) macro
35 return (uint64x2_t){ __v_exp_data[i[0] & IndexMask], in lookup_sbits()
36 __v_exp_data[i[1] & IndexMask] }; in lookup_sbits()
H A Dv_exp10_2u.c43 #define IndexMask v_u64 (N - 1) macro
115 uint64x2_t i = vandq_u64 (u, IndexMask); in V_NAME_D1()
/freebsd-14.2/contrib/arm-optimized-routines/math/aarch64/
H A Dv_log.c32 #define IndexMask (N - 1) macro
46 uint64_t i0 = (i[0] >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in lookup()
47 uint64_t i1 = (i[1] >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in lookup()
H A Dv_exp.c12 #define IndexMask (N - 1) macro
114 u = (uint64x2_t){ Tab[u[0] & IndexMask], Tab[u[1] & IndexMask] }; in V_NAME_D1()
/freebsd-14.2/contrib/arm-optimized-routines/math/
H A Dexp10.c11 #define IndexMask (N - 1) macro
107 uint64_t i = (ki & IndexMask) * 2; in exp10()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h417 IndexMask((1 << BitsPerIndex) - 1) { in NodesPerBlock()
424 uint32_t Offset = (N1 & IndexMask) * NodeMemSize; in ptr()
443 const uint32_t IndexMask; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp11647 uint32_t IndexMask = 0xFF << (Index * 8); in calculateByteProvider() local
11649 if ((IndexMask & BitMask) != IndexMask) { in calculateByteProvider()
11652 if (IndexMask & BitMask) in calculateByteProvider()