Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for RoundUp (0.12 sec)

  1. src/vendor/golang.org/x/net/route/address.go

    	l := int(b[0])
    	if runtime.GOOS == "darwin" || runtime.GOOS == "ios" {
    		// On Darwin, an address in the kernel form is also
    		// used as a message filler.
    		if l == 0 || len(b) > roundup(l) {
    			l = roundup(l)
    		}
    	} else {
    		l = roundup(l)
    	}
    	if len(b) < l {
    		return 0, nil, errInvalidAddr
    	}
    	// Don't reorder case expressions.
    	// The case expressions for IPv6 must come first.
    	const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. src/crypto/tls/conn_test.go

    package tls
    
    import (
    	"bytes"
    	"io"
    	"net"
    	"testing"
    )
    
    func TestRoundUp(t *testing.T) {
    	if roundUp(0, 16) != 0 ||
    		roundUp(1, 16) != 16 ||
    		roundUp(15, 16) != 16 ||
    		roundUp(16, 16) != 16 ||
    		roundUp(17, 16) != 32 {
    		t.Error("roundUp broken")
    	}
    }
    
    // will be initialized with {0, 255, 255, ..., 255}
    var padding255Bad = [256]byte{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/strconv/ftoaryu.go

    	max := uint64pow10[prec]
    	trimmed := 0
    	for m >= max {
    		a, b := m/10, m%10
    		m = a
    		trimmed++
    		if b > 5 {
    			roundUp = true
    		} else if b < 5 {
    			roundUp = false
    		} else { // b == 5
    			// round up if there are trailing digits,
    			// or if the new value of m is odd (round-to-even convention)
    			roundUp = trunc || m&1 == 1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/size.go

    var CalcSizeDisabled bool
    
    // machine size and rounding alignment is dictated around
    // the size of a pointer, set in gc.Main (see ../gc/main.go).
    var defercalc int
    
    // RoundUp rounds o to a multiple of r, r is a power of 2.
    func RoundUp(o int64, r int64) int64 {
    	if r < 1 || r > 8 || r&(r-1) != 0 {
    		base.Fatalf("Round %d", r)
    	}
    	return (o + r - 1) &^ (r - 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    	tests := []struct {
    		input     IntOrString
    		total     int
    		roundUp   bool
    		expectErr bool
    		expectVal int
    	}{
    		{
    			input:     FromInt32(123),
    			expectErr: false,
    			expectVal: 123,
    		},
    		{
    			input:     FromString("90%"),
    			total:     100,
    			roundUp:   true,
    			expectErr: false,
    			expectVal: 90,
    		},
    		{
    			input:     FromString("90%"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/pgen.go

    			}
    		}
    	}
    
    	s.stksize = types.RoundUp(s.stksize, s.stkalign)
    	s.stkptrsize = types.RoundUp(s.stkptrsize, s.stkalign)
    }
    
    const maxStackSize = 1 << 30
    
    // Compile builds an SSA backend function,
    // uses it to generate a plist,
    // and flushes that plist to machine code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/strconv/decimal.go

    		return
    	}
    	if shouldRoundUp(a, nd) {
    		a.RoundUp(nd)
    	} else {
    		a.RoundDown(nd)
    	}
    }
    
    // Round a down to nd digits (or fewer).
    func (a *decimal) RoundDown(nd int) {
    	if nd < 0 || nd >= a.nd {
    		return
    	}
    	a.nd = nd
    	trim(a)
    }
    
    // Round a up to nd digits (or fewer).
    func (a *decimal) RoundUp(nd int) {
    	if nd < 0 || nd >= a.nd {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		return q.d.AsScale(scale)
    	}
    	return q.i.AsScale(scale)
    }
    
    // RoundUp updates the quantity to the provided scale, ensuring that the value is at
    // least 1. False is returned if the rounding operation resulted in a loss of precision.
    // Negative numbers are rounded away from zero (-9 scale 1 rounds to -10).
    func (q *Quantity) RoundUp(scale Scale) bool {
    	if q.d.Dec != nil {
    		q.s = ""
    		d, exact := q.d.AsScale(scale)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults.go

    	for key, val := range *obj {
    		// TODO(#18538): We round up resource values to milli scale to maintain API compatibility.
    		// In the future, we should instead reject values that need rounding.
    		const milliScale = -3
    		val.RoundUp(milliScale)
    
    		(*obj)[v1.ResourceName(key)] = val
    	}
    }
    
    func SetDefaults_ReplicationController(obj *v1.ReplicationController) {
    	var labels map[string]string
    	if obj.Spec.Template != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/abi.go

    	}
    
    	ir.InitLSym(fn, true)
    
    	setupWasmABI(fn)
    
    	pp := objw.NewProgs(fn, 0)
    	defer pp.Free()
    	pp.Text.To.Type = obj.TYPE_TEXTSIZE
    	pp.Text.To.Val = int32(types.RoundUp(fn.Type().ArgWidth(), int64(types.RegSize)))
    	// Wrapper functions never need their own stack frame
    	pp.Text.To.Offset = 0
    	pp.Flush()
    
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top