Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Ifindex (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type PacketMreq struct {
    	Ifindex int32
    	Type    uint16
    	Alen    uint16
    	Address [8]uint8
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  int32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: arith.divsi {{.*}} : index
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
      // CHECK: mhlo.real_dynamic_slice {{.*}} : (tensor<4x?x4xf32>, tensor<3xindex>, tensor<3xindex>, tensor<3xindex>) -> tensor<4x?x4xf32>
      // CHECK: muli {{.*}} : index
      // CHECK: muli {{.*}} : index
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Ifindex uint32
    pkg syscall (darwin-arm64), type Inet4Pktinfo struct, Spec_dst [4]uint8
    pkg syscall (darwin-arm64), type Inet6Pktinfo struct
    pkg syscall (darwin-arm64), type Inet6Pktinfo struct, Addr [16]uint8
    pkg syscall (darwin-arm64), type Inet6Pktinfo struct, Ifindex uint32
    pkg syscall (darwin-arm64), type InterfaceAddrMessage //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct
    pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct, Addr [16]uint8
    pkg syscall (netbsd-arm64-cgo), type Inet6Pktinfo struct, Ifindex uint32
    pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct
    pkg syscall (netbsd-arm64-cgo), type InterfaceAddrMessage struct, Data []uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go

    	c0 := s[0]
    	if c0 < 0x80 { // is ASCII
    		return nfcValues[c0]
    	}
    	i := nfcIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 385.8K bytes
    - Viewed (0)
Back to top