Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cout (0.42 sec)

  1. doc/go_spec.html

    The shift operators shift the left operand by the shift count specified by the
    right operand, which must be non-negative. If the shift count is negative at run time,
    a <a href="#Run_time_panics">run-time panic</a> occurs.
    The shift operators implement arithmetic shifts if the left operand is a signed
    integer and logical shifts if it is an unsigned integer.
    There is no upper limit on the shift count. Shifts behave
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	if elem.Alignment() == 1 && (size == 0 || size == 1 || count == nil) {
    		return
    	}
    	if count == nil {
    		count = s.constInt(types.Types[types.TUINTPTR], 1)
    	}
    	if count.Type.Size() != s.config.PtrSize {
    		s.Fatalf("expected count fit to a uintptr size, have: %d, want: %d", count.Type.Size(), s.config.PtrSize)
    	}
    	var rtype *ssa.Value
    	if rtypeExpr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), type Msghdr struct, Pad_cgo_1 [4]uint8
    pkg syscall (darwin-arm64), type Radvisory_t struct
    pkg syscall (darwin-arm64), type Radvisory_t struct, Count int32
    pkg syscall (darwin-arm64), type Radvisory_t struct, Offset int64
    pkg syscall (darwin-arm64), type Radvisory_t struct, Pad_cgo_0 [4]uint8
    pkg syscall (darwin-arm64), type RawSockaddr struct, Data [14]int8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top