Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for uint64 (0.29 sec)

  1. api/go1.12.txt

    pkg math/bits, func Add(uint, uint, uint) (uint, uint)
    pkg math/bits, func Add32(uint32, uint32, uint32) (uint32, uint32)
    pkg math/bits, func Add64(uint64, uint64, uint64) (uint64, uint64)
    pkg math/bits, func Div(uint, uint, uint) (uint, uint)
    pkg math/bits, func Div32(uint32, uint32, uint32) (uint32, uint32)
    pkg math/bits, func Div64(uint64, uint64, uint64) (uint64, uint64)
    pkg math/bits, func Mul(uint, uint) (uint, uint)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 02 21:21:53 GMT 2019
    - 13.5K bytes
    - Viewed (0)
  2. src/cmd/api/testdata/src/pkg/p1/p1.go

    // Deprecated: use TMethod.
    func (s *S2) SMethod(x int8, y int16, z int64) {}
    
    type s struct{}
    
    func (s) method()
    func (s) Method()
    
    func (S) StructValueMethod()
    func (ignored S) StructValueMethodNamedRecv()
    
    func (s *S2) unexported(x int8, y int16, z int64) {}
    
    func Bar(x int8, y int16, z int64)                  {}
    func Bar1(x int8, y int16, z int64) uint64          {}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg image, type CMYK struct
    pkg image, type CMYK struct, Pix []uint8
    pkg image, type CMYK struct, Rect Rectangle
    pkg image, type CMYK struct, Stride int
    pkg image/color, func CMYKToRGB(uint8, uint8, uint8, uint8) (uint8, uint8, uint8)
    pkg image/color, func RGBToCMYK(uint8, uint8, uint8) (uint8, uint8, uint8, uint8)
    pkg image/color, method (CMYK) RGBA() (uint32, uint32, uint32, uint32)
    pkg image/color, type CMYK struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg debug/pe, type OptionalHeader64 struct, ImageBase uint64
    pkg debug/pe, type OptionalHeader64 struct, LoaderFlags uint32
    pkg debug/pe, type OptionalHeader64 struct, Magic uint16
    pkg debug/pe, type OptionalHeader64 struct, MajorImageVersion uint16
    pkg debug/pe, type OptionalHeader64 struct, MajorLinkerVersion uint8
    pkg debug/pe, type OptionalHeader64 struct, MajorOperatingSystemVersion uint16
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  5. src/archive/zip/zip_test.go

    	}
    	err = rc.Close()
    	if err != nil {
    		t.Fatal("closing:", err)
    	}
    	if size+int64(len("END\n")) >= 1<<32-1 {
    		if got, want := f0.UncompressedSize, uint32(uint32max); got != want {
    			t.Errorf("UncompressedSize %#x, want %#x", got, want)
    		}
    	}
    
    	if got, want := f0.UncompressedSize64, uint64(size)+uint64(len(end)); got != want {
    		t.Errorf("UncompressedSize64 %#x, want %#x", got, want)
    	}
    
    	return buf
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  6. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type IfData struct, Obytes uint64
    pkg syscall (netbsd-arm64-cgo), type IfData struct, Oerrors uint64
    pkg syscall (netbsd-arm64-cgo), type IfData struct, Omcasts uint64
    pkg syscall (netbsd-arm64-cgo), type IfData struct, Opackets uint64
    pkg syscall (netbsd-arm64-cgo), type IfData struct, Pad_cgo_0 [1]uint8
    pkg syscall (netbsd-arm64-cgo), type IfData struct, Type uint8
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  7. src/builtin/builtin.go

    	false = 0 != 0 // Untyped bool.
    )
    
    // uint8 is the set of all unsigned 8-bit integers.
    // Range: 0 through 255.
    type uint8 uint8
    
    // uint16 is the set of all unsigned 16-bit integers.
    // Range: 0 through 65535.
    type uint16 uint16
    
    // uint32 is the set of all unsigned 32-bit integers.
    // Range: 0 through 4294967295.
    type uint32 uint32
    
    // uint64 is the set of all unsigned 64-bit integers.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  8. 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)
  9. src/archive/zip/reader_test.go

    }
    
    func messWith(fileName string, corrupter func(b []byte)) (r io.ReaderAt, size int64) {
    	data, err := os.ReadFile(filepath.Join("testdata", fileName))
    	if err != nil {
    		panic("Error reading " + fileName + ": " + err.Error())
    	}
    	corrupter(data)
    	return bytes.NewReader(data), int64(len(data))
    }
    
    func returnCorruptCRC32Zip() (r io.ReaderAt, size int64) {
    	return messWith("go-with-datadesc-sig.zip", func(b []byte) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/parse.go

    	return 0
    }
    
    // positiveAtoi returns an int64 that must be >= 0.
    func (p *Parser) positiveAtoi(str string) int64 {
    	value, err := strconv.ParseInt(str, 0, 64)
    	if err != nil {
    		p.errorf("%s", err)
    	}
    	if value < 0 {
    		p.errorf("%s overflows int64", str)
    	}
    	return value
    }
    
    func (p *Parser) atoi(str string) uint64 {
    	value, err := strconv.ParseUint(str, 0, 64)
    	if err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
Back to top