Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for maskstr (0.23 sec)

  1. src/runtime/asm_amd64.s

    DATA masks<>+0x48(SB)/8, $0x0000000000000000
    DATA masks<>+0x50(SB)/8, $0x000000ffffffffff
    DATA masks<>+0x58(SB)/8, $0x0000000000000000
    DATA masks<>+0x60(SB)/8, $0x0000ffffffffffff
    DATA masks<>+0x68(SB)/8, $0x0000000000000000
    DATA masks<>+0x70(SB)/8, $0x00ffffffffffffff
    DATA masks<>+0x78(SB)/8, $0x0000000000000000
    DATA masks<>+0x80(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x88(SB)/8, $0x0000000000000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // The upper bits of the smaller than register values is undefined. Take advantage of that.
    (AND <t> x:(MOVDconst [m]) n) && t.Size() <= 2 => (ANDconst [int64(int16(m))] n)
    
    // Convert simple bit masks to an equivalent rldic[lr] if possible.
    (AND x:(MOVDconst [m]) n) && isPPC64ValidShiftMask(m) => (RLDICL [encodePPC64RotateMask(0,m,64)] n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    // or return 0 if they cannot be combined.
    func mergePPC64SldiSrw(sld, srw int64) int64 {
    	if sld > srw || srw >= 32 {
    		return 0
    	}
    	mask_r := uint32(0xFFFFFFFF) >> uint(srw)
    	mask_l := uint32(0xFFFFFFFF) >> uint(sld)
    	mask := (mask_r & mask_l) << uint(sld)
    	return encodePPC64RotateMask((32-srw+sld)&31, int64(mask), 32)
    }
    
    // Convert a PPC64 opcode from the Op to OpCC form. This converts (op x y)
    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. src/strconv/itoa.go

    		}
    
    		// us < 100
    		is := us * 2
    		i--
    		a[i] = smallsString[is+1]
    		if us >= 10 {
    			i--
    			a[i] = smallsString[is]
    		}
    
    	} else if isPowerOfTwo(base) {
    		// Use shifts and masks instead of / and %.
    		// Base is a power of 2 and 2 <= base <= len(digits) where len(digits) is 36.
    		// The largest power of 2 below or equal to 36 is 32, which is 1 << 5;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_ppc64x.go

    		data = data[siz:]
    	}
    	if len(data) > 0 {
    		var s [16]byte
    		copy(s[:], data)
    		gcmHash(hash[:], &g.productTable, s[:], len(s))
    	}
    }
    
    // auth calculates GHASH(ciphertext, additionalData), masks the result with
    // tagMask and writes the result to out.
    func (g *gcmAsm) auth(out, ciphertext, aad []byte, tagMask *[gcmTagSize]byte) {
    	var hash [16]byte
    	g.paddedGHASH(&hash, aad)
    	g.paddedGHASH(&hash, ciphertext)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/net/ip.go

    	if len(ip) == IPv6len {
    		return ip
    	}
    	return nil
    }
    
    // Default route masks for IPv4.
    var (
    	classAMask = IPv4Mask(0xff, 0, 0, 0)
    	classBMask = IPv4Mask(0xff, 0xff, 0, 0)
    	classCMask = IPv4Mask(0xff, 0xff, 0xff, 0)
    )
    
    // DefaultMask returns the default IP mask for the IP address ip.
    // Only IPv4 addresses have default masks; DefaultMask returns
    // nil if ip is not a valid IPv4 address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // TODO(b/154160827): Add a canonicalization pattern from tf.StridedSliceOp to
    // tf.SliceOp if both of the following are true:
    // - All strides have a known value equal to 1
    // - No masks are set (or masks can be applied by transforming the inputs to
    //   Slice)
    
    // Verifies that,
    //
    // - begin, end and strides operands are 1D and they have the same number of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authentication/v1/types.go

    	// Any additional information provided by the authenticator.
    	// +optional
    	Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,4,rep,name=extra"`
    }
    
    // ExtraValue masks the value so protobuf can generate
    // +protobuf.nullable=true
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type ExtraValue []string
    
    func (t ExtraValue) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. cni/pkg/cmd/root.go

    		// Whatever user has set (with --log_output_level) for 'cni-plugin', pass it down to the plugin. It will use this to determine
    		// what level to use for itself.
    		// This masks the fact we are doing this weird log-over-UDS to users, and allows them to configure it the same way.
    		PluginLogLevel:        istiolog.LevelToString(istiolog.FindScope(constants.CNIPluginLogScope).GetOutputLevel()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/crypto/aes/gcm_s390x.go

    		lens := gcmLengths(0, uint64(len(nonce))*8)
    		g.paddedGHASH(&hash, lens[:])
    		copy(counter[:], hash[:])
    	}
    	return counter
    }
    
    // auth calculates GHASH(ciphertext, additionalData), masks the result with
    // tagMask and writes the result to out.
    func (g *gcmAsm) auth(out, ciphertext, additionalData []byte, tagMask *[gcmTagSize]byte) {
    	var hash [16]byte
    	g.paddedGHASH(&hash, additionalData)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top