Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/codegen/issue25378.go

    // license that can be found in the LICENSE file.
    
    package codegen
    
    var wsp = [256]bool{
    	' ':  true,
    	'\t': true,
    	'\n': true,
    	'\r': true,
    }
    
    func zeroExtArgByte(ch [2]byte) bool {
    	return wsp[ch[0]] // amd64:-"MOVBLZX\t..,.."
    }
    
    func zeroExtArgUint16(ch [2]uint16) bool {
    	return wsp[ch[0]] // amd64:-"MOVWLZX\t..,.."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 12 21:59:59 UTC 2021
    - 445 bytes
    - Viewed (0)
Back to top