Searched refs:ret_type (Results 1 - 22 of 22) sorted by relevance

/freebsd-11-stable/sys/x86/include/
H A Difunc.h35 #define DEFINE_IFUNC(qual, ret_type, name, args, resolver_qual) \
36 resolver_qual ret_type (*name##_resolver(void))args __used; \
37 qual ret_type name args __attribute__((ifunc(#name "_resolver"))); \
38 resolver_qual ret_type (*name##_resolver(void))args
40 #define DEFINE_UIFUNC(qual, ret_type, name, args, resolver_qual) \
41 resolver_qual ret_type (*name##_resolver(uint32_t, uint32_t, \
43 qual ret_type name args __attribute__((ifunc(#name "_resolver"))); \
44 resolver_qual ret_type (*name##_resolver( \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception.h123 # define DECLARE_WRAPPER(ret_type, func, ...)
129 # define DECLARE_WRAPPER(ret_type, func, ...) \
130 extern "C" ret_type func(__VA_ARGS__);
131 # define DECLARE_WRAPPER_WINAPI(ret_type, func, ...) \
132 extern "C" __declspec(dllimport) ret_type __stdcall func(__VA_ARGS__);
137 # define DECLARE_WRAPPER(ret_type, func, ...)
145 # define DECLARE_WRAPPER(ret_type, func, ...) \
146 extern "C" ret_type func(__VA_ARGS__) \
152 # define DECLARE_WRAPPER(ret_type, func, ...) \
153 extern "C" ret_type fun
[all...]
/freebsd-11-stable/usr.bin/truss/
H A Dsyscalls.c81 { .name = "__acl_aclcheck_fd", .ret_type = 1, .nargs = 3,
83 { .name = "__acl_aclcheck_file", .ret_type = 1, .nargs = 3,
85 { .name = "__acl_aclcheck_link", .ret_type = 1, .nargs = 3,
87 { .name = "__acl_delete_fd", .ret_type = 1, .nargs = 2,
89 { .name = "__acl_delete_file", .ret_type = 1, .nargs = 2,
91 { .name = "__acl_delete_link", .ret_type = 1, .nargs = 2,
93 { .name = "__acl_get_fd", .ret_type = 1, .nargs = 3,
95 { .name = "__acl_get_file", .ret_type = 1, .nargs = 3,
97 { .name = "__acl_get_link", .ret_type = 1, .nargs = 3,
99 { .name = "__acl_set_fd", .ret_type
[all...]
H A Dsyscall.h105 u_int ret_type; /* 0, 1, or 2 return values */ member in struct:syscall
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCasting.h165 using ret_type = To &; // Normal case, return Ty&
168 using ret_type = const To &; // Normal case, return Ty&
172 using ret_type = To *; // Pointer arg case, return Ty*
176 using ret_type = const To *; // Constant pointer arg case, return const Ty*
180 using ret_type = const To *; // Constant pointer arg case, return const Ty*
186 using PointerType = typename cast_retty_impl<To, From *>::ret_type;
190 using ret_type = std::unique_ptr<ResultType>;
198 using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
204 using ret_type
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_solaris.cpp46 #define DECLARE__REAL(ret_type, func, ...) \
47 extern "C" ret_type _REAL(func)(__VA_ARGS__)
48 #define DECLARE__REAL_AND_INTERNAL(ret_type, func, ...) \
49 DECLARE__REAL(ret_type, func, __VA_ARGS__); \
50 ret_type internal_ ## func(__VA_ARGS__)
57 #define DECLARE__REAL64(ret_type, func, ...) \
58 extern "C" ret_type _REAL64(func)(__VA_ARGS__)
59 #define DECLARE__REAL_AND_INTERNAL64(ret_type, func, ...) \
60 DECLARE__REAL64(ret_type, func, __VA_ARGS__); \
61 ret_type internal
[all...]
H A Dsanitizer_netbsd.cpp89 #define DEFINE__REAL(ret_type, func, ...) \
90 static ret_type (*real_##func)(__VA_ARGS__) = NULL; \
92 real_##func = (ret_type(*)(__VA_ARGS__))GetRealLibcAddress(#func); \
/freebsd-11-stable/contrib/gcc/
H A Dtree-tailcall.c550 tree ret_type = TREE_TYPE (DECL_RESULT (current_function_decl)); local
561 stmt = build2 (MODIFY_EXPR, ret_type, NULL_TREE,
562 build2 (MULT_EXPR, ret_type, m_acc, a));
564 tmp = create_tmp_var (ret_type, "acc_tmp");
575 stmt = build2 (MODIFY_EXPR, ret_type, NULL_TREE,
576 build2 (PLUS_EXPR, ret_type, a_acc, var));
585 stmt = build2 (MODIFY_EXPR, ret_type, NULL_TREE,
586 build2 (MULT_EXPR, ret_type, m_acc, m));
619 tree ret_type = TREE_TYPE (DECL_RESULT (current_function_decl)); local
640 stmt = build2 (MODIFY_EXPR, ret_type, NULL_TRE
876 tree stmt, param, ret_type, tmp, phi; local
[all...]
H A Dtree-optimize.c479 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
481 if (ret_type && TYPE_SIZE_UNIT (ret_type)
482 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
483 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
487 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
489 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
478 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl)); local
H A Dtarghooks.c472 default_function_value (tree ret_type ATTRIBUTE_UNUSED,
483 return FUNCTION_OUTGOING_VALUE (ret_type, fn_decl_or_type);
487 return FUNCTION_VALUE (ret_type, fn_decl_or_type);
H A Dtarget.h726 rtx (*function_value) (tree ret_type, tree fn_decl_or_type,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack_platform.h58 #define DEFINE__REAL(ret_type, func, ...) \
59 static ret_type (*real_##func)(__VA_ARGS__) = NULL; \
61 real_##func = (ret_type(*)(__VA_ARGS__))GetRealLibcAddress(#func); \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp388 #define INTERCEPTOR_STRTO_BODY(ret_type, func, ...) \
390 ret_type res = REAL(func)(__VA_ARGS__); \
394 #define INTERCEPTOR_STRTO(ret_type, func, char_type) \
395 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr) { \
396 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr); \
399 #define INTERCEPTOR_STRTO_BASE(ret_type, func, char_type) \
400 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
402 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base); \
405 #define INTERCEPTOR_STRTO_LOC(ret_type, func, char_type) \
406 INTERCEPTOR(ret_type, fun
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y634 assign_rets(returns_enum_t ret_type, void *ret)
640 cur.return_type = ret_type;
641 if (ret_type != ret_var) {
642 if ((ret_type == ret_number) || (ret_type == ret_string)) {
650 } else if (ret_type == ret_byte) {
659 } else if (ret_type == ret_ref) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.cpp360 clang::QualType ret_type = local
364 if (ret_type.isNull())
369 ret_type, nullptr, interface_decl, isInstance, isVariadic,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp56 lldb::StateType ret_type = thread_sp->GetProcess()->GetPrivateState(); local
57 if (ret_type == eStateRunning) {
59 } else if (ret_type == eStateStopped) {
/freebsd-11-stable/contrib/elftoolchain/libelftc/
H A Dlibelftc_dem_gnu3.c207 struct vector_str ret_type; local
256 if (!vector_str_init(&ret_type))
258 ddata.cur_output = &ret_type;
281 if (!VEC_PUSH_STR(&ret_type, " "))
284 &ret_type))
287 vector_str_dest(&ret_type);
317 vector_str_dest(&ret_type);
/freebsd-11-stable/contrib/libcxxrt/
H A Dlibelftc_dem_gnu3.c537 struct vector_str ret_type; local
590 if (!vector_str_init(&ret_type))
592 ddata.cur_output = &ret_type;
615 if (!VEC_PUSH_STR(&ret_type, " "))
618 &ret_type))
621 vector_str_dest(&ret_type);
651 vector_str_dest(&ret_type);
/freebsd-11-stable/contrib/gcc/cp/
H A Ddecl2.c508 tree ret_type = TREE_TYPE (TREE_TYPE (method));
510 if (!acceptable_java_type (ret_type))
513 method, ret_type);
507 tree ret_type = TREE_TYPE (TREE_TYPE (method)); local
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Drs6000-c.c165 signed char ret_type;
2435 tree ret_type = rs6000_builtin_type (desc->ret_type);
2469 return fold_convert (ret_type,
164 signed char ret_type; member in struct:altivec_builtin_types
2433 tree ret_type = rs6000_builtin_type (desc->ret_type); local
H A Drs6000.c4452 tree ret_type = TREE_TYPE (fntype);
4454 tree_code_name[ (int)TREE_CODE (ret_type) ]);
4441 tree ret_type = TREE_TYPE (fntype); local
/freebsd-11-stable/contrib/gcc/config/ia64/
H A Dia64.c9406 tree ret_type = TREE_TYPE (fntype);
9415 && ret_type
9416 && TYPE_MODE (ret_type) == BLKmode
9417 && TREE_ADDRESSABLE (ret_type)
9383 tree ret_type = TREE_TYPE (fntype); local

Completed in 620 milliseconds