Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for csize (0.26 sec)

  1. src/runtime/mheap.go

    const (
    	// minPhysPageSize is a lower-bound on the physical page size. The
    	// true physical page size may be larger than this. In contrast,
    	// sys.PhysPageSize is an upper-bound on the physical page size.
    	minPhysPageSize = 4096
    
    	// maxPhysPageSize is the maximum page size the runtime supports.
    	maxPhysPageSize = 512 << 10
    
    	// maxPhysHugePageSize sets an upper-bound on the maximum huge page size
    	// that the runtime supports.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/reflect/type.go

    		comparable = comparable && (ft.Equal != nil)
    
    		offset := align(size, uintptr(ft.Align_))
    		if offset < size {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		if ft.Align_ > typalign {
    			typalign = ft.Align_
    		}
    		size = offset + ft.Size_
    		if size < offset {
    			panic("reflect.StructOf: struct size would exceed virtual address space")
    		}
    		f.Offset = offset
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	size := uint32(128)
    	for {
    		var numLanguages uint32
    		buf := make([]uint16, size)
    		err := f(flags, &numLanguages, &buf[0], &size)
    		if err == ERROR_INSUFFICIENT_BUFFER {
    			continue
    		}
    		if err != nil {
    			return nil, err
    		}
    		buf = buf[:size]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top