Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for function_type (0.27 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        Type branch_args_type[] = {input_handle.getType(), input_shape.getType(),
                                   size_diff.getType(), size.getType()};
        Type branch_result_type[] = {result_type};
        auto func_type = FunctionType::get(rewriter.getContext(), branch_args_type,
                                           branch_result_type);
    
        // Create functions in a higher scope before restoring the insertion point.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	if len(ret) == 1 {
    		if bt, ok := ret[0].(*BuiltinType); ok && bt.Name == "void" {
    			ret = nil
    		}
    	}
    
    	return ret
    }
    
    // functionType parses:
    //
    //	<function-type> ::= F [Y] <bare-function-type> [<ref-qualifier>] E
    func (st *state) functionType() AST {
    	st.checkChar('F')
    	if len(st.str) > 0 && st.str[0] == 'Y' {
    		// Function has C linkage.  We don't print this.
    		st.advance(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    // instead of reporting an error.
    //
    //	Type     = TypeName | TypeLit | "(" Type ")" .
    //	TypeName = identifier | QualifiedIdent .
    //	TypeLit  = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
    //		      SliceType | MapType | Channel_Type .
    func (p *parser) typeOrNil() Expr {
    	if trace {
    		defer p.trace("typeOrNil")()
    	}
    
    	pos := p.pos()
    	switch p.tok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top