Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for Zr (0.13 sec)

  1. src/internal/runtime/syscall/asm_linux_arm64.s

    	MOVD	a4+32(FP), R3
    	MOVD	a5+40(FP), R4
    	MOVD	a6+48(FP), R5
    	SVC
    	CMN	$4095, R0
    	BCC	ok
    	MOVD	$-1, R4
    	MOVD	R4, r1+56(FP)
    	MOVD	ZR, r2+64(FP)
    	NEG	R0, R0
    	MOVD	R0, errno+72(FP)
    	RET
    ok:
    	MOVD	R0, r1+56(FP)
    	MOVD	R1, r2+64(FP)
    	MOVD	ZR, errno+72(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 645 bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/testdata/ascii.json

    {"Action":"output","Test":"TestAscii","Output":"    i can eat glass, and it doesn't hurt me. i can eat glass, and it doesn't hurt me.\n"}
    {"Action":"output","Test":"TestAscii","Output":"    V PNA RNG TYNFF, NAQ VG QBRFA'G UHEG ZR. V PNA RNG TYNFF, NAQ VG QBRFA'G UHEG ZR.\n"}
    {"Action":"pass","Test":"TestAscii"}
    {"Action":"output","Output":"PASS\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 836 bytes
    - Viewed (0)
  3. test/fixedbugs/issue11656.dir/issue11656.go

    	case "arm":
    		binary.LittleEndian.PutUint32(ill[0:4], 0xe3a00000) // MOVW $0, R0
    		binary.LittleEndian.PutUint32(ill[4:8], 0xe5800000) // MOVW R0, (R0)
    	case "arm64":
    		binary.LittleEndian.PutUint32(ill, 0xf90003ff) // MOVD ZR, (ZR)
    	case "ppc64":
    		binary.BigEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    	case "ppc64le":
    		binary.LittleEndian.PutUint32(ill, 0xf8000000) // MOVD R0, (R0)
    	case "mips", "mips64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 15:28:40 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/compress/flate/inflate_test.go

    		{"\xf2H\xcd", "He"},
    		{"\xf2H͙0a\u0084\t", "Hel\x90\x90\x90\x90\x90"},
    		{"\xf2H͙0a\u0084\t\x00", "Hel\x90\x90\x90\x90\x90"},
    	}
    
    	for i, v := range vectors {
    		r := strings.NewReader(v.input)
    		zr := NewReader(r)
    		b, err := io.ReadAll(zr)
    		if err != io.ErrUnexpectedEOF {
    			t.Errorf("test %d, error mismatch: got %v, want io.ErrUnexpectedEOF", i, err)
    		}
    		if string(b) != v.output {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:23:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/runtime/mkduff.go

    	fmt.Fprintln(w, "\tRET")
    }
    
    func zeroARM64(w io.Writer) {
    	// ZR: always zero
    	// R20: ptr to memory to be zeroed
    	// On return, R20 points to the last zeroed dword.
    	fmt.Fprintln(w, "TEXT runtime·duffzero<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-0")
    	for i := 0; i < 63; i++ {
    		fmt.Fprintln(w, "\tSTP.P\t(ZR, ZR), 16(R20)")
    	}
    	fmt.Fprintln(w, "\tSTP\t(ZR, ZR), (R20)")
    	fmt.Fprintln(w, "\tRET")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:21 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. docs/debugging/healing-bin/main.go

    			f, err := os.Open(file)
    			if err != nil {
    				return err
    			}
    			if st, err := f.Stat(); err == nil {
    				sz = st.Size()
    			}
    			defer f.Close()
    			zr, err := zip.NewReader(f, sz)
    			if err != nil {
    				return err
    			}
    			for _, file := range zr.File {
    				if !file.FileInfo().IsDir() && strings.HasSuffix(file.Name, ".healing.bin") {
    					r, err := file.Open()
    					if err != nil {
    						return err
    					}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. src/image/geom.go

    	return r
    }
    
    // ColorModel implements the [Image] interface.
    func (r Rectangle) ColorModel() color.Model {
    	return color.Alpha16Model
    }
    
    // ZR is the zero [Rectangle].
    //
    // Deprecated: Use a literal [image.Rectangle] instead.
    var ZR Rectangle
    
    // Rect is shorthand for [Rectangle]{Pt(x0, y0), [Pt](x1, y1)}. The returned
    // rectangle has minimum and maximum coordinates swapped if necessary so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue10320.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 10320: 7g failed to compile a program because it attempted
    // to use ZR as register. Other programs compiled but failed to
    // execute correctly because they clobbered the g register.
    
    package main
    
    func main() {
    	var x00, x01, x02, x03, x04, x05, x06, x07, x08, x09 int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 889 bytes
    - Viewed (0)
  9. src/syscall/asm_linux_arm64.s

    	MOVD	trap+0(FP), R8	// syscall entry
    	SVC
    	CMN	$4095, R0
    	BCC	ok
    	MOVD	$-1, R4
    	MOVD	R4, r1+32(FP)	// r1
    	NEG	R0, R0
    	MOVD	R0, err+40(FP)	// errno
    	RET
    ok:
    	MOVD	R0, r1+32(FP)	// r1
    	MOVD	ZR, err+40(FP)	// errno
    	RET
    
    // func rawSyscallNoError(trap uintptr, a1, a2, a3 uintptr) (r1, r2 uintptr);
    TEXT ·rawSyscallNoError(SB),NOSPLIT,$0-48
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 916 bytes
    - Viewed (0)
  10. src/math/exp_arm64.s

    normal:
    	ORR	R5<<52, R2, R0
    	FMOVD	R0, F0
    	FMULD	F1, F0		// return m * x
    	FMOVD	F0, ret+8(FP)
    	RET
    nearzero:
    	FADDD	F1, F0
    isNaN:
    	FMOVD	F0, ret+8(FP)
    	RET
    underflow:
    	MOVD	ZR, ret+8(FP)
    	RET
    overflow:
    	MOVD	$PosInf, R0
    	MOVD	R0, ret+8(FP)
    	RET
    
    
    // Exp2 returns 2**x, the base-2 exponential of x.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 5.4K bytes
    - Viewed (0)
Back to top