Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for GetSize (0.24 sec)

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

    func (sb *SymbolBuilder) Sect() *sym.Section     { return sb.l.SymSect(sb.symIdx) }
    
    // Setters for symbol properties.
    
    func (sb *SymbolBuilder) SetType(kind sym.SymKind)   { sb.kind = kind }
    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) }
    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/arm64/asm.go

    	}
    }
    
    // generate a trampoline to target+offset.
    func gentramp(ctxt *ld.Link, ldr *loader.Loader, tramp *loader.SymbolBuilder, target loader.Sym, offset int64) {
    	tramp.SetSize(12) // 3 instructions
    	P := make([]byte, tramp.Size())
    	o1 := uint32(0x90000010) // adrp x16, target
    	o2 := uint32(0x91000210) // add x16, pc-relative-offset
    	o3 := uint32(0xd61f0200) // br x16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pe.go

    			for m = d.ms; m != nil; m = m.next {
    				sb := ldr.MakeSymbolUpdater(m.s)
    				sb.SetType(sym.SWINDOWS)
    				sb.SetValue(dynamic.Size())
    				dynamic.SetSize(dynamic.Size() + int64(ctxt.Arch.PtrSize))
    				dynamic.AddInteriorSym(m.s)
    			}
    
    			dynamic.SetSize(dynamic.Size() + int64(ctxt.Arch.PtrSize))
    		}
    	}
    
    	return dr
    }
    
    // peimporteddlls returns the gcc command line argument to link all imported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/term/terminal.go

    	t.move(t.cursorY, 0, 0, 0)
    	t.cursorX, t.cursorY = 0, 0
    
    	t.queue(t.prompt)
    	t.advanceCursor(visualLength(t.prompt))
    	t.writeLine(t.line)
    	t.moveCursorToPos(t.pos)
    }
    
    func (t *Terminal) SetSize(width, height int) error {
    	t.lock.Lock()
    	defer t.lock.Unlock()
    
    	if width == 0 {
    		width = 1
    	}
    
    	oldWidth := t.termWidth
    	t.termWidth, t.termHeight = width, height
    
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
Back to top