Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for printuint (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // converted to BiggestInt, we print it as a BiggestInt.
      //
      // Most likely T is an enum type (either named or unnamed), in which
      // case printing it as an integer is the desired behavior.  In case
      // T is not an enum, printing it as an integer is the best we can do
      // given that it has no user-defined printer.
      static void PrintValue(const T& value, ::std::ostream* os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // converted to BiggestInt, we print it as a BiggestInt.
      //
      // Most likely T is an enum type (either named or unnamed), in which
      // case printing it as an integer is the desired behavior.  In case
      // T is not an enum, printing it as an integer is the best we can do
      // given that it has no user-defined printer.
      static void PrintValue(const T& value, ::std::ostream* os) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. src/fmt/doc.go

    /*
    Package fmt implements formatted I/O with functions analogous
    to C's printf and scanf.  The format 'verbs' are derived from C's but
    are simpler.
    
    # Printing
    
    The verbs:
    
    General:
    
    	%v	the value in a default format
    		when printing structs, the plus flag (%+v) adds field names
    	%#v	a Go-syntax representation of the value
    		(floating-point infinities and NaNs print as ±Inf and NaN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/typestring.go

    // TypeString returns the string representation of typ.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    func TypeString(typ Type, qf Qualifier) string {
    	var buf bytes.Buffer
    	WriteType(&buf, typ, qf)
    	return buf.String()
    }
    
    // WriteType writes the string representation of typ to buf.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/go/types/typestring.go

    // TypeString returns the string representation of typ.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    func TypeString(typ Type, qf Qualifier) string {
    	var buf bytes.Buffer
    	WriteType(&buf, typ, qf)
    	return buf.String()
    }
    
    // WriteType writes the string representation of typ to buf.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top