Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkCopyFat72 (0.12 sec)

  1. src/runtime/memmove_test.go

    	}
    }
    
    func BenchmarkCopyFat64(b *testing.B) {
    	var x [64 / 4]uint32
    	p := new([64 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = x
    	}
    }
    
    func BenchmarkCopyFat72(b *testing.B) {
    	var x [72 / 4]uint32
    	p := new([72 / 4]uint32)
    	Escape(p)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		*p = x
    	}
    }
    
    func BenchmarkCopyFat128(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