Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for UInt32 (0.18 sec)

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

    	_            [6]uint32
    	Status       uint32
    	Status_flags uint32
    	User_count   uint32
    	_            [13]uint32
    }
    
    type DmIoctl struct {
    	Version      [3]uint32
    	Data_size    uint32
    	Data_start   uint32
    	Target_count uint32
    	Open_count   int32
    	Flags        uint32
    	Event_nr     uint32
    	_            uint32
    	Dev          uint64
    	Name         [128]byte
    	Uuid         [129]byte
    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: (BFXU [c] (MOVWconst [d]))
    	// result: (MOVWconst [int32(uint32(d)<<(32-uint32(c&0xff)-uint32(c>>8))>>(32-uint32(c>>8)))])
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpARMMOVWconst {
    			break
    		}
    		d := auxIntToInt32(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(uint32(d) << (32 - uint32(c&0xff) - uint32(c>>8)) >> (32 - uint32(c>>8))))
    		return true
    	}
    	return false
    }
    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

    	maxClientStreamID           uint32 // max ever seen from client (odd), or 0 if there have been no client requests
    	maxPushPromiseID            uint32 // ID of the last push promise (even), or 0 if there have been no pushes
    	streams                     map[uint32]*http2stream
    	unstartedHandlers           []http2unstartedHandler
    	initialStreamSendWindowSize int32
    	maxFrameSize                int32
    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, Iqdrops uint32
    pkg syscall (darwin-arm64), type IfData struct, Lastchange Timeval32
    pkg syscall (darwin-arm64), type IfData struct, Metric uint32
    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
    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

    		return true
    	}
    	// match: (CMPWconst (ANDWconst _ [m]) [n])
    	// cond: int32(m) >= 0 && int32(m) < int32(n)
    	// result: (FlagLT)
    	for {
    		n := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpS390XANDWconst {
    			break
    		}
    		m := auxIntToInt32(v_0.AuxInt)
    		if !(int32(m) >= 0 && int32(m) < int32(n)) {
    			break
    		}
    		v.reset(OpS390XFlagLT)
    		return true
    	}
    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

    		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)
    	for {
    		y := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		x := auxIntToInt64(v_0.AuxInt)
    		if !(uint32(x) > uint32(y)) {
    			break
    		}
    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. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type Termios struct, Cflag uint32
    pkg syscall (netbsd-arm64-cgo), type Termios struct, Iflag uint32
    pkg syscall (netbsd-arm64-cgo), type Termios struct, Ispeed int32
    pkg syscall (netbsd-arm64-cgo), type Termios struct, Lflag uint32
    pkg syscall (netbsd-arm64-cgo), type Termios struct, Oflag uint32
    pkg syscall (netbsd-arm64-cgo), type Termios struct, Ospeed int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 08 18:44:16 UTC 2019
    - 452.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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