Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/codegen/smallintiface.go

    // license that can be found in the LICENSE file.
    
    func booliface() interface{} {
    	// amd64:`LEAQ\truntime.staticuint64s\+8\(SB\)`
    	return true
    }
    
    func smallint8iface() interface{} {
    	// amd64:`LEAQ\truntime.staticuint64s\+2024\(SB\)`
    	return int8(-3)
    }
    
    func smalluint8iface() interface{} {
    	// amd64:`LEAQ\truntime.staticuint64s\+24\(SB\)`
    	return uint8(3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 21:43:01 UTC 2020
    - 500 bytes
    - Viewed (0)
Back to top