Searched refs:carry_in (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Target/ |
D | GenericOpcodes.td | 287 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/ |
D | simulator-arm64.cc | 779 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()
|
D | simulator-arm64.h | 1328 T AddWithCarry(bool set_flags, T left, T right, int carry_in = 0);
|
/external/vixl/src/aarch64/ |
D | simulator-aarch64.cc | 336 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()
|
D | simulator-aarch64.h | 1803 int carry_in = 0);
|