Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 154 for arithmetic (0.22 sec)

  1. guava/src/com/google/common/math/PairedStatsAccumulator.java

        // We extend the recursive expression for the one-variable case at Art of Computer Programming
        // vol. 2, Knuth, 4.2.2, (16) to the two-variable case. We have two value series x_i and y_i.
        // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
        // We also define the sum of the products of the differences from the means
        //           C_n = \sum_{i=1}^n x_i y_i - n X_n Y_n
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/image/draw/draw.go

    			// dr |= dr << 8
    			// and similarly for dg, db and da, but instead we multiply a
    			// (which is a 16-bit color, ranging in [0,65535]) by 0x101.
    			// This yields the same result, but is fewer arithmetic operations.
    			a := (m - (sa * ma / m)) * 0x101
    
    			d[0] = uint8((dr*a + sy*ma) / m >> 8)
    			d[1] = uint8((dg*a + sy*ma) / m >> 8)
    			d[2] = uint8((db*a + sy*ma) / m >> 8)
    			d[3] = uint8((da*a + sa*ma) / m >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/gen/constFoldGen.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This program generates a test to verify that the standard arithmetic
    // operators properly handle constant folding. The test file should be
    // generated with a known working version of go.
    // launch with `go run constFoldGen.go` a file called constFold_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // quantity("9999999999999999999999999999999999999G").isInteger() // returns false
    // quantity("50k").asInteger() == 50000 // returns true
    // quantity("50k").sub(20000).asApproximateFloat() == 30000 // returns true
    //
    // Arithmetic
    //
    //   - sign: Returns `1` if the quantity is positive, `-1` if it is negative. `0` if it is zero
    //
    //   - add: Returns sum of two quantities or a quantity and an integer
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/hash/maphash/maphash.go

    // last call to [Hash.Reset] or [Hash.SetSeed].
    //
    // All bits of the Sum64 result are close to uniformly and
    // independently distributed, so it can be safely reduced
    // by using bit masking, shifting, or modular arithmetic.
    func (h *Hash) Sum64() uint64 {
    	h.initSeed()
    	return rthash(h.buf[:h.n], h.state.s)
    }
    
    // MakeSeed returns a new random seed.
    func MakeSeed() Seed {
    	var s uint64
    	for {
    		s = randUint64()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/PairedStatsAccumulator.java

        // We extend the recursive expression for the one-variable case at Art of Computer Programming
        // vol. 2, Knuth, 4.2.2, (16) to the two-variable case. We have two value series x_i and y_i.
        // We define the arithmetic means X_n = 1/n \sum_{i=1}^n x_i, and Y_n = 1/n \sum_{i=1}^n y_i.
        // We also define the sum of the products of the differences from the means
        //           C_n = \sum_{i=1}^n x_i y_i - n X_n Y_n
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/internal/coverage/cformat/format.go

    	pcount := fm.p.unitTable[ukey]
    	var result uint32
    	if fm.cm == coverage.CtrModeSet {
    		if count != 0 || pcount != 0 {
    			result = 1
    		}
    	} else {
    		// Use saturating arithmetic.
    		result, _ = cmerge.SaturatingAdd(pcount, count)
    	}
    	fm.p.unitTable[ukey] = result
    }
    
    // sortUnits sorts a slice of extcu objects in a package according to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck.go

    		for _, v := range b.Values {
    			// a value resulting from taking the address of a
    			// value, or a value constructed from an offset of a
    			// non-nil ptr (OpAddPtr) implies it is non-nil
    			// We also assume unsafe pointer arithmetic generates non-nil pointers. See #27180.
    			// We assume that SlicePtr is non-nil because we do a bounds check
    			// before the slice access (and all cap>0 slices have a non-nil ptr). See #30366.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/a.out.go

    	C_GOTADDR  // GOT slot for a symbol in -dynlink mode
    	C_TEXTSIZE // text size
    	C_ANY
    	C_NCLASS // must be the last
    )
    
    const (
    	// integer arithmetic
    	AADD = obj.ABaseS390X + obj.A_ARCHSPECIFIC + iota
    	AADDC
    	AADDE
    	AADDW
    	ADIVW
    	ADIVWU
    	ADIVD
    	ADIVDU
    	AMODW
    	AMODWU
    	AMODD
    	AMODDU
    	AMULLW
    	AMULLD
    	AMULHD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasTHUMB    bool // ARM Thumb instruction set
    	Has26BIT    bool // Address space limited to 26-bits
    	HasFASTMUL  bool // 32-bit operand, 64-bit result multiplication support
    	HasFPA      bool // Floating point arithmetic support
    	HasVFP      bool // Vector floating point support
    	HasEDSP     bool // DSP Extensions support
    	HasJAVA     bool // Java instruction set
    	HasIWMMXT   bool // Intel Wireless MMX technology support
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top