Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetOnList (0.15 sec)

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

    func (sb *SymbolBuilder) SetSize(size int64)         { sb.size = size }
    func (sb *SymbolBuilder) SetData(data []byte)        { sb.data = data }
    func (sb *SymbolBuilder) SetOnList(v bool)           { sb.l.SetAttrOnList(sb.symIdx, v) }
    func (sb *SymbolBuilder) SetExternal(v bool)         { sb.l.SetAttrExternal(sb.symIdx, v) }
    func (sb *SymbolBuilder) SetValue(v int64)           { sb.l.SetSymValue(sb.symIdx, v) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadmacho/ldmacho.go

    				}
    			}
    		}
    
    		if bld.Type() == sym.STEXT {
    			if bld.OnList() {
    				return errorf("symbol %s listed multiple times", bld.Name())
    			}
    			bld.SetOnList(true)
    			textp = append(textp, s)
    			for s1 := bld.Sub(); s1 != 0; s1 = l.SubSym(s1) {
    				if l.AttrOnList(s1) {
    					return errorf("symbol %s listed multiple times", l.SymName(s1))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    				// Assign its address directly in order to be the
    				// first symbol of this new section.
    				ntext.SetType(sym.STEXT)
    				ntext.SetSize(int64(abi.MINFUNC))
    				ntext.SetOnList(true)
    				ntext.SetAlign(sectAlign)
    				ctxt.tramps = append(ctxt.tramps, ntext.Sym())
    
    				ntext.SetValue(int64(va))
    				va += uint64(ntext.Size())
    
    				if align := ldr.SymAlign(s); align != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top