| /llvm-project-15.0.7/compiler-rt/lib/interception/ |
| H A D | interception.h | 130 extern "C" ret_type func(__VA_ARGS__); 141 extern "C" ret_type func(__VA_ARGS__) \ 148 extern "C" ret_type func(__VA_ARGS__) \ 159 # define DECLARE_REAL(ret_type, func, ...) argument 174 extern "C" ret_type func(__VA_ARGS__); 186 extern "C" ret_type func(__VA_ARGS__); 203 # define DEFINE_REAL(ret_type, func, ...) argument 218 #define INTERCEPTOR(ret_type, func, ...) \ argument 223 ret_type WRAP(func)(__VA_ARGS__) 227 INTERCEPTOR(ret_type, func, __VA_ARGS__) [all …]
|
| /llvm-project-15.0.7/clang/utils/VtableTest/ |
| H A D | gen.cc | 157 int ret_type = 0; in gs() local 159 ret_type = random() % s + 1; in gs() 160 if (!base_present[s][ret_type] in gs() 167 ret_type = s; in gs() 170 ret_types[s][fn] = ret_type; in gs() 172 if (ret_type) { in gs() 177 if (ret_type) in gs() 233 int ret_type = 0; in gs() local 239 if (ret_type != s) in gs() 244 if (ret_type) { in gs() [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_solaris.cpp | 46 #define DECLARE__REAL(ret_type, func, ...) \ argument 47 extern "C" ret_type _REAL(func)(__VA_ARGS__) 48 #define DECLARE__REAL_AND_INTERNAL(ret_type, func, ...) \ argument 49 DECLARE__REAL(ret_type, func, __VA_ARGS__); \ 50 ret_type internal_ ## func(__VA_ARGS__) 57 #define DECLARE__REAL64(ret_type, func, ...) \ argument 58 extern "C" ret_type _REAL64(func)(__VA_ARGS__) 59 #define DECLARE__REAL_AND_INTERNAL64(ret_type, func, ...) \ argument 60 DECLARE__REAL64(ret_type, func, __VA_ARGS__); \ 61 ret_type internal_ ## func(__VA_ARGS__)
|
| H A D | sanitizer_netbsd.cpp | 89 #define DEFINE__REAL(ret_type, func, ...) \ argument 90 static ret_type (*real_##func)(__VA_ARGS__) = NULL; \ 92 real_##func = (ret_type(*)(__VA_ARGS__))GetRealLibcAddress(#func); \
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | Casting.h | 150 using ret_type = To &; // Normal case, return Ty& 153 using ret_type = const To &; // Normal case, return Ty& 157 using ret_type = To *; // Pointer arg case, return Ty* 171 using PointerType = typename cast_retty_impl<To, From *>::ret_type; 175 using ret_type = std::unique_ptr<ResultType>; 182 using ret_type = typename cast_retty<To, SimpleFrom>::ret_type; 187 using ret_type = typename cast_retty_impl<To, FromTy>::ret_type; 191 using ret_type = typename cast_retty_wrap< 192 To, From, typename simplify_type<From>::SimpleType>::ret_type; 204 static typename cast_retty<To, From>::ret_type doit(const From &Val) { [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/msan/ |
| H A D | msan_interceptors.cpp | 384 #define INTERCEPTOR_STRTO_BODY(ret_type, func, ...) \ argument 386 ret_type res = REAL(func)(__VA_ARGS__); \ 414 #define INTERCEPTORS_STRTO(ret_type, func, char_type) \ argument 415 INTERCEPTOR_STRTO(ret_type, func, char_type) \ 416 INTERCEPTOR_STRTO_LOC(ret_type, func##_l, char_type) 418 #define INTERCEPTORS_STRTO_BASE(ret_type, func, char_type) \ argument 420 INTERCEPTOR_STRTO_BASE_LOC(ret_type, func##_l, char_type) 423 #define INTERCEPTORS_STRTO(ret_type, func, char_type) \ argument 424 INTERCEPTOR_STRTO(ret_type, func, char_type) \ 425 INTERCEPTOR_STRTO_LOC(ret_type, func##_l, char_type) \ [all …]
|
| /llvm-project-15.0.7/llvm/test/CodeGen/WebAssembly/ |
| H A D | multivalue-stackify.py | 172 ret_type, var, idx = def_data[use] 181 ret_type = make_llvm_type(len(defs)) 187 def_data.append((ret_type, result_var, i)) 206 ret_type = make_llvm_type(num_defs)
|
| /llvm-project-15.0.7/compiler-rt/lib/safestack/ |
| H A D | safestack_platform.h | 58 #define DEFINE__REAL(ret_type, func, ...) \ argument 59 static ret_type (*real_##func)(__VA_ARGS__) = NULL; \ 61 real_##func = (ret_type(*)(__VA_ARGS__))GetRealLibcAddress(#func); \
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | Dialect.h | 308 using ret_type = 314 using ret_type =
|
| /llvm-project-15.0.7/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerInterceptors.cpp | 21 #define DEFINE_REAL(ret_type, func, ...) \ argument 22 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCDeclVendor.cpp | 347 clang::QualType ret_type = in BuildMethod() local 351 if (ret_type.isNull()) in BuildMethod() 356 ret_type, nullptr, interface_decl, isInstance, isVariadic, in BuildMethod()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | StopInfo.cpp | 57 lldb::StateType ret_type = thread_sp->GetProcess()->GetPrivateState(); in HasTargetRunSinceMe() local 58 if (ret_type == eStateRunning) { in HasTargetRunSinceMe() 60 } else if (ret_type == eStateStopped) { in HasTargetRunSinceMe()
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | LangRef.rst | 25093 declare <ret_type> 25103 into the array. The return type ``ret_type`` is a pointer type to the array element. 25166 declare <ret_type> 25179 The return type ``ret_type`` is a pointer type to the structure member.
|