Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DiscontiguousMappedSumBoundary (0.17 sec)

  1. src/runtime/mpagecache_test.go

    		// See mpagealloc_test.go for details.
    		sumsPerPhysPage := ChunkIdx(PhysPageSize / PallocSumBytes)
    		baseChunkIdx := BaseChunkIdx &^ (sumsPerPhysPage - 1)
    		tests["DiscontiguousMappedSumBoundary"] = test{
    			beforeAlloc: map[ChunkIdx][]BitRange{
    				baseChunkIdx + sumsPerPhysPage - 1: {{0, PallocChunkPages - 1}},
    				baseChunkIdx + chunkIdxBigJump:     {{1, PallocChunkPages - 1}},
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 10.8K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc_test.go

    		// each summary array is aligned to some physical page.
    		sumsPerPhysPage := ChunkIdx(PhysPageSize / PallocSumBytes)
    		baseChunkIdx := BaseChunkIdx &^ (sumsPerPhysPage - 1)
    		tests["DiscontiguousMappedSumBoundary"] = test{
    			before: map[ChunkIdx][]BitRange{
    				baseChunkIdx + sumsPerPhysPage - 1: {},
    				baseChunkIdx + chunkIdxBigJump:     {},
    			},
    			scav: map[ChunkIdx][]BitRange{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 06 19:16:48 UTC 2021
    - 32.6K bytes
    - Viewed (0)
Back to top