Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 265 for UInt32 (0.29 sec)

  1. src/runtime/sema.go

    	// blocked on the same condvar, which is currently not possible.
    	notify uint32
    
    	// List of parked waiters.
    	lock mutex
    	head *sudog
    	tail *sudog
    }
    
    // less checks if a < b, considering a & b running counts that may overflow the
    // 32-bit range, and that their "unwrapped" difference is always less than 2^31.
    func less(a, b uint32) bool {
    	return int32(a-b) < 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. test/codegen/arithmetic.go

    	}
    	return d, e
    }
    
    func NoFix32A(divr int32) (int32, int32) {
    	var d int32 = 42
    	var e int32 = 84
    	if divr > 5 {
    		// amd64:-"JMP"
    		// 386:-"JMP"
    		d /= divr
    		// amd64:-"JMP"
    		// 386:-"JMP"
    		e %= divr
    		d += e
    	}
    	return d, e
    }
    
    func NoFix32B(divd int32) (int32, int32) {
    	var d int32
    	var e int32
    	var divr int32 = -1
    	if divd > -2147483648 {
    		// amd64:-"JMP"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/runtime/runtime1.go

    	runtimeContentionStacks  atomic.Int32
    	scavtrace                int32
    	scheddetail              int32
    	schedtrace               int32
    	tracebackancestors       int32
    	asyncpreemptoff          int32
    	harddecommit             int32
    	adaptivestackstart       int32
    	tracefpunwindoff         int32
    	traceadvanceperiod       int32
    	traceCheckStackOwnership int32
    	profstackdepth           int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. pkg/kubelet/userns/userns_manager.go

    	GetPodDir(podUID types.UID) string
    	ListPodsFromDisk() ([]types.UID, error)
    	GetKubeletMappings() (uint32, uint32, error)
    	GetMaxPods() int
    }
    
    type UsernsManager struct {
    	used    *allocator.AllocationBitmap
    	usedBy  map[types.UID]uint32 // Map pod.UID to range used
    	removed int
    
    	off int
    	len int
    
    	kl userNsPodsManager
    	// This protects all members except for kl.anager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Mul32uhilo", argLength: 2, typ: "(UInt32,UInt32)", commutative: true}, // arg0 * arg1, returns (hi, lo)
    	{name: "Mul64uhilo", argLength: 2, typ: "(UInt64,UInt64)", commutative: true}, // arg0 * arg1, returns (hi, lo)
    
    	{name: "Mul32uover", argLength: 2, typ: "(UInt32,Bool)", commutative: true}, // Let x = arg0*arg1 (full 32x32-> 64 unsigned multiply), returns (uint32(x), (uint32(x) != x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/syscall/syscall_aix.go

    //sys	Link(path string, link string) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Mkdir(path string, mode uint32) (err error)
    //sys	Mkdirat(dirfd int, path string, mode uint32) (err error)
    //sys	Mknodat(dirfd int, path string, mode uint32, dev int) (err error)
    //sys	Open(path string, mode int, perm uint32) (fd int, err error)
    //sys	pread(fd int, p []byte, offset int64) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		},
    		Endpoints: []*networking.WorkloadEntry{
    			{
    				Address: "2.2.2.2",
    				Ports:   map[string]uint32{"http-port": 7080, "http-alt-port": 18080},
    				Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    			},
    			{
    				Address: "3.3.3.3",
    				Ports:   map[string]uint32{"http-port": 1080},
    				Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux.go

     * Wrapped
     */
    
    func Access(path string, mode uint32) (err error) {
    	return Faccessat(_AT_FDCWD, path, mode, 0)
    }
    
    func Chmod(path string, mode uint32) (err error) {
    	return Fchmodat(_AT_FDCWD, path, mode, 0)
    }
    
    func Chown(path string, uid int, gid int) (err error) {
    	return Fchownat(_AT_FDCWD, path, uid, gid, 0)
    }
    
    func Creat(path string, mode uint32) (fd int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. src/runtime/map_fast32.go

    				// Copy key.
    				if goarch.PtrSize == 4 && t.Key.Pointers() && writeBarrier.enabled {
    					// Write with a write barrier.
    					*(*unsafe.Pointer)(dst.k) = *(*unsafe.Pointer)(k)
    				} else {
    					*(*uint32)(dst.k) = *(*uint32)(k)
    				}
    
    				typedmemmove(t.Elem, dst.e, e)
    				dst.i++
    				// These updates might push these pointers past the end of the
    				// key or elem arrays.  That's ok, as we have the overflow pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top