Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for 0x7fff (0.06 sec)

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

    (AtomicAdd(64|32) ...) => (LoweredAtomicAdd(64|32) ...)
    
    // AtomicAnd8(ptr,val) => LoweredAtomicAnd32(ptr&^3, ^((uint8(val) ^ 0xff) << ((ptr & 3) * 8)))
    (AtomicAnd8 ptr val mem) =>
    	(LoweredAtomicAnd32 (ANDI <typ.Uintptr> [^3] ptr)
    		(NOT <typ.UInt32> (SLL <typ.UInt32> (XORI <typ.UInt32> [0xff] (ZeroExt8to32 val))
    			(SLLI <typ.UInt64> [3] (ANDI <typ.UInt64> [3] ptr)))) mem)
    
    (AtomicAnd32 ...) => (LoweredAtomicAnd32 ...)
    
    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/cmd/link/internal/ld/pe.go

    var dosstub = []uint8{
    	0x4d,
    	0x5a,
    	0x90,
    	0x00,
    	0x03,
    	0x00,
    	0x00,
    	0x00,
    	0x04,
    	0x00,
    	0x00,
    	0x00,
    	0xff,
    	0xff,
    	0x00,
    	0x00,
    	0x8b,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x40,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    	0x00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    // address ff02::1.
    func IPv6LinkLocalAllNodes() Addr { return AddrFrom16([16]byte{0: 0xff, 1: 0x02, 15: 0x01}) }
    
    // IPv6LinkLocalAllRouters returns the IPv6 link-local all routers multicast
    // address ff02::2.
    func IPv6LinkLocalAllRouters() Addr { return AddrFrom16([16]byte{0: 0xff, 1: 0x02, 15: 0x02}) }
    
    // IPv6Loopback returns the IPv6 loopback address ::1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top