Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rot64 (0.04 sec)

  1. src/runtime/runtime_test.go

    			// standard 64-bit division.
    			ret64 := tc.num / int64(tc.div)
    			rem64 := tc.num % int64(tc.div)
    			if ret64 != int64(int32(ret64)) {
    				// Simulate timediv overflow value.
    				ret64 = 1<<31 - 1
    				rem64 = 0
    			}
    			if ret64 != int64(tc.ret) {
    				t.Errorf("%d / %d got ret %d rem %d want ret %d rem %d", tc.num, tc.div, ret64, rem64, tc.ret, tc.rem)
    			}
    
    			var rem int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top