Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Zr (0.41 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPSS

    00000330  1d 62 f0 3c ee 77 b5 4c  3a 40 ec 89 fc 97 ff a6  |.b.<.w.L:@......|
    00000340  34 13 8b bc 6b 83 92 e8  52 c5 c6 42 c9 25 ad 37  |4...k...R..B.%.7|
    00000350  41 e7 5a 52 d8 0f 7d fd  a8 9e 86 c6 1b b2 8b 50  |A.ZR..}........P|
    00000360  2a 1c 15 56 00 d8 a8 85  86 05 28 7f a1 3e ba f2  |*..V......(..>..|
    00000370  fe 92 07 c8 a4 4a 2a 5f  d1 53 82 09 9c 65 16 03  |.....J*_.S...e..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/runtime/asm_arm64.s

    	MOVD	gobuf_lr(R5), LR
    	MOVD	gobuf_ret(R5), R0
    	MOVD	gobuf_ctxt(R5), R26
    	MOVD	$0, gobuf_sp(R5)
    	MOVD	$0, gobuf_bp(R5)
    	MOVD	$0, gobuf_ret(R5)
    	MOVD	$0, gobuf_lr(R5)
    	MOVD	$0, gobuf_ctxt(R5)
    	CMP	ZR, ZR // set condition codes for == test, needed by stack split
    	MOVD	gobuf_pc(R5), R6
    	B	(R6)
    
    // void mcall(fn func(*g))
    // Switch to m->g0's stack, call fn(g).
    // Fn must never return. It should gogo(&g->sched)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    				if st, err := f.Stat(); err == nil {
    					sz = st.Size()
    				}
    				defer f.Close()
    				r = f
    			}
    			if strings.HasSuffix(file, ".zip") {
    				zr, err := zip.NewReader(r.(io.ReaderAt), sz)
    				if err != nil {
    					return err
    				}
    				for _, file := range zr.File {
    					if file.FileInfo().IsDir() {
    						continue
    					}
    					if strings.HasSuffix(file.Name, "xl.meta") {
    						r, err := file.Open()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo.go

    		return err
    	}
    
    	// Translate from zip file we have to zip file we want.
    	zr, err := zip.NewReader(f, size)
    	if err != nil {
    		return err
    	}
    
    	var files []modzip.File
    	if subdir != "" {
    		subdir += "/"
    	}
    	haveLICENSE := false
    	topPrefix := ""
    	for _, zf := range zr.File {
    		if topPrefix == "" {
    			i := strings.Index(zf.Name, "/")
    			if i < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64error.s

    	TLBI	PLDL1KEEP                                        // ERROR "illegal argument"
    	TLBI	VMALLE1IS, R0                                    // ERROR "extraneous register at operand 2"
    	TLBI	ALLE3OS, ZR                                      // ERROR "extraneous register at operand 2"
    	TLBI	VAE1IS                                           // ERROR "missing register at operand 2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/obj7.go

    	return end
    }
    
    func progedit(ctxt *obj.Link, p *obj.Prog, newprog obj.ProgAlloc) {
    	c := ctxt7{ctxt: ctxt, newprog: newprog}
    
    	p.From.Class = 0
    	p.To.Class = 0
    
    	// Previously we rewrote $0 to ZR, but we have now removed this change.
    	// In order to be compatible with some previous legal instruction formats,
    	// reserve the previous conversion for some specific instructions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_arm64.s

    	VMOV	H1, T3.H[0]
    ld1:
    	TBZ	$0, srcPtrLen, ld0
    	MOVB.W	-1(srcPtr), H0
    	VEXT	$15, T0.B16, ZERO.B16, T0.B16
    	VEXT	$15, T3.B16, ZERO.B16, T3.B16
    	VMOV	H0, T0.B[0]
    	VMOV	H1, T3.B[0]
    ld0:
    
    	MOVD	ZR, srcPtrLen
    	VEOR	KLAST.B16, T0.B16, T0.B16
    	VREV32	CTR.B16, B0.B16
    
    	AESE	K0.B16, B0.B16
    	AESMC	B0.B16, B0.B16
    	AESE	K1.B16, B0.B16
    	AESMC	B0.B16, B0.B16
    	AESE	K2.B16, B0.B16
    	AESMC	B0.B16, B0.B16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  8. cmd/testdata/xl-meta-merge.zip

    ädcœ€ ÏÂæ²y®"Qk`qoWQ"²oô¤ž¨b\åB}SªLI\:U5 C› õ ðÀkN˜ª§ ÿ° ?[T¯ > DKEuRó¦ kòu² HqÈ@isK9&|DBTË”³—_qV,##÷&- #£¯ ù ëfg 2!axGvEèåïVWŸù `M zX —ereKC~e«Míjeh÷¨j@ej;¡²vcH>mspGªAïë^fGLE¤òi{QióTpmâ]sn öÌ‘¯ 3V Vñ ä°B~QQ «ïEDyóÌÀ­ »úNd=þêcRôsÙ+`g°å }SolHO¢@wªå/sDqrG Zr„TQx GªMVaTfkô[ngª3û<G{ cZPKH $\m}„Wiß6Okª²3ñ Dce¼]xÕpÅèÔÿÜ)Yò²]Õâ ôM¾aR^G`hwf Dc~°ì-@m@oLï0ó ejrŠkì|KlAmbªßsery ¦ ö !WU 6c¼ /܈fã^E²{¨ÙaDskòIª-}jGhk¼ixÚiJ}VuIZxž¦x^KiÕc¾NñnvwI²1 ñAª^U¼in[Äãvh¢ C\qtO§ºdTÜRu®©£os\qlu2yTA³ì_{•mjK^kRèofÈ iTû 5è %Öu_o^²^eußY|}j...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top