Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 309 for printuint (0.14 sec)

  1. test/print.go

    	println(([]int)(nil))       // printslice
    	println(int64(-7))          // printint
    	println(uint64(7))          // printuint
    	println(uint32(7))          // printuint
    	println(uint16(7))          // printuint
    	println(uint8(7))           // printuint
    	println(uint(7))            // printuint
    	println(uintptr(7))         // printuint
    	println(8.0)                // printfloat
    	println(complex(9.0, 10.0)) // printcomplex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  2. src/runtime/print.go

    	print("(", real(c), imag(c), "i)")
    }
    
    func printuint(v uint64) {
    	var buf [100]byte
    	i := len(buf)
    	for i--; i > 0; i-- {
    		buf[i] = byte(v%10 + '0')
    		if v < 10 {
    			break
    		}
    		v /= 10
    	}
    	gwrite(buf[i:])
    }
    
    func printint(v int64) {
    	if v < 0 {
    		printstring("-")
    		v = -v
    	}
    	printuint(uint64(v))
    }
    
    var minhexdigits = 0 // protected by printlock
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/internal/goobj/builtinlist.go

    	{"runtime.goPanicSlice3C", 1},
    	{"runtime.goPanicSlice3CU", 1},
    	{"runtime.goPanicSliceConvert", 1},
    	{"runtime.printbool", 1},
    	{"runtime.printfloat", 1},
    	{"runtime.printint", 1},
    	{"runtime.printhex", 1},
    	{"runtime.printuint", 1},
    	{"runtime.printcomplex", 1},
    	{"runtime.printstring", 1},
    	{"runtime.printpointer", 1},
    	{"runtime.printuintptr", 1},
    	{"runtime.printiface", 1},
    	{"runtime.printeface", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func goPanicSlice3C(x int, y int)
    func goPanicSlice3CU(x uint, y int)
    func goPanicSliceConvert(x int, y int)
    
    func printbool(bool)
    func printfloat(float64)
    func printint(int64)
    func printhex(uint64)
    func printuint(uint64)
    func printcomplex(complex128)
    func printstring(string)
    func printpointer(any)
    func printuintptr(uintptr)
    func printiface(any)
    func printeface(any)
    func printslice(any)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/builtin.go

    	{"goPanicSlice3C", funcTag, 16},
    	{"goPanicSlice3CU", funcTag, 18},
    	{"goPanicSliceConvert", funcTag, 16},
    	{"printbool", funcTag, 19},
    	{"printfloat", funcTag, 21},
    	{"printint", funcTag, 23},
    	{"printhex", funcTag, 25},
    	{"printuint", funcTag, 25},
    	{"printcomplex", funcTag, 27},
    	{"printstring", funcTag, 29},
    	{"printpointer", funcTag, 30},
    	{"printuintptr", funcTag, 31},
    	{"printiface", funcTag, 30},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/builtin.go

    			if types.RuntimeSymName(n.Type().Sym()) == "hex" {
    				on = typecheck.LookupRuntime("printhex")
    			} else {
    				on = typecheck.LookupRuntime("printuint")
    			}
    		case types.TINT, types.TINT8, types.TINT16, types.TINT32, types.TINT64:
    			on = typecheck.LookupRuntime("printint")
    		case types.TFLOAT32, types.TFLOAT64:
    			on = typecheck.LookupRuntime("printfloat")
    		case types.TCOMPLEX64, types.TCOMPLEX128:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    		"NS: " + r.NS.GoString() + ", " +
    		"MBox: " + r.MBox.GoString() + ", " +
    		"Serial: " + printUint32(r.Serial) + ", " +
    		"Refresh: " + printUint32(r.Refresh) + ", " +
    		"Retry: " + printUint32(r.Retry) + ", " +
    		"Expire: " + printUint32(r.Expire) + ", " +
    		"MinTTL: " + printUint32(r.MinTTL) + "}"
    }
    
    func unpackSOAResource(msg []byte, off int) (SOAResource, error) {
    	var ns Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  8. test/live_regabi.go

    	if b2 {
    		printint(0) // x not live here
    		return
    	}
    	var z **int
    	x := new(int) // ERROR "stack object x \*int$"
    	*x = 42
    	z = &x
    	printint(**z) // ERROR "live at call to printint: x$"
    	if b2 {
    		printint(1) // x not live here
    		return
    	}
    	for {
    		printint(**z) // ERROR "live at call to printint: x$"
    	}
    }
    
    func f5(b1 bool) {
    	var z **int
    	if b1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. test/live.go

    	if b2 {
    		printint(0) // x not live here
    		return
    	}
    	var z **int
    	x := new(int) // ERROR "stack object x \*int$"
    	*x = 42
    	z = &x
    	printint(**z) // ERROR "live at call to printint: x$"
    	if b2 {
    		printint(1) // x not live here
    		return
    	}
    	for {
    		printint(**z) // ERROR "live at call to printint: x$"
    	}
    }
    
    func f5(b1 bool) {
    	var z **int
    	if b1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/json_yaml_flags.go

    // AllowedFormats returns slice of string of allowed JSONYaml printing format
    func (f *JSONYamlPrintFlags) AllowedFormats() []string {
    	if f == nil {
    		return []string{}
    	}
    	return []string{"json", "yaml"}
    }
    
    // JSONYamlPrintFlags provides default flags necessary for json/yaml printing.
    // Given the following flag values, a printer can be requested that knows
    // how to handle printing based on these values.
    type JSONYamlPrintFlags struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 13:00:03 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top