Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkClearFat1024 (0.15 sec)

  1. src/runtime/memmove_test.go

    	}
    }
    
    func BenchmarkClearFat512(b *testing.B) {
    	p := new([512 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [512 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat1024(b *testing.B) {
    	p := new([1024 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = [1024 / 4]uint32{}
    	}
    }
    
    func BenchmarkClearFat1032(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