Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for unwrapping (0.17 sec)

  1. src/cmd/internal/obj/ppc64/obj9.go

    // of the form: 0..01..10..0 or 1..10..01..1 or 1...1
    func isPPC64DoublewordRotateMask(v64 int64) bool {
    	// Isolate rightmost 1 (if none 0) and add.
    	v := uint64(v64)
    	vp := (v & -v) + v
    	// Likewise, for the wrapping case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    	return (v&vp == 0 || vn&vpn == 0) && v != 0
    }
    
    // Encode a doubleword rotate mask into mb (mask begin) and
    // me (mask end, inclusive). Note, POWER ISA labels bits in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    // outerfn is the enclosing function, if any. The returned function is
    // appending to pkg.Funcs.
    //
    // why is the reason we're generating this Func. It can be OCLOSURE
    // (for a normal function literal) or OGO or ODEFER (for wrapping a
    // call expression that has parameters or results).
    func NewClosureFunc(fpos, cpos src.XPos, why Op, typ *types.Type, outerfn *Func, pkg *Package) *Func {
    	fn := NewFunc(fpos, fpos, closureName(outerfn, cpos, why), typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    // of the form: 0..01..10..0 or 1..10..01..1 or 1...1
    func isPPC64WordRotateMask(v64 int64) bool {
    	// Isolate rightmost 1 (if none 0) and add.
    	v := uint32(v64)
    	vp := (v & -v) + v
    	// Likewise, for the wrapping case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    	return (v&vp == 0 || vn&vpn == 0) && v != 0
    }
    
    // Compress mask and shift into single value of the form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

        threadFail("should throw " + exceptionName);
      }
    
      /**
       * Records the given exception using {@link #threadRecordFailure}, then rethrows the exception,
       * wrapping it in an AssertionFailedError if necessary.
       */
      public void threadUnexpectedException(Throwable t) {
        threadRecordFailure(t);
        t.printStackTrace();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. pkg/volume/util/util.go

    			globalMapPath, string(podUID), mapErr)
    	}
    
    	return nil
    }
    
    // UnmapBlockVolume is a utility function to provide a common way of unmapping
    // block device path for a specified volume and pod.  This function should be
    // called by volume plugins that implements volume.BlockVolumeMapper.Map() method.
    func UnmapBlockVolume(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *       ClosingFuture} call {@link #from(ListenableFuture)}.
       *   <li>In case this step doesn't create new closeables, you can adapt an API that returns a
       *       {@link ListenableFuture} to return a {@code ClosingFuture} by wrapping it with a call to
       *       {@link #withoutCloser(AsyncFunction)}
       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. .bazelrc

    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    # TODO: Remove the following two lines once TF doesn't depend on Bazel wrapping
    # all library archives in -whole_archive -no_whole_archive.
    build --noincompatible_remove_legacy_whole_archive
    build --features=-force_no_whole_archive
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// from it justifies increased memory usage, so for now we drop the cached
    		// serializations after dispatching this event.
    		//
    		// Given that CachingObject is just wrapping the object and not perfoming
    		// deep-copying (until some field is explicitly being modified), we create
    		// it unconditionally to ensure safety and reduce deep-copying.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    	// If the command exits with a success status after Cancel is
    	// called, and Cancel does not return an error equivalent to
    	// os.ErrProcessDone, then Wait and similar methods will return a non-nil
    	// error: either an error wrapping the one returned by Cancel,
    	// or the error from the Context.
    	// (If the command exits with a non-success status, or Cancel
    	// returns an error that wraps os.ErrProcessDone, Wait and similar methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    // IPv6 addresses.
    func (ip Addr) Is6() bool {
    	return ip.z != z0 && ip.z != z4
    }
    
    // Unmap returns ip with any IPv4-mapped IPv6 address prefix removed.
    //
    // That is, if ip is an IPv6 address wrapping an IPv4 address, it
    // returns the wrapped IPv4 address. Otherwise it returns ip unmodified.
    func (ip Addr) Unmap() Addr {
    	if ip.Is4In6() {
    		ip.z = z4
    	}
    	return ip
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top