Searched refs:RightShift (Results 1 – 15 of 15) sorted by relevance
/third_party/node/deps/v8/src/bigint/ |
D | div-helpers.h | 17 void RightShift(RWDigits Z, Digits X, int shift); 67 RightShift(rw_view, rw_view, shift_); in Reset()
|
D | div-helpers.cc | 47 void RightShift(RWDigits Z, Digits X, int shift) { in RightShift() function
|
D | div-barrett.cc | 357 RightShift(R, Ri, b_normalized.shift()); in DivideBarrett() 361 RightShift(R, R, b_normalized.shift()); in DivideBarrett()
|
D | div-schoolbook.cc | 182 RightShift(R, U, b_normalized.shift()); in DivideSchoolbook()
|
D | div-burnikel.cc | 274 RightShift(R, Ri_part, sigma); in DivideBurnikelZiegler()
|
D | bitwise.cc | 195 void RightShift(RWDigits Z, Digits X, digit_t shift, in RightShift() function
|
D | tostring.cc | 525 RightShift(right, right, level->leading_zero_shift_); in ProcessLevel()
|
D | bigint.h | 262 void RightShift(RWDigits Z, Digits X, digit_t shift,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
D | MicrosoftDemangleNodes.h | 120 RightShift, // ?5 # operator>> enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
D | MicrosoftDemangleNodes.cpp | 253 OUTPUT_ENUM_CLASS_VALUE(IntrinsicFunctionKind, RightShift, "operator>>"); in output()
|
D | MicrosoftDemangle.cpp | 543 IFK::RightShift, // ?5 # operator>> in translateIntrinsicFunctionCode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.cpp | 3774 bool RightShift = Opc == PPC::SRW || Opc == PPC::SRW_rec || Opc == PPC::SRD || in transformToImmFormFedByLI() local 3805 uint64_t SH = ShAmt == 0 ? 0 : RightShift ? 32 - ShAmt : ShAmt; in transformToImmFormFedByLI() 3806 uint64_t MB = RightShift ? ShAmt : 0; in transformToImmFormFedByLI() 3807 uint64_t ME = RightShift ? 31 : 31 - ShAmt; in transformToImmFormFedByLI() 3815 uint64_t SH = ShAmt == 0 ? 0 : RightShift ? 64 - ShAmt : ShAmt; in transformToImmFormFedByLI() 3816 uint64_t ME = RightShift ? ShAmt : 63 - ShAmt; in transformToImmFormFedByLI()
|
D | PPCISelLowering.cpp | 13861 SDNode *RightShift = *UI; in PerformDAGCombine() local 13863 std::swap(Trunc, RightShift); in PerformDAGCombine() 13869 if (RightShift->getOpcode() != ISD::SRL || in PerformDAGCombine() 13870 !isa<ConstantSDNode>(RightShift->getOperand(1)) || in PerformDAGCombine() 13871 RightShift->getConstantOperandVal(1) != 32 || in PerformDAGCombine() 13872 !RightShift->hasOneUse()) in PerformDAGCombine() 13875 SDNode *Trunc2 = *RightShift->use_begin(); in PerformDAGCombine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCalls.cpp | 3693 Value *RightShift = Signed ? Builder.CreateAShr(Shl, IntSize - Width) in visitCallInst() local 3695 RightShift->takeName(II); in visitCallInst() 3696 return replaceInstUsesWith(*II, RightShift); in visitCallInst() 3699 Value *RightShift = Signed ? Builder.CreateAShr(Src, Offset) in visitCallInst() local 3702 RightShift->takeName(II); in visitCallInst() 3703 return replaceInstUsesWith(*II, RightShift); in visitCallInst()
|
/third_party/node/deps/v8/src/objects/ |
D | bigint.cc | 1281 bigint::RightShift(GetRWDigits(result), GetDigits(x), shift, state); in RightShiftByAbsolute()
|