Home
last modified time | relevance | path

Searched refs:carry_in (Results 1 - 5 of 5) sorted by relevance

/third_party/vixl/src/aarch64/
H A Dsimulator-aarch64.cc915 int carry_in) { in Simulator()
917 AddWithCarry(reg_size, left, right, carry_in); in Simulator()
932 int carry_in) { in Simulator()
933 VIXL_ASSERT((carry_in == 0) || (carry_in == 1)); in Simulator()
942 uint64_t result = (left + right + carry_in) & reg_mask; in Simulator()
949 uint64_t max_uint_2op = max_uint - carry_in; in Simulator()
969 int carry_in = (sum_lo.second & 0x2) >> 1; // C flag in NZCV result. in Simulator() local
971 AddWithCarry(kXRegSize, x.first, y.first, carry_in); in Simulator()
929 AddWithCarry(unsigned reg_size, uint64_t left, uint64_t right, int carry_in) Simulator() argument
H A Dsimulator-aarch64.h3232 int carry_in = 0);
3236 int carry_in);
H A Dlogic-aarch64.cc7726 unsigned carry_in = src2.Uint(vform, i + 1) & 1;
7728 AddWithCarry(reg_size, left, right, carry_in);
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-arm64.cc1046 T Simulator::AddWithCarry(bool set_flags, T left, T right, int carry_in) { in AddWithCarry() argument
1052 DCHECK((carry_in == 0) || (carry_in == 1)); in AddWithCarry()
1053 T result = left + right + carry_in; in AddWithCarry()
1060 T max_uint_2op = std::numeric_limits<T>::max() - carry_in; in AddWithCarry()
H A Dsimulator-arm64.h1487 T AddWithCarry(bool set_flags, T left, T right, int carry_in = 0);

Completed in 40 milliseconds