Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for resolveDfs (0.57 sec)

  1. src/cmd/link/internal/loader/loader.go

    	if reqLen > curLen {
    		b = append(b, MakeBitmap(reqLen+1-curLen)...)
    	}
    	return b
    }
    
    type symAndSize struct {
    	sym  Sym
    	size uint32
    }
    
    // A Loader loads new object files and resolves indexed symbol references.
    //
    // Notes on the layout of global symbol index space:
    //
    //   - Go object files are read before host object files; each Go object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    			t.Fatal(err)
    		}
    	}
    
    	makePkg("lib", mustParse(fset, "package lib; var X int"))
    	// Each /*name=kind:line*/ comment makes the test look up the
    	// name at that point and checks that it resolves to a decl of
    	// the specified kind and line number.  "undef" means undefined.
    	mainSrc := `
    /*lib=pkgname:5*/ /*X=var:1*/ /*Pi=const:8*/ /*T=typename:9*/ /*Y=var:10*/ /*F=func:12*/
    package main
    
    import "lib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    func (tr *TypeRepr) Set(repr string, fargs ...interface{}) {
    	tr.Repr = repr
    	tr.FormatArgs = fargs
    }
    
    // FinishType completes any outstanding type mapping work.
    // In particular, it resolves incomplete pointer types.
    func (c *typeConv) FinishType(pos token.Pos) {
    	// Completing one pointer type might produce more to complete.
    	// Keep looping until they're all done.
    	for len(c.ptrKeys) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top