Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 348 for uint32 (0.18 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/batch-rotate_gen.go

    	o = msgp.AppendArrayHeader(o, uint32(len(z.Tags)))
    	for za0001 := range z.Tags {
    		o, err = z.Tags[za0001].MarshalMsg(o)
    		if err != nil {
    			err = msgp.WrapError(err, "Tags", za0001)
    			return
    		}
    	}
    	// string "Metadata"
    	o = append(o, 0xa8, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61)
    	o = msgp.AppendArrayHeader(o, uint32(len(z.Metadata)))
    	for za0002 := range z.Metadata {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Dec 02 10:51:33 GMT 2023
    - 27.1K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v1_gen.go

    	// check for omitted fields
    	zb0001Len := uint32(7)
    	var zb0001Mask uint8 /* 7 bits */
    	_ = zb0001Mask
    	if z.Index == nil {
    		zb0001Len--
    		zb0001Mask |= 0x20
    	}
    	if z.Checksums == nil {
    		zb0001Len--
    		zb0001Mask |= 0x40
    	}
    	// variable map header, size zb0001Len
    	err = en.Append(0x80 | uint8(zb0001Len))
    	if err != nil {
    		return
    	}
    	if zb0001Len == 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 40.2K bytes
    - Viewed (0)
Back to top