Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/codegen/memcombine.go

    }
    
    func store_le_byte_4_idx(b []byte, idx int, val uint32) {
    	_, _, _, _ = b[idx+0], b[idx+1], b[idx+2], b[idx+3]
    	// arm64:`MOVW\sR[0-9]+,\s\(R[0-9]+\)\(R[0-9]+\)`,-`MOVB`,-`MOVH`
    	// ppc64le:`MOVW\s`
    	// ppc64:`MOVWBR`
    	b[idx+3], b[idx+2], b[idx+1], b[idx+0] = byte(val>>24), byte(val>>16), byte(val>>8), byte(val)
    }
    
    func store_be_byte_2_idx(b []byte, idx int, val uint16) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top