Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 191 for 0xffff (0.13 sec)

  1. src/compress/bzip2/huffman.go

    type huffmanNode struct {
    	left, right           uint16
    	leftValue, rightValue uint16
    }
    
    // invalidNodeValue is an invalid index which marks a leaf node in the tree.
    const invalidNodeValue = 0xffff
    
    // Decode reads bits from the given bitReader and navigates the tree until a
    // symbol is found.
    func (t *huffmanTree) Decode(br *bitReader) (v uint16) {
    	nodeIndex := uint16(0) // node 0 is the root of the tree.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
    
    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

        frameLength = (b1 and B1_MASK_LENGTH).toLong()
        if (frameLength == PAYLOAD_SHORT.toLong()) {
          frameLength = (source.readShort() and 0xffff).toLong() // Value is unsigned.
        } else if (frameLength == PAYLOAD_LONG.toLong()) {
          frameLength = source.readLong()
          if (frameLength < 0L) {
            throw ProtocolException(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/image/gif/writer_test.go

    	pals := []color.Palette{{
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x01, 0x00, 0x00, 0xff},
    		color.RGBA{0x02, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x00, 0x01, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x03, 0xff},
    		color.RGBA{0x00, 0x00, 0x02, 0xff},
    		color.RGBA{0x00, 0x00, 0x01, 0xff},
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x10, 0x07, 0xf0, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    //sysnb	getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err error)
    //sys	Shutdown(s int, how int) (err error)
    
    func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	if sa.Port < 0 || sa.Port > 0xFFFF {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Len = SizeofSockaddrInet4
    	sa.raw.Family = AF_INET
    	p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
    	p[0] = byte(sa.Port >> 8)
    	p[1] = byte(sa.Port)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  6. pkg/kubelet/winstats/perfcounter_nodestats.go

    	procGlobalMemoryStatusEx    = modkernel32.NewProc("GlobalMemoryStatusEx")
    	procGetActiveProcessorCount = modkernel32.NewProc("GetActiveProcessorCount")
    )
    
    const allProcessorGroups = 0xFFFF
    
    // NewPerfCounterClient creates a client using perf counters
    func NewPerfCounterClient() (Client, error) {
    	// Initialize the cache
    	initCache := cpuUsageCoreNanoSecondsCache{0, 0}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/registry/registry_test.go

    	{Type: registry.DWORD, Name: "Dword3", Value: uint64(0xff)},
    	{Type: registry.DWORD, Name: "Dword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword1", Value: uint64(0)},
    	{Type: registry.QWORD, Name: "Qword2", Value: uint64(1)},
    	{Type: registry.QWORD, Name: "Qword3", Value: uint64(0xff)},
    	{Type: registry.QWORD, Name: "Qword4", Value: uint64(0xffff)},
    	{Type: registry.QWORD, Name: "Qword5", Value: uint64(0xffffff)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/net/ipsock_plan9.go

    		if addr == nil {
    			return nil, 0, &ParseError{Type: "IP address", Text: s}
    		}
    	}
    	p, plen, ok := dtoi(s[i+1:])
    	if !ok {
    		return nil, 0, &ParseError{Type: "port", Text: s}
    	}
    	if p < 0 || p > 0xFFFF {
    		return nil, 0, &AddrError{Err: "invalid port", Addr: s[i+1 : i+1+plen]}
    	}
    	return addr, p, nil
    }
    
    func readPlan9Addr(net, filename string) (addr Addr, err error) {
    	var buf [128]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. src/image/png/reader.go

    		case cbG1:
    			if d.useTransparent {
    				ty := d.transparent[1]
    				for x := 0; x < width; x += 8 {
    					b := cdat[x/8]
    					for x2 := 0; x2 < 8 && x+x2 < width; x2++ {
    						ycol := (b >> 7) * 0xff
    						acol := uint8(0xff)
    						if ycol == ty {
    							acol = 0x00
    						}
    						nrgba.SetNRGBA(x+x2, y, color.NRGBA{ycol, ycol, ycol, acol})
    						b <<= 1
    					}
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (ADDconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff => (SUBconst [-c] x)
    (SUBconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff => (ADDconst [-c] x)
    (ANDconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && ^uint32(c)<=0xffff => (BICconst [int32(^uint32(c))] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
Back to top