Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 914 for INT32 (0.06 sec)

  1. src/syscall/ztypes_openbsd_riscv64.go

    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Hdrlen   uint16
    	Index    uint16
    	Tableid  uint16
    	Priority uint8
    	Mpls     uint8
    	Addrs    int32
    	Flags    int32
    	Fmask    int32
    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    	Mtu      uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/runtime/stubs_linux.go

    // The return value is the raw syscall result, which may encode an error number.
    //
    //go:noescape
    func access(name *byte, mode int32) int32
    func connect(fd int32, addr unsafe.Pointer, len int32) int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 650 bytes
    - Viewed (0)
  3. src/syscall/ztypes_netbsd_amd64.go

    }
    
    type RtMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Use       int32
    	Inits     int32
    	Pad_cgo_1 [4]byte
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint64
    	Mtu      uint64
    	Hopcount uint64
    	Recvpipe uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. test/codegen/bmi.go

    	return x &^ y
    }
    
    func andn32(x, y int32) int32 {
    	// amd64/v3:"ANDNL"
    	return x &^ y
    }
    
    func blsi64(x int64) int64 {
    	// amd64/v3:"BLSIQ"
    	return x & -x
    }
    
    func blsi32(x int32) int32 {
    	// amd64/v3:"BLSIL"
    	return x & -x
    }
    
    func blsmsk64(x int64) int64 {
    	// amd64/v3:"BLSMSKQ"
    	return x ^ (x - 1)
    }
    
    func blsmsk32(x int32) int32 {
    	// amd64/v3:"BLSMSKL"
    	return x ^ (x - 1)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 04:58:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/internal/runtime/syscall/syscall_linux.go

    func Syscall6(num, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, errno uintptr)
    
    func EpollCreate1(flags int32) (fd int32, errno uintptr) {
    	r1, _, e := Syscall6(SYS_EPOLL_CREATE1, uintptr(flags), 0, 0, 0, 0, 0)
    	return int32(r1), e
    }
    
    var _zero uintptr
    
    func EpollWait(epfd int32, events []EpollEvent, maxev, waitms int32) (n int32, errno uintptr) {
    	var ev unsafe.Pointer
    	if len(events) > 0 {
    		ev = unsafe.Pointer(&events[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:26:21 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/idna/punycode.go

    // All computation is done with int32s, so that overflow behavior is identical
    // regardless of whether int is 32-bit or 64-bit.
    const (
    	base        int32 = 36
    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    func punyError(s string) error { return &labelError{s, "A3"} }
    
    // decode decodes a string as specified in section 6.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/v1/conversion_test.go

    					MinReplicas:                    utilpointer.Int32(1),
    					MaxReplicas:                    4,
    					TargetCPUUtilizationPercentage: utilpointer.Int32(60),
    				},
    				expectOut: &autoscalingv1.HorizontalPodAutoscalerSpec{
    					MinReplicas:                    utilpointer.Int32(1),
    					MaxReplicas:                    3,
    					TargetCPUUtilizationPercentage: utilpointer.Int32(60),
    				},
    				s: nil,
    			},
    			false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 08 12:14:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/syscall/ztypes_dragonfly_amd64.go

    	What    uint16
    }
    
    type RtMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Use       int32
    	Inits     uint64
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks     uint64
    	Mtu       uint64
    	Pksent    uint64
    	Expire    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  9. src/syscall/ztypes_freebsd_riscv64.go

    	What    uint16
    }
    
    type RtMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Fmask     int32
    	Inits     uint64
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint64
    	Mtu      uint64
    	Hopcount uint64
    	Expire   uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 8K bytes
    - Viewed (0)
  10. test/typeparam/issue48191.go

    		_, _, _, _, _, _, _, _, _ = m7, ch5, ch6, ch7, i32_0, i32_1, m8, m9, m10
    	}
    
    	if *pi64_0>><-ch3 <= *pi64_0 || func(bool, int32) int32 {
    		return (int32(69)&^int32(i2) + int32(i2)) * int32(i2)
    	}(true, int32(49))^int32(i2) >= int32(i) {
    		var ai8_8, ai8_9 []G1
    		var pi2, pi3, pi4 *int
    		var pi8_5, pi8_6 *G1
    		var i64_0, i64_1 int64
    		m1[754.8*float64(i2) != float64(i) && 6.26i == 69.99i] = map[int]struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top