Home
last modified time | relevance | path

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

/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dv_log_inline.h47 #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 Dexp2.c14 #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 Dlog.c36 #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 Dlog2.c38 #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 Dexp.c14 #define IndexMask (N - 1) macro
116 u = (uint64x2_t){ Tab[u[0] & IndexMask], Tab[u[1] & IndexMask] }; in V_NAME_D1()
H A Dlog10.c39 #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 Dasinh.c75 #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 Dexp10.c44 #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 Dexp10.c13 #define IndexMask (N - 1) macro
109 uint64_t i = (ki & IndexMask) * 2; in exp10()
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Dasinh.c15 #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 DRDFGraph.h417 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 DSIISelLowering.cpp11845 uint32_t IndexMask = 0xFF << (Index * 8); in calculateByteProvider() local
11847 if ((IndexMask & BitMask) != IndexMask) { in calculateByteProvider()
11850 if (IndexMask & BitMask) in calculateByteProvider()