Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 399 for uint32 (0.17 sec)

  1. api/go1.22.txt

    pkg math/rand/v2, method (*Rand) Uint32() uint32 #61716
    pkg math/rand/v2, method (*Rand) Uint32N(uint32) uint32 #61716
    pkg math/rand/v2, method (*Rand) Uint64() uint64 #61716
    pkg math/rand/v2, method (*Rand) Uint64N(uint64) uint64 #61716
    pkg math/rand/v2, method (*Rand) UintN(uint) uint #61716
    pkg math/rand/v2, method (*Zipf) Uint64() uint64 #61716
    pkg math/rand/v2, type ChaCha8 struct #61716
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 20:54:27 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/archive/zip/writer.go

    		} else {
    			b.uint32(h.CompressedSize)
    			b.uint32(h.UncompressedSize)
    		}
    
    		b.uint16(uint16(len(h.Name)))
    		b.uint16(uint16(len(h.Extra)))
    		b.uint16(uint16(len(h.Comment)))
    		b = b[4:] // skip disk number start and internal file attr (2x uint16)
    		b.uint32(h.ExternalAttrs)
    		if h.offset > uint32max {
    			b.uint32(uint32max)
    		} else {
    			b.uint32(uint32(h.offset))
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. api/except.txt

    pkg syscall (freebsd-arm), type Stat_t struct, Dev uint32
    pkg syscall (freebsd-arm), type Stat_t struct, Gen uint32
    pkg syscall (freebsd-arm), type Stat_t struct, Ino uint32
    pkg syscall (freebsd-arm), type Stat_t struct, Lspare int32
    pkg syscall (freebsd-arm), type Stat_t struct, Nlink uint16
    pkg syscall (freebsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8
    pkg syscall (freebsd-arm), type Stat_t struct, Rdev uint32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu May 25 00:13:30 GMT 2023
    - 34.6K bytes
    - Viewed (0)
  4. api/go1.19.txt

    pkg sync/atomic, method (*Uint32) Add(uint32) uint32 #50860
    pkg sync/atomic, method (*Uint32) CompareAndSwap(uint32, uint32) bool #50860
    pkg sync/atomic, method (*Uint32) Load() uint32 #50860
    pkg sync/atomic, method (*Uint32) Store(uint32) #50860
    pkg sync/atomic, method (*Uint32) Swap(uint32) uint32 #50860
    pkg sync/atomic, method (*Uint64) Add(uint64) uint64 #50860
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  5. internal/disk/stat_windows.go

    		FSType: getFSType(path),
    	}
    
    	// Return values of GetDiskFreeSpace()
    	lpSectorsPerCluster := uint32(0)
    	lpBytesPerSector := uint32(0)
    	lpNumberOfFreeClusters := uint32(0)
    	lpTotalNumberOfClusters := uint32(0)
    
    	// Extract values safely
    	// BOOL WINAPI GetDiskFreeSpace(
    	//   _In_  LPCTSTR lpRootPathName,
    	//   _Out_ LPDWORD lpSectorsPerCluster,
    	//   _Out_ LPDWORD lpBytesPerSector,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/archive/tar/stat_unix.go

    		dev := uint64(sys.Rdev) // May be int32 or uint32
    		switch runtime.GOOS {
    		case "aix":
    			var major, minor uint32
    			major = uint32((dev & 0x3fffffff00000000) >> 32)
    			minor = uint32((dev & 0x00000000ffffffff) >> 0)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "linux":
    			// Copied from golang.org/x/sys/unix/dev_linux.go.
    			major := uint32((dev & 0x00000000000fff00) >> 8)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-decom_gen.go

    	// string "bkts"
    	o = append(o, 0xa4, 0x62, 0x6b, 0x74, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.QueuedBuckets)))
    	for za0001 := range z.QueuedBuckets {
    		o = msgp.AppendString(o, z.QueuedBuckets[za0001])
    	}
    	// string "dbkts"
    	o = append(o, 0xa5, 0x64, 0x62, 0x6b, 0x74, 0x73)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.DecommissionedBuckets)))
    	for za0002 := range z.DecommissionedBuckets {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Jul 04 21:02:54 GMT 2022
    - 26.7K bytes
    - Viewed (0)
  8. src/archive/zip/struct.go

    	//
    	// Deprecated: Use CompressedSize64 instead.
    	CompressedSize uint32
    
    	// UncompressedSize is the compressed size of the file in bytes.
    	// If either the uncompressed or compressed size of the file
    	// does not fit in 32 bits, CompressedSize is set to ^uint32(0).
    	//
    	// Deprecated: Use UncompressedSize64 instead.
    	UncompressedSize uint32
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  9. schema/field.go

    			case uint:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case uint8:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case uint16:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case uint32:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case int64:
    				field.ReflectValueOf(ctx, value).SetUint(uint64(data))
    			case int:
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Apr 15 03:20:20 GMT 2024
    - 32K bytes
    - Viewed (1)
  10. src/archive/zip/reader.go

    	b := readBuf(buf[4:]) // skip signature
    	d := &directoryEnd{
    		diskNbr:            uint32(b.uint16()),
    		dirDiskNbr:         uint32(b.uint16()),
    		dirRecordsThisDisk: uint64(b.uint16()),
    		directoryRecords:   uint64(b.uint16()),
    		directorySize:      uint64(b.uint32()),
    		directoryOffset:    uint64(b.uint32()),
    		commentLen:         b.uint16(),
    	}
    	l := int(d.commentLen)
    	if l > len(b) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
Back to top