Lines Matching +full:64 +full:- +full:bit

1 /*===---- adcintrin.h - ADC intrinsics -------------------------------------===
5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 *===-----------------------------------------------------------------------===
31 /// Adds unsigned 32-bit integers \a __x and \a __y, plus 0 or 1 as indicated
32 /// by the carry flag \a __cf. Stores the unsigned 32-bit sum in the memory
33 /// at \a __p, and returns the 8-bit carry-out (carry flag).
46 /// The 8-bit unsigned carry flag; any non-zero value indicates carry.
48 /// A 32-bit unsigned addend.
50 /// A 32-bit unsigned addend.
53 /// \returns The 8-bit unsigned carry-out value.
61 /// Adds unsigned 32-bit integer \a __y to 0 or 1 as indicated by the carry
62 /// flag \a __cf, and subtracts the result from unsigned 32-bit integer
63 /// \a __x. Stores the unsigned 32-bit difference in the memory at \a __p,
64 /// and returns the 8-bit carry-out (carry or overflow flag).
68 /// Store32(__p, __x - (__y + temp))
77 /// The 8-bit unsigned carry flag; any non-zero value indicates carry.
79 /// The 32-bit unsigned minuend.
81 /// The 32-bit unsigned subtrahend.
84 /// \returns The 8-bit unsigned carry-out value.
93 /// Adds unsigned 64-bit integers \a __x and \a __y, plus 0 or 1 as indicated
94 /// by the carry flag \a __cf. Stores the unsigned 64-bit sum in the memory
95 /// at \a __p, and returns the 8-bit carry-out (carry flag).
108 /// The 8-bit unsigned carry flag; any non-zero value indicates carry.
110 /// A 64-bit unsigned addend.
112 /// A 64-bit unsigned addend.
115 /// \returns The 8-bit unsigned carry-out value.
122 /// Adds unsigned 64-bit integer \a __y to 0 or 1 as indicated by the carry
123 /// flag \a __cf, and subtracts the result from unsigned 64-bit integer
124 /// \a __x. Stores the unsigned 64-bit difference in the memory at \a __p,
125 /// and returns the 8-bit carry-out (carry or overflow flag).
129 /// Store64(__p, __x - (__y + temp))
138 /// The 8-bit unsigned carry flag; any non-zero value indicates carry.
140 /// The 64-bit unsigned minuend.
142 /// The 64-bit unsigned subtrahend.
145 /// \returns The 8-bit unsigned carry-out value.