Home
last modified time | relevance | path

Searched refs:__cf (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dadcintrin.h59 __INLINE unsigned char __DEFAULT_FN_ATTRS _addcarry_u32(unsigned char __cf, in _addcarry_u32() argument
63 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p); in _addcarry_u32()
90 __INLINE unsigned char __DEFAULT_FN_ATTRS _subborrow_u32(unsigned char __cf, in _subborrow_u32() argument
94 return __builtin_ia32_subborrow_u32(__cf, __x, __y, __p); in _subborrow_u32()
122 _addcarry_u64(unsigned char __cf, unsigned long long __x, in _addcarry_u64() argument
124 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p); in _addcarry_u64()
152 _subborrow_u64(unsigned char __cf, unsigned long long __x, in _subborrow_u64() argument
154 return __builtin_ia32_subborrow_u64(__cf, __x, __y, __p); in _subborrow_u64()
H A Dadxintrin.h62 __INLINE unsigned char __DEFAULT_FN_ATTRS _addcarryx_u32(unsigned char __cf, in _addcarryx_u32() argument
66 return __builtin_ia32_addcarryx_u32(__cf, __x, __y, __p); in _addcarryx_u32()
94 _addcarryx_u64(unsigned char __cf, unsigned long long __x, in _addcarryx_u64() argument
96 return __builtin_ia32_addcarryx_u64(__cf, __x, __y, __p); in _addcarryx_u64()
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dconcepts.h53 const _Formatter& __cf, in requires() argument
58 { __cf.format(__t, __fc) } -> same_as<typename _Context::iterator>; in requires()