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

1 2

  /external/bluetooth/bluedroid/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,
aes.c 498 return_type aes_set_key( const unsigned char key[], length_type keylen, aes_context ctx[1] )
518 return (return_type)-1;
561 return_type aes_encrypt( const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK], const aes_context ctx[1] )
584 return (return_type)-1;
590 return_type aes_cbc_encrypt( const unsigned char *in, unsigned char *out,
612 return_type aes_decrypt( const unsigned char in[N_BLOCK], unsigned char out[N_BLOCK], const aes_context ctx[1] )
635 return (return_type)-1;
641 return_type aes_cbc_decrypt( const unsigned char *in, unsigned char *out,
  /external/chromium/testing/gmock/scripts/generator/cpp/
gmock_class.py 65 return_type = 'void'
66 if node.return_type:
69 if node.return_type.modifiers:
70 modifiers = ' '.join(node.return_type.modifiers) + ' '
71 return_type = modifiers + node.return_type.name
72 template_args = [arg.name for arg in node.return_type.templated_types]
74 return_type += '<' + ', '.join(template_args) + '>'
81 if node.return_type.pointer:
82 return_type += '*
    [all...]
ast.py 360 def __init__(self, start, end, name, return_type, parameters,
364 self.return_type = converter.CreateReturnType(return_type)
377 if self.return_type and 'static' in self.return_type.modifiers:
393 (self.return_type, self.name, self.parameters,
399 def __init__(self, start, end, name, in_class, return_type, parameters,
401 Function.__init__(self, start, end, name, return_type, parameters,
    [all...]
  /external/libffi/src/sh64/
ffi.c 37 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);
  /bionic/libc/tools/
bionic_utils.py 201 return_type = line[:pos_lparen].strip().split()
202 if len(return_type) < 2:
206 syscall_func = return_type[-1]
207 return_type = string.join(return_type[:-1],' ')
289 "decl" : "%-15s %s (%s);" % (return_type, syscall_func, params) }
  /external/libffi/src/sh/
ffi.c 57 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);
  /bionic/libc/kernel/tools/
utils.py 124 return_type = line[:pos_lparen].strip().split()
125 if len(return_type) < 2:
129 syscall_func = return_type[-1]
130 return_type = string.join(return_type[:-1],' ')
171 "decl" : "%-15s %s (%s);" % (return_type, syscall_func, params) }
  /external/mesa3d/src/glsl/
ir_if_return.cpp 173 if (ir->return_type->is_void()) {
195 ir_variable *undef = new(ir) ir_variable(ir->return_type,
lower_jumps.cpp 174 assert(!this->signature->return_type->is_void());
175 return_value = new(this->signature) ir_variable(this->signature->return_type, "return_value", ir_var_temporary);
337 else if(jump_strengths[0] == strength_return && this->function.signature->return_type->is_void())
374 if(!this->function.signature->return_type->is_void()) {
ir.h 379 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;
    [all...]
link_functions.cpp 112 linked_sig = new(linked) ir_function_signature(callee->return_type);
opt_function_inlining.cpp 129 if (this->callee->return_type) {
130 retval = new(ctx) ir_variable(this->callee->return_type, "_ret_val",
ast_function.cpp 63 * \param return_type Return type of the function. May be \c NULL.
72 prototype_string(const glsl_type *return_type, const char *name,
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);
    [all...]
ast_to_hir.cpp 2617 const glsl_type *return_type = local
    [all...]
ir.cpp     [all...]
ir_reader.cpp 261 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) {
    [all...]
ast.h 553 ast_fully_specified_type *return_type; member in class:ast_function
ir_print_visitor.cpp 116 print_type(ir->return_type);
ir_clone.cpp 299 new(mem_ctx) ir_function_signature(this->return_type);
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-actions.h     [all...]
  /external/webkit/Source/WebCore/html/canvas/
CheckedInt.h 532 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/testing/gmock/scripts/
gmock_doctor.py 195 r'of type \'Result\' \(aka \'(?P<return_type>).*\'\) '
199 r'of type \'(?P<return_type>).*\' '
203 %(return_type)s. Please tell it *what* to return. Perhaps you can use
208 [(gcc_regex, diagnosis % {'return_type': '*something*'}),
226 r'\'testing::internal::ReturnAction<(?P<return_type>.*)>'
234 r'::operator Action<(?P<return_type>.*) \(.*\)>\' '
237 You are using an action that returns %(return_type)s, but it needs to return
245 [(gcc_regex, diagnosis % {'return_type': '*something*'}),
  /external/v8/src/arm/
constants-arm.h 520 #define DECLARE_STATIC_TYPED_ACCESSOR(return_type, Name) \
521 static inline return_type Name(Instr instr) { \
  /external/chromium/chrome/browser/autofill/
autofill_profile.cc 232 AutofillFieldType return_type = AutofillType::GetEquivalentFieldType(type); local
233 const FormGroup* form_group = FormGroupForType(return_type);
237 return form_group->GetInfo(return_type);

Completed in 3451 milliseconds

1 2