Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Dst_len (0.17 sec)

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

    	Scope     uint8
    	Index     uint32
    }
    
    type IfaCacheinfo struct {
    	Prefered uint32
    	Valid    uint32
    	Cstamp   uint32
    	Tstamp   uint32
    }
    
    type RtMsg struct {
    	Family   uint8
    	Dst_len  uint8
    	Src_len  uint8
    	Tos      uint8
    	Table    uint8
    	Protocol uint8
    	Scope    uint8
    	Type     uint8
    	Flags    uint32
    }
    
    type RtNexthop struct {
    	Len     uint16
    	Flags   uint8
    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/c/experimental/ops/gen/cpp/views/attr_view.cc

        case AttrValue::kPlaceholder:
          LOG(ERROR) << "Unexpected non-primitive attribute value.";
          return "/* ERROR */";
      }
    }
    
    string AttrView::VariableStrLen() const {
      return Call("strlen", {VariableName()});
    }
    
    string AttrView::VariableSpanData() const {
      return Call(VariableName(), "data", {}, ".");
    }
    
    string AttrView::VariableSpanLen() const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/runtime/mbarrier.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname typedslicecopy
    //go:nosplit
    func typedslicecopy(typ *_type, dstPtr unsafe.Pointer, dstLen int, srcPtr unsafe.Pointer, srcLen int) int {
    	n := dstLen
    	if n > srcLen {
    		n = srcLen
    	}
    	if n == 0 {
    		return 0
    	}
    
    	// The compiler emits calls to typedslicecopy before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    }
    
    // Convert rfft to rfft2d.
    // The transformation pattern looks like below:
    //
    //    input     fft_len
    //     \      /
    //     rfft
    //
    //     ||
    //     \/
    //
    //   input       fft_len
    //    \            /
    //   expand_dim    concat with [1] at the front
    //      \         /
    //     rfft_2d
    //       |
    //     squeeze
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    		newCtx.P = pid
    	}
    	// If we're advancing through ProcSyscallAbandoned *but* oldState is running then we've
    	// promoted it to ProcSyscall. However, because it's ProcSyscallAbandoned, we know this
    	// P is about to get stolen and its status very likely isn't being emitted by the same
    	// thread it was bound to. Since this status is Running -> Running and Running is binding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      // CHECK: return %[[RES]]
    }
    
    // CHECK-LABEL: lower_rfft_to_rfft2d
    func.func @lower_rfft_to_rfft2d(%input: tensor<10x20x30xf32>, %fft_len: tensor<1xi32>) -> tensor<10x20x30xcomplex<f64>> {
      %0 = "tf.RFFT"(%input, %fft_len) : (tensor<10x20x30xf32>, tensor<1xi32>) -> tensor<10x20x30xcomplex<f64>>
      func.return %0: tensor<10x20x30xcomplex<f64>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    //
    //go:yeswritebarrierrec
    func allocm(pp *p, fn func(), id int64) *m {
    	allocmLock.rlock()
    
    	// The caller owns pp, but we may borrow (i.e., acquirep) it. We must
    	// disable preemption to ensure it is not stolen, which would make the
    	// caller lose ownership.
    	acquirem()
    
    	gp := getg()
    	if gp.m.p == 0 {
    		acquirep(pp) // temporarily borrow p for mallocs in this function
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	convertSecurityDescriptorToStringSecurityDescriptor(sd *SECURITY_DESCRIPTOR, revision uint32, securityInformation SECURITY_INFORMATION, str **uint16, strLen *uint32) (err error) = advapi32.ConvertSecurityDescriptorToStringSecurityDescriptorW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r1, _, e1 := syscall.Syscall6(procConvertSecurityDescriptorToStringSecurityDescriptorW.Addr(), 5, uintptr(unsafe.Pointer(sd)), uintptr(revision), uintptr(securityInformation), uintptr(unsafe.Pointer(str)), uintptr(unsafe.Pointer(strLen)), 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top