Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for overflows (0.22 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{18, "EXDEV", "cross-device link"},
    	{19, "ENODEV", "no such device"},
    	{20, "ENOTDIR", "not a directory"},
    	{21, "EISDIR", "is a directory"},
    	{22, "EINVAL", "invalid argument"},
    	{23, "ENFILE", "file table overflow"},
    	{24, "EMFILE", "too many open files"},
    	{25, "ENOTTY", "not a typewriter"},
    	{26, "ETXTBSY", "text file busy"},
    	{27, "EFBIG", "file too large"},
    	{28, "ENOSPC", "no space left on device"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ppc64/asm.go

    			// Whether to check for signed or unsigned
    			// overflow depends on the instruction
    			var o1 uint32
    			if target.IsBigEndian() {
    				o1 = binary.BigEndian.Uint32(p[r.Off()-2:])
    			} else {
    				o1 = binary.LittleEndian.Uint32(p[r.Off():])
    			}
    			switch o1 >> 26 {
    			case 24, // ori
    				26, // xori
    				28: // andi
    				if t>>16 != 0 {
    					goto overflow
    				}
    
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FGT", controls: 1},
    		{name: "FGE", controls: 1},
    		{name: "LTnoov", controls: 1}, // 'LT' but without honoring overflow
    		{name: "LEnoov", controls: 1}, // 'LE' but without honoring overflow
    		{name: "GTnoov", controls: 1}, // 'GT' but without honoring overflow
    		{name: "GEnoov", controls: 1}, // 'GE' but without honoring overflow
    
    		// JUMPTABLE implements jump tables.
    		// Aux is the symbol (an *obj.LSym) for the jump table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "SumBytes2", argLength: 1, typ: "UInt8"}, // sum the rightmost 2 bytes in arg0 ignoring overflow
    		{name: "SumBytes4", argLength: 1, typ: "UInt8"}, // sum the rightmost 4 bytes in arg0 ignoring overflow
    		{name: "SumBytes8", argLength: 1, typ: "UInt8"}, // sum all the bytes in arg0 ignoring overflow
    
    		// store multiple
    		{
    			name:           "STMG2",
    			argLength:      4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	ask := alignUp(npage, pallocChunkPages) * pageSize
    
    	totalGrowth := uintptr(0)
    	// This may overflow because ask could be very large
    	// and is otherwise unrelated to h.curArena.base.
    	end := h.curArena.base + ask
    	nBase := alignUp(end, physPageSize)
    	if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
    		// Not enough room in the current arena. Allocate more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x2d)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x2d)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x66)
    	EOVERFLOW       = syscall.Errno(0x54)
    	EOWNERDEAD      = syscall.Errno(0x69)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go

    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x5b)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    	EOWNERDEAD      = syscall.Errno(0x5e)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	ENOTSOCK        = syscall.Errno(0x26)
    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework.go

    			f.scorePluginWeight[e.Name] = 1
    		}
    
    		// Checks totalPriority against MaxTotalScore to avoid overflow
    		if int64(f.scorePluginWeight[e.Name])*framework.MaxNodeScore > framework.MaxTotalScore-totalPriority {
    			return fmt.Errorf("total score of Score plugins could overflow")
    		}
    		totalPriority += int64(f.scorePluginWeight[e.Name]) * framework.MaxNodeScore
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
Back to top