Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for cmpsym (0.16 sec)

  1. src/cmd/go/internal/work/action.go

    	TimeDone   time.Time `json:",omitempty"`
    
    	Cmd     []string      // `json:",omitempty"`
    	CmdReal time.Duration `json:",omitempty"`
    	CmdUser time.Duration `json:",omitempty"`
    	CmdSys  time.Duration `json:",omitempty"`
    }
    
    // cacheKey is the key for the action cache.
    type cacheKey struct {
    	mode string
    	p    *load.Package
    }
    
    func actionGraphJSON(a *Action) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    			dup := ldr.Lookup(newName, ldr.SymVersion(s))
    			if dup != 0 {
    				st := ldr.SymType(s)
    				dt := ldr.SymType(dup)
    				if st == sym.Sxxx && dt != sym.Sxxx {
    					ldr.CopySym(dup, s)
    				}
    			}
    		}
    	}
    }
    
    // typeSymbolMangle mangles the given symbol name into something shorter.
    //
    // Keep the type:. prefix, which parts of the linker (like the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    // the original symbol name whereas the shared library provides a symbol with
    // the mangled name. When we do mangling, we copy payload of mangled to original.
    func (l *Loader) CopySym(src, dst Sym) {
    	if !l.IsExternal(dst) {
    		panic("dst is not external") //l.newExtSym(l.SymName(dst), l.SymVersion(dst))
    	}
    	if !l.IsExternal(src) {
    		panic("src is not external") //l.cloneToExternal(src)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top