Searched defs:return_type (Results 1 - 15 of 15) sorted by relevance

/external/bluetooth/bluedroid/stack/smp/
H A Daes.h60 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,
/external/libffi/src/sh64/
H A Dffi.c37 return_type (ffi_type *arg) function
71 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
166 greg = (return_type (cif->rtype) == FFI_TYPE_STRUCT ? 1 : 0);
218 cif->flags = return_type (cif->rtype);
262 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
289 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
361 if (return_type (cif->rtype) == FFI_TYPE_STRUCT)
451 return return_type (cif->rtype);
/external/libffi/src/sh/
H A Dffi.c57 return_type (ffi_type *arg) function
127 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
334 greg = ((return_type (cif->rtype) == FFI_TYPE_STRUCT) &&
390 cif->flags += (unsigned) (return_type (cif->rtype)) << 24;
424 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
447 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
470 insn = (return_type (cif->rtype) == FFI_TYPE_STRUCT
715 return return_type (cif->rtype);
/external/webkit/Source/WebCore/html/canvas/
H A DCheckedInt.h532 typedef CheckedInt<T> return_type; typedef in struct:WebCore::cast_to_CheckedInt_impl
539 typedef const CheckedInt<T>& return_type; typedef in struct:WebCore::cast_to_CheckedInt_impl
544 inline typename cast_to_CheckedInt_impl<T, U>::return_type
/external/chromium/chrome/browser/autofill/
H A Dautofill_profile.cc232 AutofillFieldType return_type = AutofillType::GetEquivalentFieldType(type); local
233 const FormGroup* form_group = FormGroupForType(return_type);
237 return form_group->GetInfo(return_type);
/external/mesa3d/src/glsl/
H A Dast_function.cpp63 * \param return_type Return type of the function. May be \c NULL.
72 prototype_string(const glsl_type *return_type, const char *name, argument
77 if (return_type != NULL)
78 str = hieralloc_asprintf(str, "%s ", return_type->name);
171 if (!sig->return_type->is_void()) {
175 var = new(ctx) ir_variable(sig->return_type,
212 str = prototype_string(sig->return_type, f->name, &sig->parameters);
H A Dast_to_hir.cpp2617 const glsl_type *return_type = local
2618 this->return_type->specifier->glsl_type(& return_type_name, state);
2620 if (!return_type) {
2625 return_type = glsl_type::error_type;
2631 if (this->return_type->has_qualifiers()) {
2653 if (sig->return_type != return_type) {
2682 if (! return_type->is_void()) {
2698 sig = new(ctx) ir_function_signature(return_type);
2756 if (!signature->return_type
[all...]
H A Dir.cpp1308 ir_function_signature::ir_function_signature(const glsl_type *return_type) argument
1309 : return_type(return_type), is_defined(false), _function(NULL)
1391 assert((this->type == NULL) || (this->type == sig->return_type));
H A Dir_reader.cpp261 const glsl_type *return_type = read_type(st, type_expr); local
262 if (return_type == NULL)
295 sig = new(ctx) ir_function_signature(return_type);
306 if (sig->return_type != return_type) {
H A Dast.h553 ast_fully_specified_type *return_type; member in class:ast_function
H A Dir.h379 ir_function_signature(const glsl_type *return_type);
434 const struct glsl_type *return_type; member in class:ir_function_signature
932 assert(callee->return_type != NULL);
933 type = callee->return_type;
/external/gcc-demangle/
H A Dcp-demangle.c2383 struct demangle_component *return_type; local
2398 return_type = cplus_demangle_type (di);
2399 if (return_type == NULL)
2403 return_type = NULL;
2410 return_type, tl);
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c2222 struct demangle_component *return_type; local
2236 return_type = NULL;
2251 return_type = type;
2278 return d_make_comp (di, DEMANGLE_COMPONENT_FUNCTION_TYPE, return_type, tl);
H A Dcplus-dem.c1452 string return_type; local
1455 success = do_type (work, mangled, &return_type);
1456 APPEND_BLANK (&return_type);
1458 string_prepends (declp, &return_type);
1459 string_delete (&return_type);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli461 (** [return_type fty] gets the return type of the function type [fty].
463 val return_type : lltype -> lltype var

Completed in 2127 milliseconds