Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Gprs (0.05 sec)

  1. src/runtime/export_debug_ppc64le_test.go

    //
    // Both src and dst must be non-nil.
    func storeRegArgs(dst *sigcontext, src *abi.RegArgs) {
    	// Gprs R3..R10, R14..R17 are used to pass int arguments in registers on PPC64
    	for i := 0; i < 12; i++ {
    		if i > 7 {
    			dst.gp_regs[i+6] = uint64(src.Ints[i])
    		} else {
    			dst.gp_regs[i+3] = uint64(src.Ints[i])
    		}
    	}
    	// Fprs F1..F13 are used to pass float arguments in registers on PPC64
    	for i := 0; i < 12; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:33:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_s390x.go

    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Psw                      PtracePsw
    	Gprs                     [16]uint64
    	Acrs                     [16]uint32
    	Orig_gpr2                uint64
    	Fp_regs                  PtraceFpregs
    	Per_info                 PtracePer
    	Ieee_instruction_pointer uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    	Psw                      PtracePsw
    	Gprs                     [16]uint64
    	Acrs                     [16]uint32
    	Orig_gpr2                uint64
    	Fp_regs                  PtraceFpregs
    	Per_info                 PtracePer
    	Ieee_instruction_pointer uint64
    }
    
    type PtracePsw struct {
    	Mask uint64
    	Addr uint64
    }
    
    type PtraceFpregs struct {
    	Fpc  uint32
    	Fprs [16]float64
    }
    
    type PtracePer struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/a.out.go

    	NFREG  = 16 // number of floating point registers
    )
    
    const (
    	// General purpose registers (GPRs).
    	REG_R0 = obj.RBaseS390X + iota
    	REG_R1
    	REG_R2
    	REG_R3
    	REG_R4
    	REG_R5
    	REG_R6
    	REG_R7
    	REG_R8
    	REG_R9
    	REG_R10
    	REG_R11
    	REG_R12
    	REG_R13
    	REG_R14
    	REG_R15
    
    	// Floating point registers (FPRs).
    	REG_F0
    	REG_F1
    	REG_F2
    	REG_F3
    	REG_F4
    	REG_F5
    	REG_F6
    	REG_F7
    	REG_F8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_REGHSET              = 22 // Read all GPRHs
    	PT_ATTACH               = 30 // Attach to a process
    	PT_DETACH               = 31 // Detach from a process
    	PT_REGSET               = 32 // Read all GPRs
    	PT_REATTACH             = 33 // Reattach to a process
    	PT_LDINFO               = 34 // Read loader info
    	PT_MULTI                = 35 // Multi process mode
    	PT_LD64INFO             = 36 // RMODE64 Info Area
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. build/pause/CHANGELOG.md

    # 3.4
    
    * Support for Windows container images (OS Versions: 1809, 1903, 1909, 2004) was added. ([#91452](https://prs.k8s.io/91452), [@claudiubelu](https://github.com/claudiubelu))
    
    # 3.3
    
    * update debian-base version to v2.1.0 ([#90665](https://prs.k8s.io/90665), [@justaugustus]
    
    # 3.2
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. pkg/kubelet/status/state/state_mem.go

    	return resizeStatus, ok
    }
    
    func (s *stateMemory) GetResizeStatus() PodResizeStatus {
    	s.RLock()
    	defer s.RUnlock()
    	prs := make(map[string]v1.PodResizeStatus)
    	for k, v := range s.podResizeStatus {
    		prs[k] = v
    	}
    	return prs
    }
    
    func (s *stateMemory) SetContainerResourceAllocation(podUID string, containerName string, alloc v1.ResourceList) error {
    	s.Lock()
    	defer s.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. .github/workflows/stale-issues.yml

              #Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
              #Limit the No. of API calls in one run default value is 30.
              operations-per-run: 1000
              days-before-issue-stale: 7
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

            }
            val prs: MutableList<GitHubPullRequest> = mutableListOf()
            (1..10).forEach { page ->
                val prPage = getMergedContributorPullRequests(page)
                prs.addAll(prPage)
                if (prPage.size < pageSize) {
                    return@forEach
                }
            }
            return prs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 16 05:03:11 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  10. .github/workflows/issue-manager.yml

                  "answered": {
                    "delay": 864000,
                    "message": "Assuming the original need was handled, this will be automatically closed now. But feel free to add more comments or create new issues or PRs."
                  },
                  "changes-requested": {
                    "delay": 2628000,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 30 18:46:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top