Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for sh32 (0.09 sec)

  1. src/encoding/gob/encoder_test.go

    		}
    	})
    
    	t.Run("int32", func(t *testing.T) {
    		var sink bytes.Buffer
    		enc := NewEncoder(&sink)
    		enc.Encode(s32)
    
    		dec := NewDecoder(&sink)
    		res := make([]int32, 9)
    		dec.Decode(&res)
    
    		if !reflect.DeepEqual(s32, res) {
    			t.Fatalf("EncodeIntSlice: expected %v, got %v", s32, res)
    		}
    	})
    
    	t.Run("int64", func(t *testing.T) {
    		var sink bytes.Buffer
    		enc := NewEncoder(&sink)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/math/bits/bits.go

    //
    // This function's execution time does not depend on the inputs.
    func Add(x, y, carry uint) (sum, carryOut uint) {
    	if UintSize == 32 {
    		s32, c32 := Add32(uint32(x), uint32(y), uint32(carry))
    		return uint(s32), uint(c32)
    	}
    	s64, c64 := Add64(uint64(x), uint64(y), uint64(carry))
    	return uint(s64), uint(c64)
    }
    
    // Add32 returns the sum with carry of x, y and carry: sum = x + y + carry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	for _, fp := range fpInst {
    		if inst.Op&^15 == fp.op {
    			// remove gnu syntax suffixes
    			op = strings.Replace(op, ".F32", "", -1)
    			op = strings.Replace(op, ".F64", "", -1)
    			op = strings.Replace(op, ".S32", "", -1)
    			op = strings.Replace(op, ".U32", "", -1)
    			op = strings.Replace(op, ".32", "", -1)
    			// compose op name
    			if fp.op == VLDR_EQ || fp.op == VSTR_EQ {
    				switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

          ConfigProto::Experimental::MLIR_BRIDGE_ROLLOUT_UNSPECIFIED);
    
      ASSERT_TRUE(compilation_result.ok());
      EXPECT_THAT(compilation_result,
                  ComputationProtoContains("element_type:.S32\n.*dimensions: 3"));
    }
    
    }  // namespace v2
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

          absl::Span<const int64_t> dims, int32_t min = -128, int32_t max = 127) {
        TF_ASSIGN_OR_RETURN(auto shape,
                            xla::ShapeUtil::MakeValidatedShape(xla::S32, dims));
        return xla::LiteralUtil::CreateLiteralWithGenerator<xla::S32, int32_t>(
            shape, [this, min, max](absl::Span<const int64_t> dims) -> int32_t {
              return absl::Uniform(bitgen_, min, max);
            });
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  6. src/crypto/x509/x509.go

    //		csor(3) algorithms(4) id-dsa-with-sha2(3) 2}
    //
    // RFC 5758 3.2 ECDSA Signature Algorithm
    //
    //	ecdsa-with-SHA256 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    //		us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 2 }
    //
    //	ecdsa-with-SHA384 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
    //		us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 3 }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/reloctype.go

    	// adrp followed by a LD16 or ST16 instruction.
    	R_ARM64_PCREL_LDST16
    
    	// R_ARM64_PCREL_LDST32 resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by a LD32 or ST32 instruction.
    	R_ARM64_PCREL_LDST32
    
    	// R_ARM64_PCREL_LDST64 resolves a PC-relative addresses instruction sequence, usually an
    	// adrp followed by a LD64 or ST64 instruction.
    	R_ARM64_PCREL_LDST64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa.go

    // produces randomized signatures.
    func mixedCSPRNG(rand io.Reader, priv *PrivateKey, hash []byte) (io.Reader, error) {
    	// This implementation derives the nonce from an AES-CTR CSPRNG keyed by:
    	//
    	//    SHA2-512(priv.D || entropy || hash)[:32]
    	//
    	// The CSPRNG key is indifferentiable from a random oracle as shown in
    	// [Coron], the AES-CTR stream is indifferentiable from a random oracle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen.cc

        case xla::PRED:
          *str = "bool";
          break;
        case xla::S8:
          *str = "tensorflow::int8";
          break;
        case xla::S16:
          *str = "tensorflow::int16";
          break;
        case xla::S32:
          *str = "tensorflow::int32";
          break;
        case xla::S64:
          *str = "int64_t";
          break;
        case xla::U8:
          *str = "tensorflow::uint8";
          break;
        case xla::U16:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/obj9.go

    		// If prefixed instructions are supported, a 34b signed constant can be generated by one pli instruction.
    		isS34 := pfxEnabled && (p.From.Offset<<30)>>30 == p.From.Offset
    
    		// Try converting MOVD $const,Rx into ADDIS/ORIS $s32>>16,R0,Rx
    		switch {
    		case isS32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    			p.As = AADDIS
    			p.From.Offset >>= 16
    			p.Reg = REG_R0
    
    		case isU32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top