Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/
DGenericOpcodes.td287 let InOperandList = (ins type0:$src1, type0:$src2, type1:$carry_in);
302 let InOperandList = (ins type0:$src1, type0:$src2, type1:$carry_in);
/external/v8/src/arm64/
Dsimulator-arm64.cc779 T Simulator::AddWithCarry(bool set_flags, T left, T right, int carry_in) { in AddWithCarry() argument
785 DCHECK((carry_in == 0) || (carry_in == 1)); in AddWithCarry()
786 T result = left + right + carry_in; in AddWithCarry()
793 T max_uint_2op = std::numeric_limits<T>::max() - carry_in; in AddWithCarry()
Dsimulator-arm64.h1328 T AddWithCarry(bool set_flags, T left, T right, int carry_in = 0);
/external/vixl/src/aarch64/
Dsimulator-aarch64.cc336 int carry_in) { in AddWithCarry() argument
337 VIXL_ASSERT((carry_in == 0) || (carry_in == 1)); in AddWithCarry()
346 uint64_t result = (left + right + carry_in) & reg_mask; in AddWithCarry()
353 uint64_t max_uint_2op = max_uint - carry_in; in AddWithCarry()
Dsimulator-aarch64.h1803 int carry_in = 0);