Lines Matching defs:__p
38 /// at \a __p, and returns the 8-bit carry-out (carry flag).
42 /// Store32(__p, __x + __y + temp)
56 /// \param __p
62 unsigned int *__p) {
63 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p);
68 /// \a __x. Stores the unsigned 32-bit difference in the memory at \a __p,
73 /// Store32(__p, __x - (__y + temp))
87 /// \param __p
93 unsigned int *__p) {
94 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p);
100 /// at \a __p, and returns the 8-bit carry-out (carry flag).
104 /// Store64(__p, __x + __y + temp)
118 /// \param __p
123 unsigned long long __y, unsigned long long *__p) {
124 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p);
129 /// \a __x. Stores the unsigned 64-bit difference in the memory at \a __p,
134 /// Store64(__p, __x - (__y + temp))
148 /// \param __p
153 unsigned long long __y, unsigned long long *__p) {
154 return __builtin_ia32_subborrow_u64(__cf, __x, __y, __p);