Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 246 for shifts (0.24 sec)

  1. src/crypto/internal/bigmod/nat.go

    	// previous limbs left by _W. This way each limb will get shifted by the
    	// correct number of bits. We can insert at least N - 1 limbs without
    	// overflowing m. After that, we need to reduce every time we shift.
    	i := len(x.limbs) - 1
    	// For the first N - 1 limbs we can skip the actual shifting and position
    	// them at the shifted position, which starts at min(N - 2, i).
    	start := len(m.nat.limbs) - 2
    	if i < start {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    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
    as if the left operand is shifted <code>n</code> times by 1 for a shift
    count of <code>n</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "ROTLW", argLength: 2, reg: gp21, asm: "ROTLW"}, // uint32(arg0) rotate left by arg1 mod 32
    		// The following are ops to implement the extended mnemonics for shifts as described in section C.8 of the ISA.
    		// The constant shift values are packed into the aux int32.
    		{name: "CLRLSLWI", argLength: 1, reg: gp11, asm: "CLRLSLWI", aux: "Int32"}, //
    		{name: "CLRLSLDI", argLength: 1, reg: gp11, asm: "CLRLSLDI", aux: "Int32"}, //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    		return false
    	}
    	if ip.Is4() {
    		// xor the IP addresses together; mismatched bits are now ones.
    		// Shift away the number of bits we don't care about.
    		// Shifts in Go are more efficient if the compiler can prove
    		// that the shift amount is smaller than the width of the shifted type (64 here).
    		// We know that p.bits is in the range 0..32 because p is Valid;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/image/draw/draw.go

    	if r.Empty() {
    		return
    	}
    	drawPaletted(dst, r, src, sp, true)
    }
    
    // clip clips r against each image's bounds (after translating into the
    // destination image's coordinate space) and shifts the points sp and mp by
    // the same amount as the change in r.Min.
    func clip(dst Image, r *image.Rectangle, src image.Image, sp *image.Point, mask image.Image, mp *image.Point) {
    	orig := r.Min
    	*r = r.Intersect(dst.Bounds())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. src/time/format.go

    		// importing fmt or strconv
    		// - try to use FixedZone, which would also require escaping the name
    		// and would represent e.g. "America/Los_Angeles" daylight saving time
    		// shifts inaccurately
    		// - use the pointer format, which is no worse than you'd get with the
    		// old fmt.Sprintf("%#v", t) format.
    		//
    		// Of these, Location(loc.name) is the least disruptive. This is an edge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    			// Check whether, for a >> b, we know that a is non-negative
    			// and b is all of a's bits except the MSB. If so, a is shifted to zero.
    			bits := 8 * v.Type.Size()
    			if v.Args[1].isGenericIntConst() && v.Args[1].AuxInt >= bits-1 && ft.isNonNegative(v.Args[0]) {
    				if b.Func.pass.debug > 0 {
    					b.Func.Warnl(v.Pos, "Proved %v shifts to zero", v.Op)
    				}
    				switch bits {
    				case 64:
    					v.reset(OpConst64)
    				case 32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/primitives/Shorts.java

     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Shorts extends ShortsMethodsForWeb {
      private Shorts() {}
    
      /**
       * The number of bytes required to represent a primitive {@code short} value.
       *
       * <p><b>Java 8+ users:</b> use {@link Short#BYTES} instead.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/Shorts.java

     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class Shorts extends ShortsMethodsForWeb {
      private Shorts() {}
    
      /**
       * The number of bytes required to represent a primitive {@code short} value.
       *
       * <p><b>Java 8+ users:</b> use {@link Short#BYTES} instead.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() syscall.Signal {
    	if !w.Signaled() {
    		return -1
    	}
    	return syscall.Signal(w & mask)
    }
    
    func (w WaitStatus) StopSignal() syscall.Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return syscall.Signal(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) TrapCause() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top