/external/compiler-rt/lib/interception/ |
D | interception.h | 122 # define DECLARE_WRAPPER(ret_type, func, ...) argument 128 # define DECLARE_WRAPPER(ret_type, func, ...) \ argument 129 extern "C" ret_type func(__VA_ARGS__); 130 # define DECLARE_WRAPPER_WINAPI(ret_type, func, ...) \ argument 131 extern "C" __declspec(dllimport) ret_type __stdcall func(__VA_ARGS__); 139 # define DECLARE_WRAPPER(ret_type, func, ...) \ argument 140 extern "C" ret_type func(__VA_ARGS__) \ 146 # define DECLARE_WRAPPER(ret_type, func, ...) \ argument 147 extern "C" ret_type func(__VA_ARGS__) \ 156 # define DECLARE_REAL(ret_type, func, ...) \ argument [all …]
|
/external/llvm/include/llvm/Support/ |
D | Casting.h | 147 typedef To& ret_type; // Normal case, return Ty& 150 typedef const To &ret_type; // Normal case, return Ty& 154 typedef To* ret_type; // Pointer arg case, return Ty* 158 typedef const To* ret_type; // Constant pointer arg case, return const Ty* 162 typedef const To* ret_type; // Constant pointer arg case, return const Ty* 171 typedef typename cast_retty<To, SimpleFrom>::ret_type ret_type; 177 typedef typename cast_retty_impl<To,FromTy>::ret_type ret_type; 183 typename simplify_type<From>::SimpleType>::ret_type ret_type; 191 static typename cast_retty<To, From>::ret_type doit(From &Val) { 200 static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) { [all …]
|
/external/clang/utils/VtableTest/ |
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() 161 || !base_present[ret_type][ret_types[s][fn]]) in gs() 165 ret_type = ret_types[s][fn]; in gs() 167 ret_type = s; in gs() 170 ret_types[s][fn] = ret_type; in gs() 172 if (ret_type) { in gs() 173 g(" virtual s"); g(ret_type); g("* fun"); in gs() 177 if (ret_type) in gs() [all …]
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_intr.c | 58 LLVMTypeRef ret_type, in lp_declare_intrinsic() argument 67 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0); in lp_declare_intrinsic() 82 LLVMTypeRef ret_type, in lp_build_intrinsic() argument 101 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args); in lp_build_intrinsic() 111 LLVMTypeRef ret_type, in lp_build_intrinsic_unary() argument 114 return lp_build_intrinsic(builder, name, ret_type, &a, 1); in lp_build_intrinsic_unary() 121 LLVMTypeRef ret_type, in lp_build_intrinsic_binary() argument 130 return lp_build_intrinsic(builder, name, ret_type, args, 2); in lp_build_intrinsic_binary() 226 LLVMTypeRef ret_type, in lp_build_intrinsic_map() argument 231 LLVMTypeRef ret_elem_type = LLVMGetElementType(ret_type); in lp_build_intrinsic_map() [all …]
|
D | lp_bld_intr.h | 53 LLVMTypeRef ret_type, 60 LLVMTypeRef ret_type, 68 LLVMTypeRef ret_type, 75 LLVMTypeRef ret_type, 92 LLVMTypeRef ret_type, 100 LLVMTypeRef ret_type, 107 LLVMTypeRef ret_type,
|
D | lp_bld_assert.c | 67 LLVMTypeRef ret_type; in lp_build_assert() local 74 ret_type = LLVMVoidTypeInContext(context); in lp_build_assert() 80 ret_type, arg_types, Elements(arg_types), in lp_build_assert()
|
D | lp_bld_format_aos.c | 543 LLVMTypeRef ret_type; in lp_build_fetch_rgba_aos() local 547 ret_type = LLVMVoidTypeInContext(gallivm->context); in lp_build_fetch_rgba_aos() 552 function_type = LLVMFunctionType(ret_type, arg_types, in lp_build_fetch_rgba_aos() 648 LLVMTypeRef ret_type; in lp_build_fetch_rgba_aos() local 651 ret_type = LLVMVoidTypeInContext(gallivm->context); in lp_build_fetch_rgba_aos() 659 ret_type, in lp_build_fetch_rgba_aos()
|
D | lp_bld_const.c | 464 LLVMTypeRef ret_type, in lp_build_const_func_pointer() argument 472 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0); in lp_build_const_func_pointer()
|
D | lp_bld_const.h | 160 LLVMTypeRef ret_type,
|
D | lp_bld_arit.c | 1382 LLVMTypeRef ret_type = lp_build_int_vec_type(bld->gallivm, type); in lp_build_iround_nearest_sse2() local 1409 ret_type, arg); in lp_build_iround_nearest_sse2() 1422 ret_type, a); in lp_build_iround_nearest_sse2()
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | radeonsi_shader.c | 153 LLVMTypeRef ret_type; in use_sgpr() local 161 ret_type = LLVMFloatTypeInContext(gallivm->context); in use_sgpr() 162 ret_type = LLVMPointerType(ret_type, CONST_ADDR_SPACE); in use_sgpr() 166 ret_type = LLVMInt32TypeInContext(gallivm->context); in use_sgpr() 171 ret_type= LLVMInt64TypeInContext(gallivm->context); in use_sgpr() 176 ret_type = LLVMInt32TypeInContext(gallivm->context); in use_sgpr() 177 ret_type = LLVMVectorType(ret_type, 4); in use_sgpr() 178 ret_type = LLVMPointerType(ret_type, CONST_ADDR_SPACE); in use_sgpr() 183 ret_type = LLVMInt32TypeInContext(gallivm->context); in use_sgpr() 184 ret_type = LLVMVectorType(ret_type, 8); in use_sgpr() [all …]
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 414 #define INTERCEPTOR_STRTO_BODY(ret_type, func, ...) \ argument 416 ret_type res = REAL(func)(__VA_ARGS__); \ 420 #define INTERCEPTOR_STRTO(ret_type, func, char_type) \ argument 421 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr) { \ 422 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr); \ 425 #define INTERCEPTOR_STRTO_BASE(ret_type, func, char_type) \ argument 426 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \ 428 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base); \ 431 #define INTERCEPTOR_STRTO_LOC(ret_type, func, char_type) \ argument 432 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \ [all …]
|
/external/e2fsprogs/lib/blkid/ |
D | blkid.h | 98 extern int blkid_parse_tag_string(const char *token, char **ret_type,
|
D | tag.c | 224 int blkid_parse_tag_string(const char *token, char **ret_type, char **ret_val) in blkid_parse_tag_string() argument 248 *ret_type = name; in blkid_parse_tag_string()
|
D | blkid.h.in | 98 extern int blkid_parse_tag_string(const char *token, char **ret_type,
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | radeon_llvm.h | 163 LLVMTypeRef ret_type,
|
D | radeon_setup_tgsi_llvm.c | 954 LLVMTypeRef ret_type, in build_intrinsic() argument 974 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args); in build_intrinsic()
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCTypeVendor.cpp | 367 clang::QualType ret_type = BuildType(ast_ctx, m_type_vector[0].c_str()); in BuildMethod() local 369 if (ret_type.isNull()) in BuildMethod() 376 ret_type, in BuildMethod()
|
/external/lldb/source/Target/ |
D | StopInfo.cpp | 74 lldb::StateType ret_type = thread_sp->GetProcess()->GetPrivateState(); in HasTargetRunSinceMe() local 75 if (ret_type == eStateRunning) in HasTargetRunSinceMe() 79 else if (ret_type == eStateStopped) in HasTargetRunSinceMe()
|
/external/mesa3d/src/glsl/tests/lower_jumps/ |
D | create_test_cases.py | 33 def make_test_case(f_name, ret_type, body): argument 65 [['function', f_name, ['signature', ret_type, ['parameters'], body]]]
|
/external/linux-tools-perf/src/tools/lib/traceevent/ |
D | event-parse.h | 571 enum pevent_func_arg_type ret_type,
|
D | event-parse.c | 86 enum pevent_func_arg_type ret_type; member 5361 enum pevent_func_arg_type ret_type, in pevent_register_print_function() argument 5388 func_handle->ret_type = ret_type; in pevent_register_print_function()
|
/external/mesa3d/src/glsl/ |
D | ast_to_hir.cpp | 3378 const glsl_type *const ret_type = in hir() local 3382 if (state->current_function->return_type != ret_type) { in hir() 3388 ret_type->name, in hir()
|
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | bcel.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |