Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for store_be32_load (0.11 sec)

  1. test/codegen/memcombine.go

    	// ppc64:`MOVW\s`
    	// s390x:`MOVW\s.*\(.*\)$`,-`SRW\s`,-`SRD\s`
    	binary.BigEndian.PutUint32(b, x)
    }
    
    func store_be64_load(b, x *[8]byte) {
    	// arm64:-`REV`
    	// amd64:-`BSWAPQ`
    	binary.BigEndian.PutUint64(b[:], binary.BigEndian.Uint64(x[:]))
    }
    
    func store_be32_load(b, x *[8]byte) {
    	// arm64:-`REVW`
    	// amd64:-`BSWAPL`
    	binary.BigEndian.PutUint32(b[:], binary.BigEndian.Uint32(x[:]))
    }
    
    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