Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for sum5andPair (0.14 sec)

  1. src/runtime/syscall_windows_test.go

    }
    
    //go:registerparams
    func sum5mix(i1 int8, i2 int16, i3 int32, i4, i5 uintptr) uintptr {
    	return uintptr(i1) + uintptr(i2) + uintptr(i3) + i4 + i5
    }
    
    //go:registerparams
    func sum5andPair(i1, i2, i3, i4, i5 uint8Pair) uintptr {
    	return uintptr(i1.x + i1.y + i2.x + i2.y + i3.x + i3.y + i4.x + i4.y + i5.x + i5.y)
    }
    
    // This test forces a GC. The idea is to have enough arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top