Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseLE16 (0.19 sec)

  1. src/cmd/compile/internal/test/testdata/arith_test.go

    }
    
    //go:noinline
    func parseLE32(b []byte) uint32 {
    	return uint32(b[2]) | uint32(b[3])<<8 | uint32(b[4])<<16 | uint32(b[5])<<24
    }
    
    //go:noinline
    func parseLE16(b []byte) uint16 {
    	return uint16(b[2]) | uint16(b[3])<<8
    }
    
    // testLoadCombine tests for issue #14694 where load combining didn't respect the pointer offset.
    func testLoadCombine(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
Back to top