Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 700 for _func (0.05 sec)

  1. src/runtime/symtab.go

    }
    
    func (f *Func) raw() *_func {
    	return (*_func)(unsafe.Pointer(f))
    }
    
    func (f *Func) funcInfo() funcInfo {
    	return f.raw().funcInfo()
    }
    
    func (f *_func) funcInfo() funcInfo {
    	// Find the module containing fn. fn is located in the pclntable.
    	// The unsafe.Pointer to uintptr conversions and arithmetic
    	// are safe because we are working with module addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_space_to_depth_pass.mlir

        func.return
      }
      // CHECK-LABEL: func @while_body_2710
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 37.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/printer.go

    func groupFor(d Decl) (token, *Group) {
    	switch d := d.(type) {
    	case *ImportDecl:
    		return _Import, d.Group
    	case *ConstDecl:
    		return _Const, d.Group
    	case *TypeDecl:
    		return _Type, d.Group
    	case *VarDecl:
    		return _Var, d.Group
    	case *FuncDecl:
    		return _Func, nil
    	default:
    		panic("unreachable")
    	}
    }
    
    type printGroup struct {
    	node
    	Tok   token
    	Decls []Decl
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. src/debug/gosym/pclntab.go

    // A functab struct is a PC and a func offset.
    type funcTab struct {
    	*LineTable
    	sz int // cached result of t.functabFieldSize
    }
    
    // Count returns the number of func entries in f.
    func (f funcTab) Count() int {
    	return int(f.nfunctab)
    }
    
    // pc returns the PC of the i'th func in f.
    func (f funcTab) pc(i int) uint64 {
    	u := f.uint(f.functab[2*i*f.sz:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_sharding_identification.mlir

    // CHECK-LABEL: func @check_sharding_attrs_exists_for_empty_cluster_func
    func.func @check_sharding_attrs_exists_for_empty_cluster_func() {
      "tf_device.cluster_func"() {func = @empty_func, step_marker_location = "", num_cores_per_replica = 1 : i64} : () -> ()
      // CHECK: input_sharding_configuration = []
      // CHECK: output_sharding_configuration = []
      func.return
    }
    
    // CHECK-LABEL: func @empty_func() {
    func.func @empty_func() {
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 19:07:52 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. src/runtime/runtime2.go

    	//
    	// funcdata [nfuncdata]uint32
    }
    
    // Pseudo-Func that is returned for PCs that occur in inlined code.
    // A *Func can be either a *_func or a *funcinl, and they are distinguished
    // by the first uintptr.
    //
    // TODO(austin): Can we merge this with inlinedCall?
    type funcinl struct {
    	ones      uint32  // set to ^0 to distinguish from _func
    	entry     uintptr // entry of the real (the "outermost") frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            'a( a b c )'                                       | 'a'     | [tokens('a b c')]
            'a( a b, c d + f )'                                | 'a'     | [tokens('a b'), tokens('c d + f')]
            '_func(1+2)'                                       | '_func' | [tokens('1+2')]
            'a(A, B(1+2))'                                     | 'a'     | [token('A'), expression('B(1+2)')]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/wasm/ssa.go

    		p = pp.Append(p, wasm.AI64Store, 0, 0, 0, obj.TYPE_CONST, 0, off+i)
    	}
    
    	return p
    }
    
    func ginsnop(pp *objw.Progs) *obj.Prog {
    	return pp.Prog(wasm.ANop)
    }
    
    func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {
    }
    
    func ssaGenBlock(s *ssagen.State, b, next *ssa.Block) {
    	switch b.Kind {
    	case ssa.BlockPlain:
    		if next != b.Succs[0].Block() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  9. src/sort/gen_sort_variants.go

    			Funcs: template.FuncMap{
    				"Less": func(name, i, j string) string {
    					return fmt.Sprintf("%s.Less(%s, %s)", name, i, j)
    				},
    				"Swap": func(name, i, j string) string {
    					return fmt.Sprintf("%s.Swap(%s, %s)", name, i, j)
    				},
    			},
    		},
    		Variant{
    			Name:       "func",
    			Path:       "zsortfunc.go",
    			Package:    "sort",
    			Imports:    "",
    			FuncSuffix: "_func",
    			TypeParam:  "",
    			ExtraParam: "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Const, "const", 0, 0},
    	{_Continue, "continue", 0, 0},
    	{_Default, "default", 0, 0},
    	{_Defer, "defer", 0, 0},
    	{_Else, "else", 0, 0},
    	{_Fallthrough, "fallthrough", 0, 0},
    	{_For, "for", 0, 0},
    	{_Func, "func", 0, 0},
    	{_Go, "go", 0, 0},
    	{_Goto, "goto", 0, 0},
    	{_If, "if", 0, 0},
    	{_Import, "import", 0, 0},
    	{_Interface, "interface", 0, 0},
    	{_Map, "map", 0, 0},
    	{_Package, "package", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
Back to top