Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for pojer (0.22 sec)

  1. doc/go1.17_spec.html

    If the divisor is a <a href="#Constants">constant</a>, it must not be zero.
    If the divisor is zero at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
    If the dividend is non-negative and the divisor is a constant power of 2,
    the division may be replaced by a right shift, and computing the remainder may
    be replaced by a bitwise AND operation:
    </p>
    
    <pre>
     x     x / 4     x % 4     x &gt;&gt; 2     x &amp; 3
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/archive/zip/zip_test.go

    			rp = &r.buf[len(r.buf)-1]
    		} else {
    			rp.n++
    		}
    	}
    	return len(p), nil
    }
    
    func memset(a []byte, b byte) {
    	if len(a) == 0 {
    		return
    	}
    	// Double, until we reach power of 2 >= len(a), same as bytes.Repeat,
    	// but without allocation.
    	a[0] = b
    	for i, l := 1, len(a); i < l; i *= 2 {
    		copy(a[i:], a[:i])
    	}
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  3. doc/go_spec.html

    If the divisor is a <a href="#Constants">constant</a>, it must not be zero.
    If the divisor is zero at run time, a <a href="#Run_time_panics">run-time panic</a> occurs.
    If the dividend is non-negative and the divisor is a constant power of 2,
    the division may be replaced by a right shift, and computing the remainder may
    be replaced by a bitwise AND operation:
    </p>
    
    <pre>
     x     x / 4     x % 4     x &gt;&gt; 2     x &amp; 3
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (linux-386), const LINUX_REBOOT_CMD_HALT = 3454992675
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_KEXEC = 1163412803
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_POWER_OFF = 1126301404
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART = 19088743
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART2 = 2712847316
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_SW_SUSPEND = 3489725666
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/endtoend_test.go

    	testEndToEnd(t, "loong64", "loong64")
    }
    
    func TestPPC64EndToEnd(t *testing.T) {
    	defer func(old int) { buildcfg.GOPPC64 = old }(buildcfg.GOPPC64)
    	for _, goppc64 := range []int{8, 9, 10} {
    		t.Logf("GOPPC64=power%d", goppc64)
    		buildcfg.GOPPC64 = goppc64
    		// Some pseudo-ops may assemble differently depending on GOPPC64
    		testEndToEnd(t, "ppc64", "ppc64")
    		testEndToEnd(t, "ppc64", "ppc64_p10")
    	}
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  6. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_HALT ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_KEXEC ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_POWER_OFF ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART ideal-int
    pkg syscall (linux-arm-cgo), const LINUX_REBOOT_CMD_RESTART2 ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  7. src/cmd/cgo/gcc.go

    			// makes the whole program not compile. Much of the time these
    			// structs are in system headers that cannot be corrected.
    			continue
    		}
    
    		// Round off up to talign, assumed to be a power of 2.
    		off = (off + talign - 1) &^ (talign - 1)
    
    		if f.ByteOffset > off {
    			fld, sizes = c.pad(fld, sizes, f.ByteOffset-off)
    			off = f.ByteOffset
    		}
    		if f.ByteOffset < off {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (linux-386), const LINUX_REBOOT_CMD_HALT ideal-int
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_KEXEC ideal-int
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_POWER_OFF ideal-int
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART ideal-int
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_RESTART2 ideal-int
    pkg syscall (linux-386), const LINUX_REBOOT_CMD_SW_SUSPEND ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top