Home
last modified time | relevance | path

Searched refs:__generic (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_spirv_builtins.h34 #define __generic macro
36 #define __generic __attribute__((opencl_generic)) macro
84 __global void *__spirv_GenericCastToPtrExplicit_ToGlobal(__generic void *,
89 __spirv_GenericCastToPtrExplicit_ToGlobal(__generic const void *,
94 __spirv_GenericCastToPtrExplicit_ToGlobal(__generic volatile void *,
99 __spirv_GenericCastToPtrExplicit_ToGlobal(__generic const volatile void *,
103 __local void *__spirv_GenericCastToPtrExplicit_ToLocal(__generic void *,
108 __spirv_GenericCastToPtrExplicit_ToLocal(__generic const void *,
113 __spirv_GenericCastToPtrExplicit_ToLocal(__generic volatile void *,
118 __spirv_GenericCastToPtrExplicit_ToLocal(__generic const volatile void *,
[all …]
H A Dopencl-c-base.h669 template <typename _Tp> struct __remove_address_space<__generic _Tp> {
/freebsd/include/
H A Dtgmath.h85 #elif defined(__generic)
87 __generic(x, long double _Complex, fnl, \
88 __generic(x, double _Complex, fn, \
89 __generic(x, float _Complex, fnf, \
90 __generic(x, long double, fnl, \
91 __generic(x, float, fnf, fn)))))
107 __generic(x, long double _Complex, cfnl, \
108 __generic(x, double _Complex, cfn, \
109 __generic(x, float _Complex, cfnf, \
110 __generic(x, long double, fnl, \
[all …]
H A Dlibgen.h53 #if defined(__generic) && !defined(__cplusplus)
60 #define basename(x) __generic(x, const char *, __old_basename, basename)(x)
61 #define dirname(x) __generic(x, const char *, __old_dirname, dirname)(x)
H A Dstdlib.h367 #if defined(__generic) || defined(__cplusplus)
373 #if defined(__generic) && !defined(__cplusplus)
375 __generic(arg5, int (*)(void *, const void *, const void *), \
H A Dcomplex.h41 #ifdef __generic
42 _Static_assert(__generic(_Complex_I, float _Complex, 1, 0),
/freebsd/sys/sys/
H A Dcdefs.h222 #define __generic(expr, t, yes, no) \ macro
225 #define __generic(expr, t, yes, no) \ macro
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.def631 KEYWORD(__generic , KEYOPENCLC | KEYOPENCLCXX)
636 ALIAS("generic", __generic , KEYOPENCLC | KEYOPENCLCXX)
H A DAttrDocs.td4729 __generic(generic), __global(global), __local(local), __private(private),
4736 __generic int* foo(global int* g) {
4749 let Heading = "__generic, generic, [[clang::opencl_generic]]";
H A DAttr.td1773 let Spellings = [CustomKeyword<"__generic">, CustomKeyword<"generic">,