Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 939 for integers (0.21 sec)

  1. src/encoding/binary/binary.go

    	"errors"
    	"io"
    	"math"
    	"reflect"
    	"slices"
    	"sync"
    )
    
    var errBufferTooSmall = errors.New("buffer too small")
    
    // A ByteOrder specifies how to convert byte slices into
    // 16-, 32-, or 64-bit unsigned integers.
    //
    // It is implemented by [LittleEndian], [BigEndian], and [NativeEndian].
    type ByteOrder interface {
    	Uint16([]byte) uint16
    	Uint32([]byte) uint32
    	Uint64([]byte) uint64
    	PutUint16([]byte, uint16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/math/big/nat.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements unsigned multi-precision integers (natural
    // numbers). They are the building blocks for the implementation
    // of signed integers, rationals, and floating-point numbers.
    //
    // Caution: This implementation relies on the function "alias"
    //          which assumes that (nat) slice capacities are never
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. src/runtime/chan_test.go

    			}()
    			time.Sleep(time.Millisecond)
    			close(c)
    			if !<-done {
    				t.Fatalf("chan[%d]: received non zero from closed chan", chanCap)
    			}
    		}
    
    		{
    			// Send 100 integers,
    			// ensure that we receive them non-corrupted in FIFO order.
    			c := make(chan int, chanCap)
    			go func() {
    				for i := 0; i < 100; i++ {
    					c <- i
    				}
    			}()
    			for i := 0; i < 100; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

            auto result,
            this->ExecuteProgramAndReturnSingleResult(executable.get(), arguments));
    
        // Convert to double for comparison. This is needed for comparing integers
        // since it LiteralTestUtil asserts different integers even if it is within
        // error_spec.
        TF_ASSERT_OK_AND_ASSIGN(auto expected_double, expected->Convert(xla::F64))
        TF_ASSERT_OK_AND_ASSIGN(auto result_double, result->Convert(xla::F64))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/StatsTesting.java

      static final double INTEGER_MANY_VALUES_MIN = -4444.0;
    
      // Integers which will overflow if summed (using integer arithmetic):
      static final int[] LARGE_INTEGER_VALUES = {Integer.MAX_VALUE, Integer.MAX_VALUE / 2};
      static final double LARGE_INTEGER_VALUES_MEAN =
          BigInteger.valueOf(Integer.MAX_VALUE)
              .multiply(BigInteger.valueOf(3L))
              .divide(BigInteger.valueOf(4L))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 09 22:49:56 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. src/syscall/syscall_darwin.go

    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    	if err != nil {
    		return nil, err
    	}
    
    	// Magic sysctl: "setting" 0.3 to a string name
    	// lets you read back the array of integers form.
    	if err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {
    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Rint is specified as RoundHalfToEven, which happens to be the same behavior
    // as TF_RoundOp, so lower to TF_RoundOp.
    def LowerRintOp : Pat<(TF_RintOp:$res TF_FloatTensor:$input), (TF_RoundOp $input)>;
    
    // Rounds on integers should just be bypassed.
    def LowerRoundOpOnIntTensor : Pat<
      (TF_RoundOp:$res TF_IntTensor:$input),
      (TF_IdentityOp $input)>;
    
    // Implements TF Round on floats using basic operations. TF Round is specified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

    //===----------------------------------------------------------------------===//
    
    def TFR_TFRQuantActRangeOp : TFR_Op<"quant_act_range", [Pure]> {
      let description = [{
       The `quant_act_range` returns the a pair of integers to indicate the fixed
       range for the fused activation `act` with the quantization defined by the
       `scale` and `zero point`. Currently, the allowed activations are
       `NONE`, `RELU`, `RELU6` and `RELU_N1_TO_1`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/regexp/regexp.go

    	var dstCap [2]int
    	a := re.doExecute(nil, b, "", 0, 2, dstCap[:0])
    	if a == nil {
    		return nil
    	}
    	return b[a[0]:a[1]:a[1]]
    }
    
    // FindIndex returns a two-element slice of integers defining the location of
    // the leftmost match in b of the regular expression. The match itself is at
    // b[loc[0]:loc[1]].
    // A return value of nil indicates no match.
    func (re *Regexp) FindIndex(b []byte) (loc []int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    	p := (*byte)(unsafe.Pointer(&buf[0]))
    	bytes, err := ByteSliceFromString(name)
    	if err != nil {
    		return nil, err
    	}
    
    	// Magic sysctl: "setting" 0.3 to a string name
    	// lets you read back the array of integers form.
    	if err = sysctl([]_C_int{0, 3}, p, &n, &bytes[0], uintptr(len(name))); err != nil {
    		return nil, err
    	}
    	return buf[0 : n/siz], nil
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top