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

/freebsd-11.0-release/contrib/compiler-rt/lib/interception/
H A Dinterception.h122 # define DECLARE_WRAPPER(ret_type, func, ...)
128 # define DECLARE_WRAPPER(ret_type, func, ...) \
129 extern "C" ret_type func(__VA_ARGS__);
130 # define DECLARE_WRAPPER_WINAPI(ret_type, func, ...) \
131 extern "C" __declspec(dllimport) ret_type __stdcall func(__VA_ARGS__);
139 # define DECLARE_WRAPPER(ret_type, func, ...) \
140 extern "C" ret_type func(__VA_ARGS__) \
146 # define DECLARE_WRAPPER(ret_type, func, ...) \
147 extern "C" ret_type func(__VA_ARGS__) \
156 # define DECLARE_REAL(ret_type, fun
[all...]
/freebsd-11.0-release/usr.bin/truss/
H A Dsyscalls.c98 { .name = "__getcwd", .ret_type = 1, .nargs = 2,
100 { .name = "_umtx_op", .ret_type = 1, .nargs = 5,
103 { .name = "accept", .ret_type = 1, .nargs = 3,
105 { .name = "access", .ret_type = 1, .nargs = 2,
107 { .name = "bind", .ret_type = 1, .nargs = 3,
109 { .name = "bindat", .ret_type = 1, .nargs = 4,
112 { .name = "break", .ret_type = 1, .nargs = 1,
114 { .name = "chdir", .ret_type = 1, .nargs = 1,
116 { .name = "chflags", .ret_type = 1, .nargs = 2,
118 { .name = "chmod", .ret_type
[all...]
H A Dsyscall.h68 u_int ret_type; /* 0, 1, or 2 return values */ member in struct:syscall
/freebsd-11.0-release/contrib/llvm/include/llvm/Support/
H A DCasting.h147 typedef To& ret_type; // Normal case, return Ty& typedef in struct:llvm::cast_retty_impl
150 typedef const To &ret_type; // Normal case, return Ty& typedef in struct:llvm::cast_retty_impl
154 typedef To* ret_type; // Pointer arg case, return Ty* typedef in struct:llvm::cast_retty_impl
158 typedef const To* ret_type; // Constant pointer arg case, return const Ty* typedef in struct:llvm::cast_retty_impl
162 typedef const To* ret_type; // Constant pointer arg case, return const Ty* typedef in struct:llvm::cast_retty_impl
171 typedef typename cast_retty<To, SimpleFrom>::ret_type ret_type; typedef in struct:llvm::cast_retty_wrap
177 typedef typename cast_retty_impl<To,FromTy>::ret_type ret_type; typedef in struct:llvm::cast_retty_wrap
183 typename simplify_type<From>::SimpleType>::ret_type ret_typ typedef in struct:llvm::cast_retty
[all...]
/freebsd-11.0-release/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.0-release/contrib/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc420 #define INTERCEPTOR_STRTO_BODY(ret_type, func, ...) \
422 ret_type res = REAL(func)(__VA_ARGS__); \
426 #define INTERCEPTOR_STRTO(ret_type, func, char_type) \
427 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr) { \
428 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr); \
431 #define INTERCEPTOR_STRTO_BASE(ret_type, func, char_type) \
432 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
434 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base); \
437 #define INTERCEPTOR_STRTO_LOC(ret_type, func, char_type) \
438 INTERCEPTOR(ret_type, fun
[all...]
/freebsd-11.0-release/contrib/netbsd-tests/lib/libcurses/director/
H A Dtestlang_parse.y633 assign_rets(returns_enum_t ret_type, void *ret)
639 cur.return_type = ret_type;
640 if (ret_type != ret_var) {
641 if ((ret_type == ret_number) || (ret_type == ret_string)) {
649 } else if (ret_type == ret_byte) {
658 } else if (ret_type == ret_ref) {
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.cpp360 clang::QualType ret_type = ClangASTContext::GetQualType(type_realizer_sp->RealizeType(interface_decl->getASTContext(), m_type_vector[0].c_str(), for_expression)); local
362 if (ret_type.isNull())
369 ret_type,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp74 lldb::StateType ret_type = thread_sp->GetProcess()->GetPrivateState(); local
75 if (ret_type == eStateRunning)
79 else if (ret_type == eStateStopped)
/freebsd-11.0-release/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.0-release/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.0-release/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 350 milliseconds