Home
last modified time | relevance | path

Searched refs:BaseShift (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DLiteralSupport.cpp1071 int64_t BaseShift = 0; in GetFixedPointValue() local
1090 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue()
1091 else BaseShift += Exponent; in GetFixedPointValue()
1146 BaseShift += FractBaseShift; in GetFixedPointValue()
1151 if (BaseShift > 0) { in GetFixedPointValue()
1152 for (int64_t i = 0; i < BaseShift; ++i) { in GetFixedPointValue()
1155 } else if (BaseShift < 0) { in GetFixedPointValue()
1156 for (int64_t i = BaseShift; i < 0 && !Val.isNullValue(); ++i) in GetFixedPointValue()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64InstrFormats.td1793 class BaseShift<bits<2> shift_type, RegisterClass regtype, string asm,
1801 def Wr : BaseShift<shift_type, GPR32, asm> {
1805 def Xr : BaseShift<shift_type, GPR64, asm, OpNode> {