Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 256 for MASK (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    )
    
    type Rlimit struct {
    	Cur uint64
    	Max uint64
    }
    
    type _Gid_t uint32
    
    type StatxTimestamp struct {
    	Sec  int64
    	Nsec uint32
    	_    int32
    }
    
    type Statx_t struct {
    	Mask             uint32
    	Blksize          uint32
    	Attributes       uint64
    	Nlink            uint32
    	Uid              uint32
    	Gid              uint32
    	Mode             uint16
    	_                [1]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/crypto/sha256/sha256block_amd64.s

    #define XWORD2 X6
    #define XWORD3 X7
    
    #define XTMP0 Y0
    #define XTMP1 Y1
    #define XTMP2 Y2
    #define XTMP3 Y3
    #define XTMP4 Y8
    #define XTMP5 Y11
    
    #define XFER  Y9
    
    #define BYTE_FLIP_MASK	Y13 // mask to convert LE -> BE
    #define X_BYTE_FLIP_MASK X13
    
    #define NUM_BYTES DX
    #define INP	DI
    
    #define CTX SI // Beginning of digest in memory (a, b, c, ... , h)
    
    #define a AX
    #define b BX
    #define c CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    		ret[n].Critical = template.PermittedDNSDomainsCritical
    
    		ipAndMask := func(ipNet *net.IPNet) []byte {
    			maskedIP := ipNet.IP.Mask(ipNet.Mask)
    			ipAndMask := make([]byte, 0, len(maskedIP)+len(ipNet.Mask))
    			ipAndMask = append(ipAndMask, maskedIP...)
    			ipAndMask = append(ipAndMask, ipNet.Mask...)
    			return ipAndMask
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    		// of hashing the signature.
    		//
    		// We should never encounter a generic signature while hashing another
    		// generic signature, but defensively set sigTParams only if h.mask is
    		// unset.
    		tparams := t.TypeParams()
    		if h.sigTParams == nil && tparams.Len() != 0 {
    			h = Hasher{
    				// There may be something more efficient than discarding the existing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    		toCheck = len(payload)
    	}
    
    	for i := 0; i < toCheck; i++ {
    		t := uint(paddingLen) - uint(i)
    		// if i <= paddingLen then the MSB of t is zero
    		mask := byte(int32(^t) >> 31)
    		b := payload[len(payload)-1-i]
    		good &^= mask&paddingLen ^ mask&b
    	}
    
    	// We AND together the bits of good and replicate the result across
    	// all the bits.
    	good &= good << 4
    	good &= good << 2
    	good &= good << 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    //
    // - begin, end and strides operands are 1D and they have the same number of
    //   elements. Here, the number of elements should be less than 32 to support
    //   32-bit mask attributes.
    // - None of the strides values are zero.
    // - Ellipsis mask can have at most one bit set.
    
    template <class OpTy>
    static LogicalResult VerifyStridedSliceBase(OpTy op) {
      // Expected size for operands begin, end and strides vector operands.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    		if flushBgCredit {
    			gcFlushBgCredit(workDone)
    		}
    	}
    	return workDone
    }
    
    // markrootBlock scans the shard'th shard of the block of memory [b0,
    // b0+n0), with the given pointer mask.
    //
    // Returns the amount of work done.
    //
    //go:nowritebarrier
    func markrootBlock(b0, n0 uintptr, ptrmask0 *uint8, gcw *gcWork, shard int) int64 {
    	if rootBlockBytes%(8*goarch.PtrSize) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512block_ppc64x.s

    	MOVD	$0x0b0, R_x0b0
    	MOVD	$0x0c0, R_x0c0
    	MOVD	$0x0d0, R_x0d0
    	MOVD	$0x0e0, R_x0e0
    	MOVD	$0x0f0, R_x0f0
    	MOVD	$0x100, R_x100
    	MOVD	$0x110, R_x110
    
    
    #ifdef GOARCH_ppc64le
    	// Generate the mask used with VPERM for LE
    	MOVWZ	$8, TEMP
    	LVSL	(TEMP)(R0), LEMASK
    	VSPLTISB	$0x0F, KI
    	VXOR	KI, LEMASK, LEMASK
    #endif
    
    	LXVD2X	(CTX)(R_x000), VS32	// v0 = vs32
    	LXVD2X	(CTX)(R_x010), VS34	// v2 = vs34
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier_test.go

    		&net.IPNet{IP: netutils.ParseIPSloppy(testExternalIP), Mask: net.CIDRMask(24, 32)},
    		&net.IPNet{IP: netutils.ParseIPSloppy(testNodeIPv6), Mask: net.CIDRMask(64, 128)},
    		&net.IPNet{IP: netutils.ParseIPSloppy(testNodeIPv6Alt), Mask: net.CIDRMask(64, 128)},
    	}
    	networkInterfacer.AddInterfaceAddr(&itf1, addrs1)
    
    	nft := knftables.NewFake(nftablesFamily, kubeProxyTable)
    
    	var nodeIP net.IP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. pkg/controlplane/instance_test.go

    		Extra: Extra{
    			APIServerServicePort:   443,
    			MasterCount:            1,
    			EndpointReconcilerType: reconcilers.MasterCountReconcilerType,
    			ServiceIPRange:         net.IPNet{IP: netutils.ParseIPSloppy("10.0.0.0"), Mask: net.CIDRMask(24, 32)},
    		},
    	}
    
    	storageFactoryConfig := kubeapiserver.NewStorageFactoryConfig()
    	storageConfig.StorageObjectCountTracker = config.ControlPlane.Generic.StorageObjectCountTracker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top