Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for io16 (0.21 sec)

  1. test/codegen/bits.go

    	io32[1] = io32[1] & 0xF0000FFF
    	// ppc64x: -"RLWNM", MOVD, AND
    	io32[2] = io32[2] & 0xFFFF0002
    
    	var bigc uint32 = 0x12345678
    	// ppc64x: "ANDCC\t[$]22136"
    	io16[0] = io16[0] & uint16(bigc)
    
    	// ppc64x: "ANDCC\t[$]120"
    	io8[0] = io8[0] & uint8(bigc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/abiutils_test.go

    	//   (r1 [7]*s1, r2 float64, r3 int64)
    	i16 := types.Types[types.TINT16]
    	i64 := types.Types[types.TINT64]
    	f64 := types.Types[types.TFLOAT64]
    	s1 := mkstruct(i16, i16, i16)
    	ps1 := types.NewPtr(s1)
    	a7 := types.NewArray(ps1, 7)
    	ft := mkFuncType(s1, []*types.Type{ps1, a7, f64, i16, i16, i16},
    		[]*types.Type{a7, f64, i64})
    
    	exp := makeExpectedDump(`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. src/net/rawconn_windows_test.go

    			// and to classify the address family of the
    			// underlying socket by the bound address:
    			//
    			// - When IP.To16() != nil and IP.To4() == nil,
    			//   we can assume that the raw connection
    			//   consists of an IPv6 socket using only
    			//   IPv6 addresses.
    			//
    			// - When IP.To16() == nil and IP.To4() != nil,
    			//   the raw connection consists of an IPv4
    			//   socket using only IPv4 addresses.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 18 08:47:18 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  4. pkg/test/echo/server/endpoint/util.go

    	idleTimeout    = 5 * time.Second
    )
    
    func listenOnAddress(ip string, port int) (net.Listener, int, error) {
    	parsedIP := net.ParseIP(ip)
    	ipBind := "tcp"
    	if parsedIP != nil {
    		if parsedIP.To4() == nil && parsedIP.To16() != nil {
    			ipBind = "tcp6"
    		} else if parsedIP.To4() != nil {
    			ipBind = "tcp4"
    		}
    	}
    	ln, err := net.Listen(ipBind, net.JoinHostPort(ip, strconv.Itoa(port)))
    	if err != nil {
    		return nil, 0, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/add_functions_for_exported_names.mlir

                       tensor<i16> {tf_saved_model.index_path = [0]})
                        attributes {tf_saved_model.exported_names = ["a", "b", "c"]} {
        %0 = "tf.Const"() {value = dense<42> : tensor<i8>} : () -> tensor<i8>
        %1 = "tf.Const"() {value = dense<4242> : tensor<i16>} : () -> tensor<i16>
        return %0, %1: tensor<i8>, tensor<i16>
      }
    }
    
    // -----
    
    // CHECK-LABEL: @export_as_self
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 06 22:55:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training-16bits.mlir

      func.return %2 : tensor<1x1xf32>
    
    // CHECK: %[[q1:.*]] = "tfl.quantize"(%arg0) <{qtype = tensor<1x1x!quant.uniform<i16:f32, {{.*}}>>}> {volatile} : (tensor<1x1xf32>) -> tensor<1x1x!quant.uniform<i16:f32, {{.*}}>>
    // CHECK-NEXT: %[[dq1:.*]] = "tfl.dequantize"(%[[q1]]) : (tensor<1x1x!quant.uniform<i16:f32, {{.*}}>>) -> tensor<1x1xf32>
    // CHECK-NEXT: %[[sm:.*]] = "tfl.softmax"(%[[dq1]]) <{{{.*}}}> : (tensor<1x1xf32>) -> tensor<1x1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. src/net/platform_test.go

    	if !supportsIPv4() && ip.To4() != nil {
    		return false
    	}
    	if !supportsIPv6() && ip.To16() != nil && ip.To4() == nil {
    		return false
    	}
    	cip := ParseIP(client)
    	if cip != nil {
    		if !supportsIPv4() && cip.To4() != nil {
    			return false
    		}
    		if !supportsIPv6() && cip.To16() != nil && cip.To4() == nil {
    			return false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/net/rawconn_unix_test.go

    			// and to classify the address family of the
    			// underlying socket by the bound address:
    			//
    			// - When IP.To16() != nil and IP.To4() == nil,
    			//   we can assume that the raw connection
    			//   consists of an IPv6 socket using only
    			//   IPv6 addresses.
    			//
    			// - When IP.To16() == nil and IP.To4() != nil,
    			//   the raw connection consists of an IPv4
    			//   socket using only IPv4 addresses.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. test/intcvt.go

    func main() {
    	chki8(int8(i8), ci8&0xff-1<<8)
    	chki8(int8(i16), ci16&0xff)
    	chki8(int8(i32), ci32&0xff-1<<8)
    	chki8(int8(i64), ci64&0xff)
    	chki8(int8(u8), cu8&0xff-1<<8)
    	chki8(int8(u16), cu16&0xff)
    	chki8(int8(u32), cu32&0xff)
    	chki8(int8(u64), cu64&0xff)
    	//	chki8(int8(f32), 0)
    	//	chki8(int8(f64), 0)
    
    	chki16(int16(i8), ci8&0xffff-1<<16)
    	chki16(int16(i16), ci16&0xffff-1<<16)
    	chki16(int16(i32), ci32&0xffff-1<<16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  10. test/ken/convert.go

    		case ti16*100 + ti8:
    			i16 = int16(v); i8 = int8(i16); w = big(i8)
    		case ti16*100 + tu8:
    			i16 = int16(v); u8 = uint8(i16); w = big(u8)
    		case ti16*100 + ti16:
    			i16 = int16(v); i16 = int16(i16); w = big(i16)
    		case ti16*100 + tu16:
    			i16 = int16(v); u16 = uint16(i16); w = big(u16)
    		case ti16*100 + ti32:
    			i16 = int16(v); i32 = int32(i16); w = big(i32)
    		case ti16*100 + tu32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 14.9K bytes
    - Viewed (0)
Back to top