Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _Sat (0.04 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // FixedType is a fixed numeric type of unknown size.
    type FixedType struct {
    	Base  AST
    	Accum bool
    	Sat   bool
    }
    
    func (ft *FixedType) print(ps *printState) {
    	if ft.Sat {
    		ps.writeString("_Sat ")
    	}
    	if bt, ok := ft.Base.(*BuiltinType); ok && bt.Name == "int" {
    		// The standard demangler skips printing "int".
    	} else {
    		ps.print(ft.Base)
    		ps.writeByte(' ')
    	}
    	if ft.Accum {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top