Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for gp_t (0.04 sec)

  1. src/runtime/signal_freebsd_riscv64.go

    func (c *sigctxt) s9() uint64  { return c.regs().mc_gpregs.gp_s[9] }
    func (c *sigctxt) s10() uint64 { return c.regs().mc_gpregs.gp_s[10] }
    func (c *sigctxt) s11() uint64 { return c.regs().mc_gpregs.gp_s[11] }
    func (c *sigctxt) t3() uint64  { return c.regs().mc_gpregs.gp_t[3] }
    func (c *sigctxt) t4() uint64  { return c.regs().mc_gpregs.gp_t[4] }
    func (c *sigctxt) t5() uint64  { return c.regs().mc_gpregs.gp_t[5] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:17:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/defs_freebsd_riscv64.go

    	si_status int32
    	si_addr   uint64
    	si_value  [8]byte
    	_reason   [40]byte
    }
    
    type gpregs struct {
    	gp_ra      uint64
    	gp_sp      uint64
    	gp_gp      uint64
    	gp_tp      uint64
    	gp_t       [7]uint64
    	gp_s       [12]uint64
    	gp_a       [8]uint64
    	gp_sepc    uint64
    	gp_sstatus uint64
    }
    
    type fpregs struct {
    	fp_x     [64]uint64 // actually __uint64_t fp_x[32][2]
    	fp_fcsr  uint64
    	fp_flags int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/runtime/signal_freebsd_arm64.go

    func (c *sigctxt) r7() uint64  { return c.regs().mc_gpregs.gp_x[7] }
    func (c *sigctxt) r8() uint64  { return c.regs().mc_gpregs.gp_x[8] }
    func (c *sigctxt) r9() uint64  { return c.regs().mc_gpregs.gp_x[9] }
    func (c *sigctxt) r10() uint64 { return c.regs().mc_gpregs.gp_x[10] }
    func (c *sigctxt) r11() uint64 { return c.regs().mc_gpregs.gp_x[11] }
    func (c *sigctxt) r12() uint64 { return c.regs().mc_gpregs.gp_x[12] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:20:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

    // attribute.
    // alpha <- learning_rate * sqrt(1 - beta2^t) / (1 - beta1^t)
    // m_t <- beta1 * m_{t-1} + (1 - beta1) * g_t
    // v_t <- beta2 * v_{t-1} + (1 - beta2) * g_t * g_t
    // variable <- variable - (alpha * (m_t * beta1 + (1 - beta1) * g_t) /
    //                        (sqrt(v_t) + epsilon))
    def DecomposeResourceApplyAdamNesterov :
      Pattern<
        (TF_ResourceApplyAdamOp:$src_op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/runtime/defs_freebsd_arm64.go

    	si_signo  int32
    	si_errno  int32
    	si_code   int32
    	si_pid    int32
    	si_uid    uint32
    	si_status int32
    	si_addr   uint64
    	si_value  [8]byte
    	_reason   [40]byte
    }
    
    type gpregs struct {
    	gp_x    [30]uint64
    	gp_lr   uint64
    	gp_sp   uint64
    	gp_elr  uint64
    	gp_spsr uint32
    	gp_pad  int32
    }
    
    type fpregs struct {
    	fp_q     [64]uint64 // actually [32]uint128
    	fp_sr    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/path/filepath/path_windows_test.go

    		"$ErrorActionPreference = \"Stop\"",
    		fmt.Sprintf("$vhd = New-VHD -Path %q -SizeBytes 3MB -Fixed", vhd),
    		"$vhd | Mount-VHD",
    		fmt.Sprintf("$vhd = Get-VHD %q", vhd),
    		"$vhd | Get-Disk | Initialize-Disk -PartitionStyle GPT",
    		"$part = $vhd | Get-Disk | New-Partition -UseMaximumSize -AssignDriveLetter:$false",
    		"$vol = $part | Format-Volume -FileSystem NTFS",
    		args,
    	}, "\n")
    
    	err := os.WriteFile(script, []byte(cmd), 0666)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.22.md

    - Feat: change parittion style to GPT on Windows ([#101412](https://github.com/kubernetes/kubernetes/pull/101412), [@andyzhangx](https://github.com/andyzhangx)) [SIG Storage and Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top