Searched refs:ShiftDir (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Interp.h | 2264 enum class ShiftDir { Left, Right }; enum 2266 template <class LT, class RT, ShiftDir Dir> 2284 Dir == ShiftDir::Left ? ShiftDir::Right in DoShift() 2285 : ShiftDir::Left > (S, OpPC, LHS, RHS); in DoShift() 2288 if constexpr (Dir == ShiftDir::Left) { in DoShift() 2308 if constexpr (Dir == ShiftDir::Left) { in DoShift() 2335 return DoShift<LT, RT, ShiftDir::Right>(S, OpPC, LHS, RHS); in Shr() 2345 return DoShift<LT, RT, ShiftDir::Left>(S, OpPC, LHS, RHS); in Shl()
|