Lines Matching defs:__y
36 /// Adds unsigned 32-bit integers \a __x and \a __y, plus 0 or 1 as indicated
42 /// Store32(__p, __x + __y + temp)
54 /// \param __y
61 unsigned int __y,
63 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p);
66 /// Adds unsigned 32-bit integer \a __y to 0 or 1 as indicated by the carry
73 /// Store32(__p, __x - (__y + temp))
85 /// \param __y
92 unsigned int __y,
94 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p);
98 /// Adds unsigned 64-bit integers \a __x and \a __y, plus 0 or 1 as indicated
104 /// Store64(__p, __x + __y + temp)
116 /// \param __y
123 unsigned long long __y, unsigned long long *__p) {
124 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p);
127 /// Adds unsigned 64-bit integer \a __y to 0 or 1 as indicated by the carry
134 /// Store64(__p, __x - (__y + temp))
146 /// \param __y
153 unsigned long long __y, unsigned long long *__p) {
154 return __builtin_ia32_subborrow_u64(__cf, __x, __y, __p);