Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for VirtualSize (0.2 sec)

  1. src/debug/buildinfo/buildinfo.go

    			sect.Characteristics&^IMAGE_SCN_ALIGN_32BYTES == IMAGE_SCN_CNT_INITIALIZED_DATA|IMAGE_SCN_MEM_READ|IMAGE_SCN_MEM_WRITE {
    			return uint64(sect.VirtualAddress) + x.imageBase(), uint64(sect.VirtualSize)
    		}
    	}
    	return 0, 0
    }
    
    // machoExe is the Mach-O (Apple macOS/iOS) implementation of the exe interface.
    type machoExe struct {
    	f *macho.File
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	InheritedFromUniqueProcessID uintptr
    	HandleCount                  uint32
    	SessionID                    uint32
    	UniqueProcessKey             *uint32
    	PeakVirtualSize              uintptr
    	VirtualSize                  uintptr
    	PageFaultCount               uint32
    	PeakWorkingSetSize           uintptr
    	WorkingSetSize               uintptr
    	QuotaPeakPagedPoolUsage      uintptr
    	QuotaPagedPoolUsage          uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SectionHeader.PointerToLineNumbers", Field, 0},
    		{"SectionHeader.PointerToRelocations", Field, 0},
    		{"SectionHeader.Size", Field, 0},
    		{"SectionHeader.VirtualAddress", Field, 0},
    		{"SectionHeader.VirtualSize", Field, 0},
    		{"SectionHeader32", Type, 0},
    		{"SectionHeader32.Characteristics", Field, 0},
    		{"SectionHeader32.Name", Field, 0},
    		{"SectionHeader32.NumberOfLineNumbers", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& isSameCall(sym, "runtime.memmove")
    	&& isInlinableMemmove(dst, src, int64(sz), config)
    	&& clobber(call)
    	=> (Move {types.Types[types.TUINT8]} [int64(sz)] dst src mem)
    
    // De-virtualize late-expanded interface calls into late-expanded static calls.
    (InterLECall [argsize] {auxCall} (Addr {fn} (SB)) ___) => devirtLECall(v, fn.(*obj.LSym))
    
    // Move and Zero optimizations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top