Searched refs:BaseShift (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 1603 int64_t BaseShift = 0; in GetFixedPointValue() local 1623 if (NegativeExponent) BaseShift -= Exponent; in GetFixedPointValue() 1624 else BaseShift += Exponent; in GetFixedPointValue() 1679 BaseShift += FractBaseShift; in GetFixedPointValue() 1684 if (BaseShift > 0) { in GetFixedPointValue() 1685 for (int64_t i = 0; i < BaseShift; ++i) { in GetFixedPointValue() 1688 } else if (BaseShift < 0) { in GetFixedPointValue() 1689 for (int64_t i = BaseShift; i < 0 && !Val.isZero(); ++i) in GetFixedPointValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrFormats.td | 2692 class BaseShift<bit size, bits<2> shift_type, RegisterClass regtype, string asm, 2700 def Wr : BaseShift<0b0, shift_type, GPR32, asm>; 2702 def Xr : BaseShift<0b1, shift_type, GPR64, asm, OpNode>;
|