Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for pageBits (0.18 sec)

  1. src/runtime/mpallocbits.go

    import (
    	"runtime/internal/sys"
    )
    
    // pageBits is a bitmap representing one bit per page in a palloc chunk.
    type pageBits [pallocChunkPages / 64]uint64
    
    // get returns the value of the i'th bit in the bitmap.
    func (b *pageBits) get(i uint) uint {
    	return uint((b[i/64] >> (i % 64)) & 1)
    }
    
    // block64 returns the 64-bit aligned block of bits containing the i'th bit.
    func (b *pageBits) block64(i uint) uint64 {
    	return b[i/64]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    // SummarizeSlow is a slow but more obviously correct implementation
    // of (*pallocBits).summarize. Used for testing.
    func SummarizeSlow(b *PallocBits) PallocSum {
    	var start, most, end uint
    
    	const N = uint(len(b)) * 64
    	for start < N && (*pageBits)(b).get(start) == 0 {
    		start++
    	}
    	for end < N && (*pageBits)(b).get(N-end-1) == 0 {
    		end++
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. misc/linkcheck/linkcheck.go

    			continue
    		}
    		if !seen[ref] {
    			seen[ref] = true
    			links = append(links, m[1])
    		}
    	}
    	return
    }
    
    var idRx = regexp.MustCompile(`\bid=['"]?([^\s'">]+)`)
    
    func pageIDs(body string) (ids []string) {
    	mv := idRx.FindAllStringSubmatch(body, -1)
    	for _, m := range mv {
    		ids = append(ids, m[1])
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go

    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    	Forks_sharevm      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go

    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    	Forks_sharevm      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go

    	Cpumiss            int64
    	Faults             int64
    	Traps              int64
    	Intrs              int64
    	Swtch              int64
    	Softs              int64
    	Syscalls           int64
    	Pageins            int64
    	Swapins            int64
    	Swapouts           int64
    	Pgswapin           int64
    	Pgswapout          int64
    	Forks              int64
    	Forks_ppwait       int64
    	Forks_sharevm      int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go

    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    	Forks_sharevm      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go

    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    	Forks_sharevm      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go

    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    	Forks_sharevm      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go

    	Unused06           int32
    	Faults             int32
    	Traps              int32
    	Intrs              int32
    	Swtch              int32
    	Softs              int32
    	Syscalls           int32
    	Pageins            int32
    	Unused07           int32
    	Unused08           int32
    	Pgswapin           int32
    	Pgswapout          int32
    	Forks              int32
    	Forks_ppwait       int32
    	Forks_sharevm      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top