Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for Int32 (0.2 sec)

  1. misc/wasm/wasm_exec.js

    					},
    
    					// func walltime() (sec int64, nsec int32)
    					"runtime.walltime": (sp) => {
    						sp >>>= 0;
    						const msec = (new Date).getTime();
    						setInt64(sp + 8, msec / 1000);
    						this.mem.setInt32(sp + 16, (msec % 1000) * 1000000, true);
    					},
    
    					// func scheduleTimeoutEvent(delay int64) int32
    					"runtime.scheduleTimeoutEvent": (sp) => {
    						sp >>>= 0;
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  2. api/go1.3.txt

    pkg syscall (netbsd-386), type Termios struct, Iflag uint32
    pkg syscall (netbsd-386), type Termios struct, Ispeed int32
    pkg syscall (netbsd-386), type Termios struct, Lflag uint32
    pkg syscall (netbsd-386), type Termios struct, Oflag uint32
    pkg syscall (netbsd-386), type Termios struct, Ospeed int32
    pkg syscall (netbsd-386-cgo), const CLONE_CSIGNAL = 255
    pkg syscall (netbsd-386-cgo), const CLONE_CSIGNAL ideal-int
    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)
  3. api/go1.5.txt

    pkg debug/elf, type R_PPC64 int
    pkg encoding/base64, const NoPadding = -1
    pkg encoding/base64, const NoPadding int32
    pkg encoding/base64, const StdPadding = 61
    pkg encoding/base64, const StdPadding int32
    pkg encoding/base64, method (Encoding) WithPadding(int32) *Encoding
    pkg encoding/base64, var RawStdEncoding *Encoding
    pkg encoding/base64, var RawURLEncoding *Encoding
    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.13.txt

    pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Addrs int32
    pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Errno int32
    pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Flags int32
    pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Index uint16
    pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Inits int32
    pkg syscall (netbsd-arm64-cgo), type RtMsghdr struct, Msglen uint16
    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)
  5. doc/go1.17_spec.html

    var i = 1<<s                   // 1 has type int
    var j int32 = 1<<s             // 1 has type int32; j == 0
    var k = uint64(1<<s)           // 1 has type uint64; k == 1<<33
    var m int = 1.0<<s             // 1.0 has type int; m == 1<<33
    var n = 1.0<<s == j            // 1.0 has type int32; n == true
    var o = 1<<s == 2<<s           // 1 and 2 have type int; o == false
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    or variables, are provided in _cgo_gotypes.go.
    
    Here is a _cgo_gotypes.go containing definitions for needed C types:
    
    	type _Ctype_char int8
    	type _Ctype_int int32
    	type _Ctype_void [0]byte
    
    The _cgo_gotypes.go file also contains the definitions of the
    functions. They all have similar bodies that invoke runtime·cgocall
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  7. api/go1.12.txt

    pkg syscall (freebsd-386), type Dirent struct, Pad1 uint16
    pkg syscall (freebsd-386), type Stat_t struct, Atim_ext int32
    pkg syscall (freebsd-386), type Stat_t struct, Blksize int32
    pkg syscall (freebsd-386), type Stat_t struct, Btim_ext int32
    pkg syscall (freebsd-386), type Stat_t struct, Ctim_ext int32
    pkg syscall (freebsd-386), type Stat_t struct, Dev uint64
    pkg syscall (freebsd-386), type Stat_t struct, Gen uint64
    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)
  8. src/builtin/builtin.go

    // Range: -128 through 127.
    type int8 int8
    
    // int16 is the set of all signed 16-bit integers.
    // Range: -32768 through 32767.
    type int16 int16
    
    // int32 is the set of all signed 32-bit integers.
    // Range: -2147483648 through 2147483647.
    type int32 int32
    
    // int64 is the set of all signed 64-bit integers.
    // Range: -9223372036854775808 through 9223372036854775807.
    type int64 int64
    
    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)
  9. api/go1.19.txt

    pkg sync/atomic, method (*Bool) Swap(bool) bool #50860
    pkg sync/atomic, method (*Int32) Add(int32) int32 #50860
    pkg sync/atomic, method (*Int32) CompareAndSwap(int32, int32) bool #50860
    pkg sync/atomic, method (*Int32) Load() int32 #50860
    pkg sync/atomic, method (*Int32) Store(int32) #50860
    pkg sync/atomic, method (*Int32) Swap(int32) int32 #50860
    pkg sync/atomic, method (*Int64) Add(int64) int64 #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)
  10. api/go1.txt

    pkg syscall (darwin-386), type Rusage struct, Isrss int32
    pkg syscall (darwin-386), type Rusage struct, Ixrss int32
    pkg syscall (darwin-386), type Rusage struct, Majflt int32
    pkg syscall (darwin-386), type Rusage struct, Maxrss int32
    pkg syscall (darwin-386), type Rusage struct, Minflt int32
    pkg syscall (darwin-386), type Rusage struct, Msgrcv int32
    pkg syscall (darwin-386), type Rusage struct, Msgsnd int32
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top