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

/external/v8/src/asmjs/
H A Dasm-types.cc166 bool CanBeInvokedWith(AsmType* return_type,
178 bool AsmFroundType::CanBeInvokedWith(AsmType* return_type, argument
201 bool CanBeInvokedWith(AsmType* return_type,
203 if (!return_type_->IsExactly(return_type)) {
237 bool AsmFFIType::CanBeInvokedWith(AsmType* return_type, argument
239 if (return_type->IsExactly(AsmType::Float())) {
274 bool AsmFunctionType::CanBeInvokedWith(AsmType* return_type, argument
276 if (!return_type_->IsExactly(return_type)) {
307 AsmType* return_type, const ZoneVector<AsmType*>& args) {
309 if (overloads_[ii]->AsCallableType()->CanBeInvokedWith(return_type, arg
306 CanBeInvokedWith( AsmType* return_type, const ZoneVector<AsmType*>& args) argument
347 CanBeInvokedWith(AsmType* return_type, const ZoneVector<AsmType*>& args) argument
[all...]
H A Dasm-types.h110 virtual bool CanBeInvokedWith(AsmType* return_type,
137 bool CanBeInvokedWith(AsmType* return_type,
141 AsmFunctionType(Zone* zone, AsmType* return_type) argument
142 : return_type_(return_type), args_(zone) {}
171 bool CanBeInvokedWith(AsmType* return_type,
184 bool CanBeInvokedWith(AsmType* return_type,
201 bool CanBeInvokedWith(AsmType* return_type,
H A Dasm-wasm-builder.cc668 LocalType return_type = TypeFrom(func_type->ReturnType()); local
669 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1,
671 if (return_type != kAstStmt) {
672 sig.AddReturn(return_type);
1316 LocalType return_type = TypeOf(expr); local
1318 FunctionSig::Builder sig(zone(), return_type == kAstStmt ? 0 : 1,
1320 if (return_type != kAstStmt) {
1321 sig.AddReturn(return_type);
1773 LocalType return_type = TypeFrom(func_type->ReturnType()); local
1775 FunctionSig::Builder b(zone(), return_type
[all...]
H A Dasm-typer.cc1731 AsmType* return_type; local
1732 RECURSE(return_type = ValidateFloatCoercion(call));
1733 if (return_type == nullptr) {
1736 return return_type;
1741 AsmType* return_type; local
1742 RECURSE(return_type = ValidateHeapAccess(prop, LoadFromHeap));
1743 return return_type;
2288 AsmType* AsmTyper::ValidateCall(AsmType* return_type, Call* call) { argument
2293 return return_type;
2316 auto* call_type = AsmType::Function(zone_, return_type)
[all...]
/external/v8/src/compiler/
H A Dlinkage.cc344 Operator::Properties properties, MachineType return_type,
357 locations.AddReturn(regloc(kReturnRegister0, return_type));
360 locations.AddReturn(regloc(kReturnRegister1, return_type));
363 locations.AddReturn(regloc(kReturnRegister2, return_type));
341 GetStubCallDescriptor( Isolate* isolate, Zone* zone, const CallInterfaceDescriptor& descriptor, int stack_parameter_count, CallDescriptor::Flags flags, Operator::Properties properties, MachineType return_type, size_t return_count) argument
H A Dcode-assembler.cc976 Node* CodeAssembler::CallCFunction2(MachineType return_type, argument
980 return raw_assembler_->CallCFunction2(return_type, arg0_type, arg1_type,
H A Draw-machine-assembler.cc467 Node* RawMachineAssembler::CallCFunction0(MachineType return_type, argument
470 builder.AddReturn(return_type);
478 Node* RawMachineAssembler::CallCFunction1(MachineType return_type, argument
482 builder.AddReturn(return_type);
491 Node* RawMachineAssembler::CallCFunction2(MachineType return_type, argument
496 builder.AddReturn(return_type);
507 MachineType return_type, MachineType arg0_type, MachineType arg1_type,
513 builder.AddReturn(return_type);
506 CallCFunction8( MachineType return_type, MachineType arg0_type, MachineType arg1_type, MachineType arg2_type, MachineType arg3_type, MachineType arg4_type, MachineType arg5_type, MachineType arg6_type, MachineType arg7_type, Node* function, Node* arg0, Node* arg1, Node* arg2, Node* arg3, Node* arg4, Node* arg5, Node* arg6, Node* arg7) argument
/external/mesa3d/src/glsl/
H A Dast_function.cpp63 * \param return_type Return type of the function. May be \c NULL.
74 prototype_string(const glsl_type *return_type, const char *name, argument
79 if (return_type != NULL)
80 str = ralloc_asprintf(NULL, "%s ", return_type->name);
288 if (!sig->return_type->is_void()) {
292 var = new(ctx) ir_variable(sig->return_type,
416 str = prototype_string(sig->return_type, f->name, &sig->parameters);
H A Dir.cpp1539 ir_function_signature::ir_function_signature(const glsl_type *return_type) argument
1540 : return_type(return_type), is_defined(false), _function(NULL)
H A Dir_reader.cpp226 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) {
H A Dast.h593 ast_fully_specified_type *return_type; member in class:ast_function
H A Dast_to_hir.cpp3192 const glsl_type *return_type = local
3193 this->return_type->specifier->glsl_type(& return_type_name, state);
3195 if (!return_type) {
3200 return_type = glsl_type::error_type;
3206 if (this->return_type->has_qualifiers()) {
3217 if (return_type->contains_sampler()) {
3240 if (sig->return_type != return_type) {
3269 if (! return_type->is_void()) {
3285 sig = new(ctx) ir_function_signature(return_type);
[all...]
H A Dir.h528 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);
1886 prototype_string(const glsl_type *return_type, const char *name,
/external/flatbuffers/include/flatbuffers/
H A Dflatbuffers.h226 typedef T return_type; typedef in struct:flatbuffers::IndirectHelper
229 static return_type Read(const uint8_t *p, uoffset_t i) {
234 typedef const T *return_type; typedef in struct:flatbuffers::IndirectHelper
237 static return_type Read(const uint8_t *p, uoffset_t i) {
239 return reinterpret_cast<return_type>(p + ReadScalar<uoffset_t>(p));
243 typedef const T *return_type; typedef in struct:flatbuffers::IndirectHelper
246 static return_type Read(const uint8_t *p, uoffset_t i) {
347 typedef VectorIterator<T, typename IndirectHelper<T>::return_type>
355 typedef typename IndirectHelper<T>::return_type return_type; typedef in class:flatbuffers::Vector
[all...]
/external/valgrind/coregrind/m_demangle/
H A Dcplus-dem.c1596 string return_type; local
1599 success = do_type (work, mangled, &return_type);
1600 APPEND_BLANK (&return_type);
1602 string_prepends (declp, &return_type);
1603 string_delete (&return_type);
H A Dcp-demangle.c2771 struct demangle_component *return_type; local
2786 return_type = cplus_demangle_type (di);
2787 if (return_type == NULL)
2791 return_type = NULL;
2798 return_type, tl);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.mli592 (** [return_type fty] gets the return type of the function type [fty].
594 val return_type : lltype -> lltype var
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.mli460 (** [return_type fty] gets the return type of the function type [fty].
462 val return_type : lltype -> lltype var
/external/protobuf/php/ext/google/protobuf/
H A Dupb.c2164 const void *return_type = upb_handlerattr_returnclosuretype(&set_attr); local
2167 if (return_type && table_return_type && return_type != table_return_type) {
2172 if (table_return_type && !return_type)
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c2311 const void *return_type = upb_handlerattr_returnclosuretype(&set_attr); local
2314 if (return_type && table_return_type && return_type != table_return_type) {
2319 if (table_return_type && !return_type)
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 555 milliseconds