// Copyright 2021 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/bigint/div-helpers.h" #include "src/bigint/bigint-internal.h" namespace v8 { namespace bigint { namespace { void Copy(RWDigits Z, Digits X) { … } } // namespace // Z := X << shift // Z and X may alias for an in-place shift. void LeftShift(RWDigits Z, Digits X, int shift) { … } // Z := X >> shift // Z and X may alias for an in-place shift. void RightShift(RWDigits Z, Digits X, int shift) { … } } // namespace bigint } // namespace v8