Home
last modified time | relevance | path

Searched refs:SBits (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCCodeEmitter.cpp1288 unsigned SBits = getShiftOp(ShOp); in getLdStSORegOpValue() local
1303 Binary |= SBits << 5; in getLdStSORegOpValue()
1583 unsigned SBits = 0; in getSORegRegOpValue() local
1593 case ARM_AM::lsl: SBits = 0x1; break; in getSORegRegOpValue()
1594 case ARM_AM::lsr: SBits = 0x3; break; in getSORegRegOpValue()
1595 case ARM_AM::asr: SBits = 0x5; break; in getSORegRegOpValue()
1596 case ARM_AM::ror: SBits = 0x7; break; in getSORegRegOpValue()
1600 Binary |= SBits << 4; in getSORegRegOpValue()
1628 unsigned SBits = 0; in getSORegImmOpValue() local
1638 case ARM_AM::lsl: SBits = 0x0; break; in getSORegImmOpValue()
[all …]
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Dfinite_pow.h26 #define SBits __v_pow_exp_data.sbits macro
185 uint64_t sbits = SBits[idx] + top; in exp_inline()
233 uint64_t sbits = SBits[idx] + top; in exp_nosignbias()
H A Dpow.c169 uint64x2_t sbits = v_lookup_u64 (SBits, idx); in v_exp_inline()