Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 104 for 411 (0.02 sec)

  1. src/crypto/aes/asm_ppc64x.s

    	P8_LXVB16X(R4, R0, V0)
    
    	// V1, V2 will hold keys, V0 is a temp.
    	// At completion, V2 will hold the ciphertext.
    	// Load xk[0:3] and xor with text
    	LXVD2X	(R0+R5), V1
    	VXOR	V0, V1, V0
    
    	// Load xk[4:11] and cipher
    	LXVD2X	(R6+R5), V1
    	LXVD2X	(R7+R5), V2
    	VCIPHER	V0, V1, V0
    	VCIPHER	V0, V2, V0
    
    	// Load xk[12:19] and cipher
    	LXVD2X	(R8+R5), V1
    	LXVD2X	(R9+R5), V2
    	VCIPHER	V0, V1, V0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/internal/zstd/fse.go

    // maxBits is the maximum number of bits permitted for symbols in the table.
    // The FSE is written into table, which must be at least 1<<maxBits in size.
    // This returns the number of bits in the FSE table and the new offset.
    // RFC 4.1.1.
    func (r *Reader) readFSE(data block, off, maxSym, maxBits int, table []fseEntry) (tableBits, roff int, err error) {
    	br := r.makeBitReader(data, off)
    	if err := br.moreBits(); err != nil {
    		return 0, 0, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        %feature_group_count = "tf.Const"() {value = dense<-1> : tensor<i32>} : () -> tensor<i32>
        %rhs_dilation = "tf.Const"() {value = dense<1> : tensor<3xi32>} : () -> tensor<3xi32>
        %lhs_dilation = "tf.Const"() {value = dense<[4, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
        %padding = "tf.Const"() {value = dense<0> : tensor<3x2xi32>} : () -> tensor<3x2xi32>
        %strides = "tf.Const"() {value = dense<[3, 1, 1]> : tensor<3xi32>} : () -> tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope.h

    ///
    /// A simple example:
    ///
    ///     using namespace ops;
    ///     Scope root = Scope::NewRootScope();
    ///     auto c1 = Const(root, { {1, 1} });
    ///     auto m = MatMul(root, c1, { {41}, {1} });
    ///     GraphDef gdef;
    ///     Status s = root.ToGraphDef(&gdef);
    ///     if (!s.ok()) { ... }
    ///
    /// Scope hierarchy:
    ///
    /// The Scope class provides various With<> functions that create a new scope.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/image/ycbcr.go

    //	For 4:2:2, CStride == YStride/2 && len(Cb) == len(Cr) == len(Y)/2.
    //	For 4:2:0, CStride == YStride/2 && len(Cb) == len(Cr) == len(Y)/4.
    //	For 4:4:0, CStride == YStride/1 && len(Cb) == len(Cr) == len(Y)/2.
    //	For 4:1:1, CStride == YStride/4 && len(Cb) == len(Cr) == len(Y)/4.
    //	For 4:1:0, CStride == YStride/4 && len(Cb) == len(Cr) == len(Y)/8.
    type YCbCr struct {
    	Y, Cb, Cr      []uint8
    	YStride        int
    	CStride        int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. src/crypto/md5/md5block_arm.s

    	ROUND3(Rd, Ra, Rb, Rc,  8, 11, Rc1)
    	ROUND3(Rc, Rd, Ra, Rb, 11, 16, Rc2)
    	ROUND3(Rb, Rc, Rd, Ra, 14, 23, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND3(Ra, Rb, Rc, Rd,  1,	4, Rc0)
    	ROUND3(Rd, Ra, Rb, Rc,  4, 11, Rc1)
    	ROUND3(Rc, Rd, Ra, Rb,  7, 16, Rc2)
    	ROUND3(Rb, Rc, Rd, Ra, 10, 23, Rc3)
    
    	MOVM.IA.W (Rtable), [Rc0,Rc1,Rc2,Rc3]
    	ROUND3(Ra, Rb, Rc, Rd, 13,	4, Rc0)
    	ROUND3(Rd, Ra, Rb, Rc,  0, 11, Rc1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/tests/fuse_tpu_compile_and_execute_ops.mlir

      %7 = "tf.TPUExecute"(%4#0, %1, %program#2) {_producer_name = "UNKNOWN", device = "/TPU:2"} : (tensor<1x1xf32>, tensor<1x1xf32>, tensor<3x!tf_type.string>) -> tensor<1x1xf32>
      %8 = "tf.TPUExecute"(%4#1, %1, %program#3) {_producer_name = "UNKNOWN", device = "/TPU:3"} : (tensor<1x1xf32>, tensor<1x1xf32>, tensor<3x!tf_type.string>) -> tensor<1x1xf32>
      return %5 : tensor<1x1xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits_test.go

    				{PallocChunkPages / 2, 1, 1},
    				{PallocChunkPages/2 + 10, 1, 1},
    				{PallocChunkPages/2 - 1, 2, 1},
    				{PallocChunkPages / 4, PallocChunkPages / 4, 0},
    				{PallocChunkPages / 4, PallocChunkPages/4 + 1, 1},
    				{PallocChunkPages/4 + 1, PallocChunkPages / 2, PallocChunkPages/4 + 1},
    				{0, PallocChunkPages, PallocChunkPages / 2},
    			},
    		},
    		"OddBound": {
    			init: []BitRange{{0, 111}},
    			tests: []test{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	case 405:
    		return "405"
    	case 406:
    		return "406"
    	case 407:
    		return "407"
    	case 408:
    		return "408"
    	case 409:
    		return "409"
    	case 410:
    		return "410"
    	case 411:
    		return "411"
    	case 412:
    		return "412"
    	case 413:
    		return "413"
    	case 414:
    		return "414"
    	case 415:
    		return "415"
    	case 416:
    		return "416"
    	case 417:
    		return "417"
    	case 418:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  10. src/net/http/cookie.go

    }
    
    // sanitizeCookieValue produces a suitable cookie-value from v.
    // It receives a quoted bool indicating whether the value was originally
    // quoted.
    // https://tools.ietf.org/html/rfc6265#section-4.1.1
    //
    //	cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
    //	cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
    //	          ; US-ASCII characters excluding CTLs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top