Searched refs:IndexMask (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
H A D | v_log_inline.h | 47 #define IndexMask (N - 1) macro 60 uint64_t i0 = (vgetq_lane_u64 (i, 0) >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in log_lookup() 61 uint64_t i1 = (vgetq_lane_u64 (i, 1) >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in log_lookup()
|
H A D | exp2.c | 14 #define IndexMask (N - 1) macro 36 return (uint64x2_t){ __v_exp_data[i[0] & IndexMask], in lookup_sbits() 37 __v_exp_data[i[1] & IndexMask] }; in lookup_sbits()
|
H A D | log.c | 36 #define IndexMask (N - 1) macro 49 uint64_t i0 = (vgetq_lane_u64 (i, 0) >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in lookup() 50 uint64_t i1 = (vgetq_lane_u64 (i, 1) >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in lookup()
|
H A D | log2.c | 38 #define IndexMask (N - 1) macro 51 = (vgetq_lane_u64 (i, 0) >> (52 - V_LOG2_TABLE_BITS)) & IndexMask; in lookup() 53 = (vgetq_lane_u64 (i, 1) >> (52 - V_LOG2_TABLE_BITS)) & IndexMask; in lookup()
|
H A D | exp.c | 14 #define IndexMask (N - 1) macro 116 u = (uint64x2_t){ Tab[u[0] & IndexMask], Tab[u[1] & IndexMask] }; in V_NAME_D1()
|
H A D | log10.c | 39 #define IndexMask (N - 1) macro 52 = (vgetq_lane_u64 (i, 0) >> (52 - V_LOG10_TABLE_BITS)) & IndexMask; in lookup() 54 = (vgetq_lane_u64 (i, 1) >> (52 - V_LOG10_TABLE_BITS)) & IndexMask; in lookup()
|
H A D | asinh.c | 75 #define IndexMask (N - 1) macro 88 uint64_t i0 = (vgetq_lane_u64 (i, 0) >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in lookup() 89 uint64_t i1 = (vgetq_lane_u64 (i, 1) >> (52 - V_LOG_TABLE_BITS)) & IndexMask; in lookup()
|
H A D | exp10.c | 44 #define IndexMask v_u64 (N - 1) macro 116 uint64x2_t i = vandq_u64 (u, IndexMask); in V_NAME_D1()
|
/freebsd/contrib/arm-optimized-routines/math/ |
H A D | exp10.c | 13 #define IndexMask (N - 1) macro 109 uint64_t i = (ki & IndexMask) * 2; in exp10()
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/ |
H A D | asinh.c | 15 #define IndexMask (((1 << V_LOG_TABLE_BITS) - 1) << 1) macro 72 = svand_x (pg, svlsr_x (pg, i_off, (51 - V_LOG_TABLE_BITS)), IndexMask); in __sv_log_inline()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | RDFGraph.h | 417 IndexMask((1 << BitsPerIndex) - 1) { in NodesPerBlock() 424 uint32_t Offset = (N1 & IndexMask) * NodeMemSize; in ptr() 443 const uint32_t IndexMask; member
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIISelLowering.cpp | 11845 uint32_t IndexMask = 0xFF << (Index * 8); in calculateByteProvider() local 11847 if ((IndexMask & BitMask) != IndexMask) { in calculateByteProvider() 11850 if (IndexMask & BitMask) in calculateByteProvider()
|