Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CompareArray5 (0.26 sec)

  1. test/codegen/comparisons.go

    }
    
    func CompareArray4(a, b [12]int8) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	// amd64:`CMPL\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    func CompareArray5(a, b [15]byte) bool {
    	// amd64:`CMPQ\tcommand-line-arguments[.+_a-z0-9]+\(SP\), [A-Z]`
    	return a == b
    }
    
    // This was a TODO in mapaccess1_faststr
    func CompareArray6(a, b unsafe.Pointer) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top