Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for 32x32 (0.03 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "SRDconst", argLength: 1, reg: gp11, asm: "SRD", aux: "Int64"},       // unsigned arg0 >> auxInt, 0 <= auxInt < 64, 64 bit width
    		{name: "SRWconst", argLength: 1, reg: gp11, asm: "SRW", aux: "Int64"},       // unsigned arg0 >> auxInt, 0 <= auxInt < 32, 32 bit width
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/crypto/internal/mlkem768/mlkem768.go

    	CiphertextSize       = k*encodingSize10 + encodingSize4
    	EncapsulationKeySize = encryptionKeySize
    	DecapsulationKeySize = decryptionKeySize + encryptionKeySize + 32 + 32
    	SharedKeySize        = 32
    	SeedSize             = 32 + 32
    )
    
    // A DecapsulationKey is the secret key used to decapsulate a shared key from a
    // ciphertext. It includes various precomputed values.
    type DecapsulationKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  3. cmd/encryption-v1.go

    	SSECustomerKeySize = 32
    
    	// SSEIVSize is the size of the IV data
    	SSEIVSize = 32 // 32 bytes
    
    	// SSEDAREPackageBlockSize - SSE dare package block size.
    	SSEDAREPackageBlockSize = 64 * 1024 // 64KiB bytes
    
    	// SSEDAREPackageMetaSize - SSE dare package meta padding bytes.
    	SSEDAREPackageMetaSize = 32 // 32 bytes
    
    )
    
    // KMSKeyID returns in AWS compatible KMS KeyID() format.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    class I32VectorElementsAttr<int len> : ElementsAttrBase<
      CPred<"$_self.isa<DenseIntElementsAttr>() &&"
          "$_self.cast<DenseIntElementsAttr>().getType()."
          "getElementType().isSignlessInteger(32)">,
      "32-bit int elements attribute of shape [" # len # "]"> {
    
      let storageType = [{ DenseIntElementsAttr }];
      let returnType = [{ DenseIntElementsAttr }];
    
      let constBuilderCall = "DenseElementsAttr::get("
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      // CHECK-NOT: tf.TensorListReserve
      // CHECK: tf.BroadcastTo
      // CHECK-SAME: tensor<10x32xf32>
      %tl1 = "tf.TensorListReserve"(%arg0, %max_size) : (tensor<*xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<32xf32>>>
      func.return
    }
    
    // -----
    
    // Tests that the pass reports error on unknown maximum size.
    
    func.func @main(%arg0: tensor<i32>) -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm64/asm.go

    			if target.IsWindows() && r.Add() != 0 {
    				if r.Siz() == 8 {
    					val = r.Add()
    				} else if target.IsBigEndian() {
    					val = int64(uint32(val)) | int64(r.Add())<<32
    				} else {
    					val = val>>32<<32 | int64(uint32(r.Add()))
    				}
    				return val, 1, true
    			}
    		}
    	}
    
    	switch rt := r.Type(); rt {
    	case objabi.R_ADDRARM64,
    		objabi.R_ARM64_PCREL_LDST8,
    		objabi.R_ARM64_PCREL_LDST16,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/arith_test.go

    }
    
    //go:noinline
    func lrot3_ssa(w uint32) uint32 {
    	// Want to be sure that a "rotate by 32" which
    	// is really 0 | (w >> 0) == w
    	// is correctly compiled.
    	return (w << 32) | (w >> (32 - 32))
    }
    
    func testLrot(t *testing.T) {
    	wantA, wantB, wantC, wantD := uint8(0xe1), uint16(0xe001),
    		uint32(0xe0000001), uint64(0xe000000000000001)
    	a, b, c, d := lrot1_ssa(0xf, 0xf, 0xf, 0xf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
Back to top