Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 251 for cpsr (0.07 sec)

  1. src/runtime/defs_linux_arm.go

    	r7            uint32
    	r8            uint32
    	r9            uint32
    	r10           uint32
    	fp            uint32
    	ip            uint32
    	sp            uint32
    	lr            uint32
    	pc            uint32
    	cpsr          uint32
    	fault_address uint32
    }
    
    type ucontext struct {
    	uc_flags    uint32
    	uc_link     *ucontext
    	uc_stack    stackt
    	uc_mcontext sigcontext
    	uc_sigmask  uint32
    	__unused    [31]int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/runtime/defs_darwin_arm64.go

    	lr    uint64     // link register, x30
    	sp    uint64     // stack pointer, x31
    	pc    uint64     // program counter
    	cpsr  uint32     // current program status register
    	__pad uint32
    }
    
    type neonstate64 struct {
    	v    [64]uint64 // actually [32]uint128
    	fpsr uint32
    	fpcr uint32
    }
    
    type mcontext64 struct {
    	es exceptionstate64
    	ss regs64
    	ns neonstate64
    }
    
    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/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    	Value  [4]byte
    	_      [32]byte
    }
    
    type Sigset_t struct {
    	Val [4]uint32
    }
    
    type Reg struct {
    	R    [13]uint32
    	Sp   uint32
    	Lr   uint32
    	Pc   uint32
    	Cpsr uint32
    }
    
    type FpReg struct {
    	Fpsr uint32
    	Fpr  [8]FpExtendedPrecision
    }
    
    type FpExtendedPrecision struct {
    	Exponent    uint32
    	Mantissa_hi uint32
    	Mantissa_lo uint32
    }
    
    type PtraceIoDesc struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. src/runtime/mkpreempt.go

    		if i == 10 {
    			continue // R10 is g register, no need to save/restore
    		}
    		l.add("MOVW", reg, 4)
    	}
    	// Add flag register.
    	l.addSpecial(
    		"MOVW CPSR, R0\nMOVW R0, %d(R13)",
    		"MOVW %d(R13), R0\nMOVW R0, CPSR",
    		4)
    
    	// Add floating point registers F0-F15 and flag register.
    	var lfp = layout{stack: l.stack, sp: "R13"}
    	lfp.addSpecial(
    		"MOVW FPCR, R0\nMOVW R0, %d(R13)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm.s

    	MOVW	CPSR, R1                                          // 00100fe1
    	MOVW	R1, CPSR                                          // 01f02ce1
    	MOVW	$0xff, CPSR          // MOVW $255, CPSR           // fff02ce3
    	MOVW	$0xff000000, CPSR    // MOVW $4278190080, CPSR    // fff42ce3
    	MOVW	FPSR, R9                                          // 109af1ee
    	MOVW	FPSR, g                                           // 10aaf1ee
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  6. hack/testdata/auth/testuser.csr

    # this is a test-only certificate request that is used in integration
    # tests to test certificate based auth.
    # generated with 'openssl req -out testuser.csr -key testuser.key -new -sha256'
    # then skipping all the options except for setting CN to testuser
    -----BEGIN CERTIFICATE REQUEST-----
    MIICWDCCAUACAQAwEzERMA8GA1UEAwwIdGVzdHVzZXIwggEiMA0GCSqGSIb3DQEB
    AQUAA4IBDwAwggEKAoIBAQC0MWVzF3QC92dQSzA/tBla3okdNkSNyd+SbnzFNxIG
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 21:54:32 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. releasenotes/notes/limit-csr-clusterrole.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** check to limit the clusterrole for k8s CSR permissions for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:22 UTC 2023
    - 272 bytes
    - Viewed (0)
  8. hack/testdata/csr.yml

    David Eads <******@****.***> 1618841197 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 14:06:37 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/testdata/client.csr.json

    David Eads <******@****.***> 1567691999 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 25 bytes
    - Viewed (0)
  10. pkg/controller/certificates/signer/testdata/kubelet.csr

    Mike Danese <******@****.***> 1494279885 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 22:25:58 UTC 2017
    - 408 bytes
    - Viewed (0)
Back to top