Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fit (0.14 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VADDPD 8128(DX), Z28, Z29       // 62619d40586a7f
    	VADDPD 8128(DX)(AX*2), Z0, Z29  // 6261fd48586c427f
    	VADDPD 8128(DX)(AX*2), Z29, Z1  // 62f19540584c427f
    	// EVEX: compressed displacement that does not fit into 8bits.
    	VADDPD 2048(DX), X29, X0        // 62f19500588200080000
    	VADDPD 2048(DX), X1, X29        // 6261f50858aa00080000
    	VADDPD 2048(DX), X29, X28       // 6261950058a200080000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    		(*Reader).ReadBytes,
    		(*Reader).ReadSlice,
    		func(r *Reader, delim byte) ([]byte, error) {
    			data, err := r.ReadString(delim)
    			return []byte(data), err
    		},
    		// ReadLine doesn't fit the data/pattern easily
    		// so we leave it out. It should be covered via
    		// the ReadSlice test since ReadLine simply calls
    		// ReadSlice, and it's that function that handles
    		// the last byte.
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64.s

    	FMOVD	1(R1), F2 // 221040fc
    	FMOVD	8(R1), F2 // 220440fd
    	FMOVQ	32(R5), F2 // a208c03d
    	FMOVQ	65520(R10), F10 // 4afdff3d
    	FMOVQ	64(RSP), F11    // eb13c03d
    
    // medium offsets that either fit a single instruction or can use add+ldr/str
    	MOVD -4095(R17), R3                        // 3bfe3fd1630340f9
    	MOVD -391(R17), R3                         // 3b1e06d1630340f9
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
Back to top