Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 86 of 86 for 0xffff (0.11 sec)

  1. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // or -1 based on the sign bit of x.
    //
    // We implement this by performing the max shift (-1) if y > the maximum value.
    //
    // We OR (uint64(y < 64) - 1) into y before passing it to SRA. This leaves
    // us with -1 (0xffff...) if y >= 64.  Similarly, we OR (uint64(y < 32) - 1) into y
    // before passing it to SRAW.
    //
    // We don't need to sign-extend the OR result, as it will be at minimum 8 bits,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  2. src/cmd/internal/dwarf/dwarf.go

    			ctxt.AddInt(s, 1, int64(1+ctxt.PtrSize()))
    			ctxt.AddInt(s, 1, DW_OP_addr)
    			ctxt.AddAddress(s, data, 0)
    			break
    		}
    
    		value &= 0xff
    		ctxt.AddInt(s, 1, value)
    		p := data.([]byte)[:value]
    		ctxt.AddBytes(s, p)
    
    	case DW_FORM_block2: // block
    		value &= 0xffff
    
    		ctxt.AddInt(s, 2, value)
    		p := data.([]byte)[:value]
    		ctxt.AddBytes(s, p)
    
    	case DW_FORM_block4: // block
    		value &= 0xffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    	{0x0F, []byte{0x0F}},
    	{0xFF, []byte{0xFF, 0xFF}},
    	{0xFFFF, []byte{0xFE, 0xFF, 0xFF}},
    	{0xFFFFFF, []byte{0xFD, 0xFF, 0xFF, 0xFF}},
    	{0xFFFFFFFF, []byte{0xFC, 0xFF, 0xFF, 0xFF, 0xFF}},
    	{0xFFFFFFFFFF, []byte{0xFB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}},
    	{0xFFFFFFFFFFFF, []byte{0xFA, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}},
    	{0xFFFFFFFFFFFFFF, []byte{0xF9, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    	// https://datatracker.ietf.org/doc/html/rfc4291#section-2.7.1
    	if ip.Is6() && !ip.Is4In6() {
    		return ip.v6u16(0)&0xff0f == 0xff01
    	}
    	return false // zero value
    }
    
    // IsLinkLocalMulticast reports whether ip is a link-local multicast address.
    func (ip Addr) IsLinkLocalMulticast() bool {
    	if ip.Is4In6() {
    		ip = ip.Unmap()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/math/erfc_s390x.s

    	FMOVD	x+0(FP), F0
    	MOVD	$·erfcrodataL38<>+0(SB), R9
    	FMOVD	F0, F2
    	SRAD	$48, R1
    	MOVH	R1, R2
    	ANDW	$0x7FFF, R1
    	MOVH	$Pos15, R3
    	CMPW	R1, R3
    	BGT	usego
    	MOVH	$0x3FFF, R3
    	MOVW	R1, R6
    	MOVW	R3, R7
    	CMPBGT	R6, R7, L2
    	MOVH	$0x3FEF, R3
    	MOVW	R3, R7
    	CMPBGT	R6, R7, L3
    	MOVH	$0x2FFF, R2
    	MOVW	R2, R7
    	CMPBGT	R6, R7, L4
    	FMOVD	792(R9), F0
    	WFSDB	V2, V0, V2
    	FMOVD	F2, ret+8(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 14.4K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/armerror.s

    	SWPW.S	R1, (R2), R3       // ERROR "invalid .S suffix"
    	MOVF.S	(R0), F1           // ERROR "invalid .S suffix"
    	MOVF.S	F9, (R4)           // ERROR "invalid .S suffix"
    	MOVF.S	0xfff0(R0), F1     // ERROR "invalid .S suffix"
    	MOVF.S	F9, 0xfff0(R4)     // ERROR "invalid .S suffix"
    	ADDF.S	F1, F2, F3         // ERROR "invalid .S suffix"
    	SUBD.U	F1, F2             // ERROR "invalid .U suffix"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
Back to top