Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for enoptrdata (0.14 sec)

  1. src/runtime/race.go

    	end := uintptr(0)
    	if start > firstmoduledata.noptrdata {
    		start = firstmoduledata.noptrdata
    	}
    	if start > firstmoduledata.data {
    		start = firstmoduledata.data
    	}
    	if start > firstmoduledata.noptrbss {
    		start = firstmoduledata.noptrbss
    	}
    	if start > firstmoduledata.bss {
    		start = firstmoduledata.bss
    	}
    	if end < firstmoduledata.enoptrdata {
    		end = firstmoduledata.enoptrdata
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    	//	func main() {
    	//		runtime.SetFinalizer(Foo, nil)
    	//	}
    	// The relevant segments are: noptrdata, data, bss, noptrbss.
    	// We cannot assume they are in any order or even contiguous,
    	// due to external linking.
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.noptrdata <= uintptr(p) && uintptr(p) < datap.enoptrdata ||
    			datap.data <= uintptr(p) && uintptr(p) < datap.edata ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/runtime/symtab.go

    	cutab        []uint32
    	filetab      []byte
    	pctab        []byte
    	pclntable    []byte
    	ftab         []functab
    	findfunctab  uintptr
    	minpc, maxpc uintptr
    
    	text, etext           uintptr
    	noptrdata, enoptrdata uintptr
    	data, edata           uintptr
    	bss, ebss             uintptr
    	noptrbss, enoptrbss   uintptr
    	covctrs, ecovctrs     uintptr
    	end, gcdata, gcbss    uintptr
    	types, etypes         uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top