Home
last modified time | relevance | path

Searched refs:__leaf (Results 1 – 6 of 6) sorted by relevance

/openbsd/src/gnu/llvm/clang/lib/Headers/
Dcpuid.h249 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument
251 : "0"(__leaf))
253 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument
255 : "0"(__leaf), "2"(__count))
258 #define __cpuid(__leaf, __eax, __ebx, __ecx, __edx) \ argument
263 : "0"(__leaf))
265 #define __cpuid_count(__leaf, __count, __eax, __ebx, __ecx, __edx) \ argument
270 : "0"(__leaf), "2"(__count))
273 static __inline unsigned int __get_cpuid_max (unsigned int __leaf, in __get_cpuid_max() argument
298 __cpuid(__leaf, __eax, __ebx, __ecx, __edx); in __get_cpuid_max()
[all …]
Dsgxintrin.h24 _enclu_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _enclu_u32() argument
29 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _enclu_u32()
35 _encls_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _encls_u32() argument
40 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _encls_u32()
46 _enclv_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _enclv_u32() argument
51 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _enclv_u32()
Dpconfigintrin.h26 _pconfig_u32(unsigned int __leaf, __SIZE_TYPE__ __d[]) in _pconfig_u32() argument
31 : "a" (__leaf), "b" (__d[0]), "c" (__d[1]), "d" (__d[2]) in _pconfig_u32()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/ext/
Dropeimpl.h74 const _RopeRep* __leaf = __x._M_path_end[__x._M_leaf_index]; in _S_setbuf() local
78 switch(__leaf->_M_tag) { in _S_setbuf()
81 ((_Rope_RopeLeaf<_CharT,_Alloc>*)__leaf)->_M_data; in _S_setbuf()
83 __x._M_buf_end = __x._M_buf_start + __leaf->_M_size; in _S_setbuf()
90 size_t __leaf_end = __leaf_pos + __leaf->_M_size; in _S_setbuf()
92 ((_Rope_RopeFunction<_CharT,_Alloc>*)__leaf)->_M_fn; in _S_setbuf()
785 bool operator() (const _CharT* __leaf, size_t __n) { in operator()
786 uninitialized_copy_n(__leaf, __n, _M_buf_ptr); in operator()
801 bool operator() (const _CharT* __leaf, size_t __n) { in operator()
804 if (__leaf[__i] == _M_pattern) { in operator()
[all …]
/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/
Dropeimpl.h75 const _RopeRep* __leaf = __x._M_path_end[__x._M_leaf_index]; in _S_setbuf() local
79 switch(__leaf->_M_tag) in _S_setbuf()
82 __x._M_buf_start = ((_Rope_RopeLeaf<_CharT, _Alloc>*)__leaf)->_M_data; in _S_setbuf()
84 __x._M_buf_end = __x._M_buf_start + __leaf->_M_size; in _S_setbuf()
91 size_t __leaf_end = __leaf_pos + __leaf->_M_size; in _S_setbuf()
93 _Alloc>*)__leaf)->_M_fn; in _S_setbuf()
856 operator()(const _CharT* __leaf, size_t __n) in operator()
858 uninitialized_copy_n(__leaf, __n, _M_buf_ptr); in operator()
879 operator()(const _CharT* __leaf, size_t __n) in operator()
884 if (__leaf[__i] == _M_pattern) in operator()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Linux/
DNativeRegisterContextLinux_x86_64.cpp27 static inline int get_cpuid_count(unsigned int __leaf, in get_cpuid_count() argument
32 unsigned int __max_leaf = __get_cpuid_max(__leaf & 0x80000000, nullptr); in get_cpuid_count()
34 if (__max_leaf == 0 || __max_leaf < __leaf) in get_cpuid_count()
37 __cpuid_count(__leaf, __subleaf, *__eax, *__ebx, *__ecx, *__edx); in get_cpuid_count()