Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 870 for INT32 (0.06 sec)

  1. src/runtime/os_freebsd.go

    //go:noescape
    func sys_umtx_op(addr *uint32, mode int32, val uint32, uaddr1 uintptr, ut *umtx_time) int32
    
    func osyield()
    
    //go:nosplit
    func osyield_no_g() {
    	osyield()
    }
    
    func kqueue() int32
    
    //go:noescape
    func kevent(kq int32, ch *keventt, nch int32, ev *keventt, nev int32, ts *timespec) int32
    
    func pipe2(flags int32) (r, w int32, errno int32)
    func fcntl(fd, cmd, arg int32) (ret int32, errno int32)
    
    func issetugid() int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. src/syscall/fs_wasip1.go

    //go:noescape
    func fd_pread(fd int32, iovs unsafe.Pointer, iovsLen size, offset filesize, nread unsafe.Pointer) Errno
    
    //go:wasmimport wasi_snapshot_preview1 fd_pwrite
    //go:noescape
    func fd_pwrite(fd int32, iovs unsafe.Pointer, iovsLen size, offset filesize, nwritten unsafe.Pointer) Errno
    
    //go:wasmimport wasi_snapshot_preview1 fd_read
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "ADDshiftRL", argLength: 2, reg: gp21, asm: "ADD", aux: "Int32"}, // arg0 + arg1>>auxInt, unsigned shift
    		{name: "ADDshiftRA", argLength: 2, reg: gp21, asm: "ADD", aux: "Int32"}, // arg0 + arg1>>auxInt, signed shift
    		{name: "SUBshiftLL", argLength: 2, reg: gp21, asm: "SUB", aux: "Int32"}, // arg0 - arg1<<auxInt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  4. src/runtime/sys_darwin.go

    }
    func mlock_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func read(fd int32, p unsafe.Pointer, n int32) int32 {
    	ret := libcCall(unsafe.Pointer(abi.FuncPCABI0(read_trampoline)), unsafe.Pointer(&fd))
    	KeepAlive(p)
    	return ret
    }
    func read_trampoline()
    
    func pipe() (r, w int32, errno int32) {
    	var p [2]int32
    	errno = libcCall(unsafe.Pointer(abi.FuncPCABI0(pipe_trampoline)), noescape(unsafe.Pointer(&p)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_amd64.go

    	Pad_cgo_0  [4]byte
    	Iov        *Iovec
    	Iovlen     uint64
    	Control    *byte
    	Controllen uint64
    	Flags      int32
    	Pad_cgo_1  [4]byte
    }
    
    type Cmsghdr struct {
    	Len   uint64
    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  int32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    type Inet6Pktinfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. src/internal/reflectlite/all_test.go

    	{new(**int8), "**int8(0)"},
    	{new([5]int32), "[5]int32{0, 0, 0, 0, 0}"},
    	{new(**integer), "**reflectlite_test.integer(0)"},
    	{new(map[string]int32), "map[string]int32{<can't iterate on maps>}"},
    	{new(chan<- string), "chan<- string"},
    	{new(func(a int8, b int32)), "func(int8, int32)(arg)"},
    	{new(struct {
    		c chan *int32
    		d float32
    	}),
    		"struct { c chan *int32; d float32 }{chan *int32, 0}",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  7. pkg/controller/job/indexed_job_utils_test.go

    					Completions:          ptr.To[int32](2),
    					BackoffLimitPerIndex: ptr.To[int32](1),
    					PodFailurePolicy: &batch.PodFailurePolicy{
    						Rules: []batch.PodFailurePolicyRule{
    							{
    								Action: batch.PodFailurePolicyActionFailIndex,
    								OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    									Operator: batch.PodFailurePolicyOnExitCodesOpIn,
    									Values:   []int32{3},
    								},
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. pkg/apis/extensions/v1beta1/defaults_test.go

    					},
    					Template:                defaultTemplate,
    					ProgressDeadlineSeconds: utilpointer.Int32(math.MaxInt32),
    					RevisionHistoryLimit:    utilpointer.Int32(math.MaxInt32),
    				},
    			},
    		},
    		{
    			original: &extensionsv1beta1.Deployment{
    				Spec: extensionsv1beta1.DeploymentSpec{
    					Replicas: utilpointer.Int32(5),
    					Strategy: extensionsv1beta1.DeploymentStrategy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. src/sync/atomic/doc.go

    // SwapInt32 atomically stores new into *addr and returns the previous *addr value.
    // Consider using the more ergonomic and less error-prone [Int32.Swap] instead.
    func SwapInt32(addr *int32, new int32) (old int32)
    
    // SwapInt64 atomically stores new into *addr and returns the previous *addr value.
    // Consider using the more ergonomic and less error-prone [Int64.Swap] instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/shift_test.go

    	return x >> n
    }
    
    //go:noinline
    func ofz32l64(n uint64) int32 {
    	var x int32
    	return x << n
    }
    
    //go:noinline
    func ofz32l32(n uint32) int32 {
    	var x int32
    	return x << n
    }
    
    //go:noinline
    func ofz32l16(n uint16) int32 {
    	var x int32
    	return x << n
    }
    
    //go:noinline
    func ofz32l8(n uint8) int32 {
    	var x int32
    	return x << n
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 22:26:39 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top