Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for 0xffff (0.09 sec)

  1. src/math/big/nat_test.go

    	{"375", "249", "388", "175"},
    	{"375", "18446744073709551801", "388", "175"},
    	{"0", "0x40000000000000", "0x200", "0"},
    	{"0xeffffff900002f00", "0x40000000000000", "0x200", "0"},
    	{"5", "1435700818", "72", "49"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/runtime/debuglog.go

    	}
    }
    
    //go:nosplit
    func (l *debugLogWriter) writeFrameAt(pos, size uint64) bool {
    	l.data.b[pos%uint64(len(l.data.b))] = uint8(size)
    	l.data.b[(pos+1)%uint64(len(l.data.b))] = uint8(size >> 8)
    	return size <= 0xFFFF
    }
    
    //go:nosplit
    func (l *debugLogWriter) writeSync(tick, nano uint64) {
    	l.tick, l.nano = tick, nano
    	l.ensure(debugLogHeaderSize)
    	l.writeFrameAt(l.write, 0)
    	l.write += debugLogHeaderSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	SOCK_CLOEXEC                     = 0x400000
    	SOCK_DGRAM                       = 0x2
    	SOCK_NONBLOCK                    = 0x4000
    	SOCK_STREAM                      = 0x1
    	SOL_SOCKET                       = 0xffff
    	SO_ACCEPTCONN                    = 0x8000
    	SO_ATTACH_BPF                    = 0x34
    	SO_ATTACH_REUSEPORT_CBPF         = 0x35
    	SO_ATTACH_REUSEPORT_EBPF         = 0x36
    	SO_BINDTODEVICE                  = 0xd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm64/asm.go

    				xadd := uint32(xadd)
    				o0 |= (xadd&3)<<29 | (xadd&0xffffc)<<3
    				switch rt {
    				case objabi.R_ARM64_PCREL_LDST8, objabi.R_ADDRARM64:
    					o1 |= (xadd & 0xfff) << 10
    				case objabi.R_ARM64_PCREL_LDST16:
    					if xadd&0x1 != 0 {
    						ldr.Errorf(s, "offset for 16-bit load/store has unaligned value %d", xadd&0xfff)
    					}
    					o1 |= ((xadd & 0xfff) >> 1) << 10
    				case objabi.R_ARM64_PCREL_LDST32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	SOCK_RAW                        = 3
    	SOCK_RDM                        = 4
    	SOCK_SEQPACKET                  = 5
    	SOCK_STREAM                     = 1
    	SOL_SOCKET                      = 0xffff
    	SOMAXCONN                       = 10
    	SO_ACCEPTCONN                   = 0x0002
    	SO_ACCEPTECONNABORTED           = 0x0006
    	SO_ACKNOW                       = 0x7700
    	SO_BROADCAST                    = 0x0020
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/arith_test.go

    	return int32(x) << uint32(0xffffffff) << uint32(1)
    }
    
    //go:noinline
    func overflowConstShift16_ssa(x int64) int16 {
    	return int16(x) << uint16(0xffff) << uint16(1)
    }
    
    //go:noinline
    func overflowConstShift8_ssa(x int64) int8 {
    	return int8(x) << uint8(0xff) << uint8(1)
    }
    
    func testOverflowConstShift(t *testing.T) {
    	want := int64(0)
    	for x := int64(-127); x < int64(127); x++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:30:59 UTC 2023
    - 43.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            if ( localHostname == null || localHostname.length() == 0 ) {
                byte[] addr = localInetAddress.getAddress();
                localHostname = "JCIFS" + ( addr[ 2 ] & 0xFF ) + "_" + ( addr[ 3 ] & 0xFF ) + "_"
                        + Hexdump.toHexString((int) ( Math.random() * 0xFF ), 2);
            }
    
            /*
             * Create an NbtAddress for the local interface with
             * the name deduced above possibly with scope applied and
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_client.go

    		if l := len(proto); l == 0 || l > 255 {
    			return nil, nil, nil, errors.New("tls: invalid NextProtos value")
    		} else {
    			nextProtosLength += 1 + l
    		}
    	}
    	if nextProtosLength > 0xffff {
    		return nil, nil, nil, errors.New("tls: NextProtos values too large")
    	}
    
    	supportedVersions := config.supportedVersions(roleClient)
    	if len(supportedVersions) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top