Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 249 for int1 (0.04 sec)

  1. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

        /*
         * This trick allows us to avoid having separate states for "first four ints" and "all other
         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    				}
    			}
    		}
    	}
    
    	switch inst.Op {
    	case AAM, AAD:
    		if imm, ok := iargs[0].(Imm); ok {
    			if inst.DataSize == 32 {
    				iargs[0] = Imm(uint32(int8(imm)))
    			} else if inst.DataSize == 16 {
    				iargs[0] = Imm(uint16(int8(imm)))
    			}
    		}
    
    	case PUSH:
    		if imm, ok := iargs[0].(Imm); ok {
    			iargs[0] = Imm(uint32(imm))
    		}
    	}
    
    	for _, p := range inst.Prefix {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Crc32cHashFunction.java

        /*
         * This trick allows us to avoid having separate states for "first four ints" and "all other
         * four int chunks."  The state we want after the first four bytes is
         *
         * crc0 = ~int0
         * crc1 = int1
         * crc2 = int2
         * crc3 = int3
         *
         * ...so we set crc0 so that computeForWord(crc0) = -1 and xoring it with the first int
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-quant.mlir

      } : (tensor<2x2xf32>, tensor<f32>, tensor<i32>) -> tensor<2x2x!tf_type.qint8>
    
      // CHECK: %[[WHILE_RESULT:.*]]:2 = mhlo.while(%[[ARG0:.*]] = %[[INT0]], %[[ARG1:.*]] = %[[INT1]])
      // CHECK-SAME: tensor<2x2xi8>, tensor<2x2xi8>
    
      // CHECK: cond
    
      // CHECK: do
      // CHECK: mhlo.return %[[ARG0]], %[[ARG1]] : tensor<2x?xi8>, tensor<?x2xi8>
    
      %2:2 = "tf.WhileRegion"(%0, %1) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 01:25:29 UTC 2024
    - 37.3K bytes
    - Viewed (0)
  5. test/escape_reflect.go

    )
    
    var sink interface{}
    
    func typ(x int) any {
    	v := reflect.ValueOf(x) // ERROR "x does not escape"
    	return v.Type()
    }
    
    func kind(x int) reflect.Kind {
    	v := reflect.ValueOf(x) // ERROR "x does not escape"
    	return v.Kind()
    }
    
    func int1(x int) int {
    	v := reflect.ValueOf(x) // ERROR "x does not escape"
    	return int(v.Int())
    }
    
    func ptr(x *int) *int { // ERROR "leaking param: x to result ~r0 level=0"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/Ints.java

       * Returns the values from each provided array combined into a single array. For example, {@code
       * concat(new int[] {a, b}, new int[] {}, new int[] {c}} returns the array {@code {a, b, c}}.
       *
       * @param arrays zero or more {@code int} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static int[] concat(int[]... arrays) {
        int length = 0;
        for (int[] array : arrays) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    type XSocket struct {
    	Xso_len      uint32
    	Xso_so       uint32
    	So_type      int16
    	So_options   int16
    	So_linger    int16
    	So_state     int16
    	So_pcb       uint32
    	Xso_protocol int32
    	Xso_family   int32
    	So_qlen      int16
    	So_incqlen   int16
    	So_qlimit    int16
    	So_timeo     int16
    	So_error     uint16
    	So_pgid      int32
    	So_oobmark   uint32
    	So_rcv       XSockbuf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/arith_test.go

    		}
    		if want, got := int8(i)%int8(pow2[3]) == 0, divisible_int8_2to3(int8(i)); got != want {
    			t.Errorf("divisible_int8_2to3(%d) = %v want %v", i, got, want)
    		}
    		if want, got := int8(i)%int8(pow2[4]) == 0, divisible_int8_2to4(int8(i)); got != want {
    			t.Errorf("divisible_int8_2to4(%d) = %v want %v", i, got, want)
    		}
    		if want, got := int8(i)%int8(pow2[5]) == 0, divisible_int8_2to5(int8(i)); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  9. test/ken/convert.go

    		case ti8*100 + ti8:
    			i8 = int8(v); i8 = int8(i8); w = big(i8)
    		case ti8*100 + tu8:
    			i8 = int8(v); u8 = uint8(i8); w = big(u8)
    		case ti8*100 + ti16:
    			i8 = int8(v); i16 = int16(i8); w = big(i16)
    		case ti8*100 + tu16:
    			i8 = int8(v); u16 = uint16(i8); w = big(u16)
    		case ti8*100 + ti32:
    			i8 = int8(v); i32 = int32(i8); w = big(i32)
    		case ti8*100 + tu32:
    			i8 = int8(v); u32 = uint32(i8); w = big(u32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/dump/dump_test.go

    	tebw := embedwrap{teb, &teb}
    
    	testCases := []struct {
    		a    interface{}
    		want string
    	}{
    		{int8(93), "(int8) 93\n"},
    		{int16(93), "(int16) 93\n"},
    		{int32(93), "(int32) 93\n"},
    		{int64(93), "(int64) 93\n"},
    		{int(-93), "(int) -93\n"},
    		{int8(-93), "(int8) -93\n"},
    		{int16(-93), "(int16) -93\n"},
    		{int32(-93), "(int32) -93\n"},
    		{int64(-93), "(int64) -93\n"},
    		{uint(93), "(uint) 93\n"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top