Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 310 for roundup (0.34 sec)

  1. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		// The remaining 18 rounds.
    		for i := 0; i < 9; i++ {
    			// Column round.
    			x0, x4, x8, x12 = quarterRound(x0, x4, x8, x12)
    			x1, x5, x9, x13 = quarterRound(x1, x5, x9, x13)
    			x2, x6, x10, x14 = quarterRound(x2, x6, x10, x14)
    			x3, x7, x11, x15 = quarterRound(x3, x7, x11, x15)
    
    			// Diagonal round.
    			x0, x5, x10, x15 = quarterRound(x0, x5, x10, x15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  2. pkg/quota/v1/evaluator/core/persistent_volume_claims_test.go

    				generic.ObjectCountQuotaResourceNameFor(schema.GroupResource{Resource: "persistentvolumeclaims"}): resource.MustParse("1"),
    			},
    			enableRecoverFromExpansion: true,
    		},
    
    		"pvc-usage-rounded": {
    			pvc: validClaimWithNonIntegerStorage,
    			usage: corev1.ResourceList{
    				corev1.ResourceRequestsStorage:        resource.MustParse("2"), // 1001m -> 2
    				corev1.ResourcePersistentVolumeClaims: resource.MustParse("1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue14553.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test checks if the compiler's internal constant
    // arithmetic correctly rounds denormal float32 values.
    
    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    func main() {
    	for _, t := range []struct {
    		value float32
    		bits  uint32
    	}{
    		{0e+00, 0x00000000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 17:09:29 UTC 2016
    - 940 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named_test.go

    			T.AddMethod(m)
    		}
    
    		// check method order
    		if i == 0 {
    			// first round: collect methods in given order
    			methods = make([]string, T.NumMethods())
    			for j := range methods {
    				methods[j] = T.Method(j).Name()
    			}
    		} else {
    			// successive rounds: methods must appear in the same order
    			if got := T.NumMethods(); got != len(methods) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	VREPF $3, KEY1, X11
    	VLR   CTR, X12
    	VREPF $1, NONCE, X13
    	VREPF $2, NONCE, X14
    	VREPF $3, NONCE, X15
    
    	MOVD $(NUM_ROUNDS/2), R1
    
    loop:
    	ROUND4(X0, X4, X12,  X8, X1, X5, X13,  X9, X2, X6, X14, X10, X3, X7, X15, X11)
    	ROUND4(X0, X5, X15, X10, X1, X6, X12, X11, X2, X7, X13, X8,  X3, X4, X14, X9)
    
    	ADD $-1, R1
    	BNE loop
    
    	// decrement length
    	ADD $-256, R4
    
    	// rearrange vectors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/DoubleUtils.java

        }
    
        /*
         * We need the top SIGNIFICAND_BITS + 1 bits, including the "implicit" one bit. To make rounding
         * easier, we pick out the top SIGNIFICAND_BITS + 2 bits, so we have one to help us round up or
         * down. twiceSignifFloor will contain the top SIGNIFICAND_BITS + 2 bits, and signifFloor the
         * top SIGNIFICAND_BITS + 1.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:37:52 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. src/math/sqrt.go

    // software is freely granted, provided that this notice
    // is preserved.
    // ====================================================
    //
    // __ieee754_sqrt(x)
    // Return correctly rounded sqrt.
    //           -----------------------------------------
    //           | Use the hardware sqrt if you have one |
    //           -----------------------------------------
    // Method:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. src/strconv/atof.go

    	for mantissa > 1 && exp < minExp-2 {
    		mantissa = mantissa>>1 | mantissa&1
    		exp++
    	}
    
    	// Round using two bottom bits.
    	round := mantissa & 3
    	mantissa >>= 2
    	round |= mantissa & 1 // round to even (round up if mantissa is odd)
    	exp += 2
    	if round == 3 {
    		mantissa++
    		if mantissa == 1<<(1+flt.mantbits) {
    			mantissa >>= 1
    			exp++
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	ROUNDPD $7, X11, X11                    // 66450f3a09db07
    	ROUNDPS $7, (BX), X2                    // 660f3a081307
    	ROUNDPS $7, (R11), X2                   // 66410f3a081307
    	ROUNDPS $7, X2, X2                      // 660f3a08d207
    	ROUNDPS $7, X11, X2                     // 66410f3a08d307
    	ROUNDPS $7, (BX), X11                   // 66440f3a081b07
    	ROUNDPS $7, (R11), X11                  // 66450f3a081b07
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/example/fuzzer/fuzzer.go

    	return []interface{}{
    		func(j *runtime.Object, c fuzz.Continue) {
    			// TODO: uncomment when round trip starts from a versioned object
    			if true { //c.RandBool() {
    				*j = &runtime.Unknown{
    					// We do not set TypeMeta here because it is not carried through a round trip
    					Raw:         []byte(`{"apiVersion":"unknown.group/unknown","kind":"Something","someKey":"someValue"}`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 01 19:31:12 UTC 2018
    - 3K bytes
    - Viewed (0)
Back to top