Lines Matching defs:__cf
37 /// by the carry flag \a __cf. Stores the unsigned 32-bit sum in the memory
41 /// temp := (__cf == 0) ? 0 : 1
50 /// \param __cf
59 __INLINE unsigned char __DEFAULT_FN_ATTRS _addcarry_u32(unsigned char __cf,
63 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p);
67 /// flag \a __cf, and subtracts the result from unsigned 32-bit integer
72 /// temp := (__cf == 0) ? 0 : 1
81 /// \param __cf
90 __INLINE unsigned char __DEFAULT_FN_ATTRS _subborrow_u32(unsigned char __cf,
94 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p);
99 /// by the carry flag \a __cf. Stores the unsigned 64-bit sum in the memory
103 /// temp := (__cf == 0) ? 0 : 1
112 /// \param __cf
122 _addcarry_u64(unsigned char __cf, unsigned long long __x,
124 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p);
128 /// flag \a __cf, and subtracts the result from unsigned 64-bit integer
133 /// temp := (__cf == 0) ? 0 : 1
142 /// \param __cf
152 _subborrow_u64(unsigned char __cf, unsigned long long __x,
154 return __builtin_ia32_subborrow_u64(__cf, __x, __y, __p);