Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for UINT32 (0.21 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Rcv_mss              uint32
    	Unacked              uint32
    	Sacked               uint32
    	Lost                 uint32
    	Retrans              uint32
    	Fackets              uint32
    	Last_data_sent       uint32
    	Last_ack_sent        uint32
    	Last_data_recv       uint32
    	Last_ack_recv        uint32
    	Pmtu                 uint32
    	Rcv_ssthresh         uint32
    	Rtt                  uint32
    	Rttvar               uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    	// match: (Div32 x y)
    	// result: (SUB (XOR <typ.UInt32> (Select0 <typ.UInt32> (CALLudiv (SUB <typ.UInt32> (XOR x <typ.UInt32> (Signmask x)) (Signmask x)) (SUB <typ.UInt32> (XOR y <typ.UInt32> (Signmask y)) (Signmask y)))) (Signmask (XOR <typ.UInt32> x y))) (Signmask (XOR <typ.UInt32> x y)))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpARMSUB)
    		v0 := b.NewValue0(v.Pos, OpARMXOR, typ.UInt32)
    		v1 := b.NewValue0(v.Pos, OpSelect0, typ.UInt32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	if err != nil {
    		return http2FrameHeader{}, err
    	}
    	return http2FrameHeader{
    		Length:   (uint32(buf[0])<<16 | uint32(buf[1])<<8 | uint32(buf[2])),
    		Type:     http2FrameType(buf[3]),
    		Flags:    http2Flags(buf[4]),
    		StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
    		valid:    true,
    	}, nil
    }
    
    // A Frame is the base interface implemented by all frame types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), type IfData struct, Mtu uint32
    pkg syscall (darwin-arm64), type IfData struct, Noproto uint32
    pkg syscall (darwin-arm64), type IfData struct, Obytes uint32
    pkg syscall (darwin-arm64), type IfData struct, Oerrors uint32
    pkg syscall (darwin-arm64), type IfData struct, Omcasts uint32
    pkg syscall (darwin-arm64), type IfData struct, Opackets uint32
    pkg syscall (darwin-arm64), type IfData struct, Physical uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteS390X.go

    	// match: (AtomicAnd8 ptr val mem)
    	// result: (LANfloor ptr (RLL <typ.UInt32> (ORWconst <typ.UInt32> val [-1<<8]) (RXSBG <typ.UInt32> {s390x.NewRotateParams(59, 60, 3)} (MOVDconst [3<<3]) ptr)) mem)
    	for {
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		v.reset(OpS390XLANfloor)
    		v0 := b.NewValue0(v.Pos, OpS390XRLL, typ.UInt32)
    		v1 := b.NewValue0(v.Pos, OpS390XORWconst, typ.UInt32)
    		v1.AuxInt = int32ToAuxInt(-1 << 8)
    		v1.AddArg(val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	// cond: uint32(x)<uint32(y)
    	// result: (FlagLT)
    	for {
    		y := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint32(x) < uint32(y)) {
    			break
    		}
    		v.reset(OpPPC64FlagLT)
    		return true
    	}
    	// match: (CMPWUconst (MOVDconst [x]) [y])
    	// cond: uint32(x)>uint32(y)
    	// result: (FlagGT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    	}
    	i := nfcIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    	}
    	i := nfcIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
  9. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type IPv6MTUInfo struct, Mtu uint32
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Data int64
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Fflags uint32
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Filter uint32
    pkg syscall (netbsd-arm64-cgo), type Kevent_t struct, Flags uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go

    	}
    	i := nfcIndex[c0]
    	if c0 < 0xE0 { // 2-byte UTF-8
    		return t.lookupValue(uint32(i), s[1])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[1])]
    	if c0 < 0xF0 { // 3-byte UTF-8
    		return t.lookupValue(uint32(i), s[2])
    	}
    	i = nfcIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.2K bytes
    - Viewed (0)
Back to top