Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkClearFat256 (0.27 sec)

  1. src/runtime/memmove_test.go

    	}
    }
    
    func BenchmarkClearFat128(b *testing.B) {
    	p := new([128 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [128 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat256(b *testing.B) {
    	p := new([256 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [256 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat512(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top