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.cpp1281 unsigned SBits = getShiftOp(ShOp); in getLdStSORegOpValue()
1296 Binary |= SBits << 5; in getLdStSORegOpValue()
1539 unsigned SBits = 0; in getSORegRegOpValue()
1549 case ARM_AM::lsl: SBits = 0x1; break; in getSORegRegOpValue()
1550 case ARM_AM::lsr: SBits = 0x3; break; in getSORegRegOpValue() local
1551 case ARM_AM::asr: SBits = 0x5; break; in getSORegRegOpValue()
1552 case ARM_AM::ror: SBits = 0x7; break; in getSORegRegOpValue()
1556 Binary |= SBits << 4; in getSORegRegOpValue()
1584 unsigned SBits = 0; in getSORegImmOpValue()
1594 case ARM_AM::lsl: SBits in getSORegImmOpValue()
1292 unsigned SBits = getShiftOp(ShOp); getLdStSORegOpValue() local
1595 unsigned SBits = 0; getSORegImmOpValue() local
1704 unsigned SBits = 0; getT2SORegOpValue() local
[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()