Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bigEndianStore (0.82 sec)

  1. src/cmd/compile/internal/test/memcombine_test.go

    	}
    	t32.bigEndianStore(1<<32 + 2)
    	if got, want := t32, (T32{1, 2}); got != want {
    		t.Errorf("T32.bigEndianStore got %x want %x\n", got, want)
    	}
    	t32.littleEndianStore(1<<32 + 2)
    	if got, want := t32, (T32{2, 1}); got != want {
    		t.Errorf("T32.littleEndianStore got %x want %x\n", got, want)
    	}
    	t16.bigEndianStore(1<<16 + 2)
    	if got, want := t16, (T16{1, 2}); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 30 18:35:50 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top