HomeSort by relevance Sort by last modified time
    Searched defs:return_type (Results 1 - 25 of 31) sorted by null

1 2

  /system/bt/stack/smp/
aes.h 60 typedef uint_8t return_type; typedef
83 return_type aes_set_key( const unsigned char key[],
90 return_type aes_encrypt( const unsigned char in[N_BLOCK],
94 return_type aes_cbc_encrypt( const unsigned char *in,
103 return_type aes_decrypt( const unsigned char in[N_BLOCK],
107 return_type aes_cbc_decrypt( const unsigned char *in,
  /art/compiler/dex/quick/
dex_file_method_inliner.h 286 * The return_type and params are used with the IndexCache to look up
290 ClassCacheIndex return_type; member in struct:art::DexFileMethodInliner::ProtoDef
dex_file_method_inliner.cc 755 uint16_t return_type = static_cast<uint16_t>(return_index); local
    [all...]
  /art/runtime/interpreter/
interpreter_switch_impl.cc 223 Class* return_type = shadow_frame.GetMethod()->GetReturnType(); local
226 if (return_type == nullptr) {
230 if (!obj_result->VerifierInstanceOf(return_type)) {
236 return_type->GetDescriptor(&temp2));
    [all...]
interpreter_goto_table_impl.cc 319 Class* return_type = shadow_frame.GetMethod()->GetReturnType(); local
321 if (return_type == nullptr) {
325 if (!obj_result->VerifierInstanceOf(return_type)) {
331 return_type->GetDescriptor(&temp2));
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils.cc 217 mirror::Class* return_type = self->GetCurrentMethod(nullptr)->GetReturnType(); local
219 if (!o->InstanceOf(return_type)) {
  /external/lldb/examples/functions/
main.cpp 267 SBType return_type = function_type.GetFunctionReturnType(); local
270 return_type = return_type.GetCanonicalType();
276 printf ("%s %s\n", return_type.GetName(), func_demangled_name);
289 printf("%c(%s)[%s\n", func_demangled_name[0], return_type.GetName(), class_name_start);
295 printf ("%c(%s)[%*.*s", func_demangled_name[0], return_type.GetName(), class_name_len, class_name_len, class_name_start);
323 printf ("%s ", return_type.GetName());
  /art/compiler/utils/
test_dex_file_builder.h 67 AddType(proto_key.return_type);
185 Write16(raw_offset + 4u, GetTypeIdx(entry.first.return_type));
276 std::string return_type; member in struct:art::TestDexFileBuilder::ProtoKey
281 if (lhs.return_type != rhs.return_type) {
282 return lhs.return_type < rhs.return_type;
316 const char* return_type = args_end + 1; local
319 std::string() + ((*return_type == '[') ? 'L' : *return_type),
    [all...]
  /art/compiler/dex/
type_inference.cc 634 Type return_type = Type::DexType(dex_file, proto_id.return_type_idx_); local
647 return MethodSignature{ return_type, size, param_types }; // NOLINT
756 Type return_type = signatures_[mir->meta.method_lowering_info].return_type; local
837 Type return_type = signature->return_type; local
    [all...]
type_inference.h 354 Type return_type; member in struct:art::TypeInference::MethodSignature
  /external/lldb/source/Interpreter/
CommandObject.cpp 679 CommandArgumentType return_type = eArgTypeLastArg; local
690 return_type = g_arguments_data[i].arg_type;
692 return return_type;
    [all...]
  /art/runtime/
utils.cc 341 const char* return_type = strchr(signature, ')'); local
342 CHECK(return_type != nullptr);
343 ++return_type; // Skip ')'.
344 return PrettyDescriptor(return_type);
    [all...]
class_linker.cc 3804 std::string return_type = PrettyType(return_type_idx, *dex_file); local
    [all...]
  /external/mesa3d/src/glsl/
ast_to_hir.cpp 3192 const glsl_type *return_type = local
    [all...]
ir_reader.cpp 226 const glsl_type *return_type = read_type(type_expr); local
227 if (return_type == NULL)
252 sig = new(mem_ctx) ir_function_signature(return_type);
263 if (sig->return_type != return_type) {
659 if (callee->return_type == glsl_type::void_type && return_deref) {
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) {
ast.h 593 ast_fully_specified_type *return_type; member in class:ast_function
ir.h 528 ir_function_signature(const glsl_type *return_type);
590 const struct glsl_type *return_type; member in class:ir_function_signature
1135 assert(callee->return_type != NULL);
    [all...]
  /art/compiler/optimizing/
builder.cc 607 Primitive::Type return_type = Primitive::GetType(descriptor[0]); local
643 return_type = Primitive::kPrimNot;
654 arena_, number_of_arguments, return_type, dex_pc, method_idx, table_index);
657 arena_, number_of_arguments, return_type, dex_pc, method_idx, table_index);
736 arena_, number_of_arguments, return_type, dex_pc, target_method.dex_method_index,
    [all...]
code_generator_arm64.cc 84 Location ARM64ReturnLocation(Primitive::Type return_type) {
85 DCHECK_NE(return_type, Primitive::kPrimVoid);
89 if (return_type == Primitive::kPrimFloat) {
91 } else if (return_type == Primitive::kPrimDouble) {
93 } else if (return_type == Primitive::kPrimLong) {
100 Location InvokeRuntimeCallingConvention::GetReturnLocation(Primitive::Type return_type) {
101 return ARM64ReturnLocation(return_type);
1930 Primitive::Type return_type = invoke->GetType(); local
2516 Primitive::Type return_type = instruction->InputAt(0)->GetType(); local
    [all...]
code_generator_mips64.cc 45 Location Mips64ReturnLocation(Primitive::Type return_type) {
46 switch (return_type) {
2310 Primitive::Type return_type = invoke->GetType(); local
2921 Primitive::Type return_type = ret->InputAt(0)->GetType(); local
    [all...]
  /external/lldb/source/Target/
Thread.cpp 1693 ClangASTType return_type = sc.function->GetClangType().GetFunctionReturnType(); local
    [all...]
  /external/valgrind/coregrind/m_demangle/
cplus-dem.c 1596 string return_type; local
    [all...]
cp-demangle.c 2771 struct demangle_component *return_type; local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 1749 const RegType& return_type = GetMethodReturnType(); local
1774 const RegType& return_type = GetMethodReturnType(); local
1789 const RegType& return_type = GetMethodReturnType(); local
1815 << reg_type << " vs " << return_type; local
1821 << "', but expected from declaration '" << return_type << "'"; local
2405 const RegType* return_type = nullptr; local
2442 const RegType* return_type = nullptr; local
2532 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false); local
2589 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false); local
2886 const RegType& return_type = reg_types_.FromDescriptor(GetClassLoader(), descriptor, false); local
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 566 (** [return_type fty] gets the return type of the function type [fty].
568 val return_type : lltype -> lltype var
    [all...]

Completed in 816 milliseconds

1 2