Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 512 for intp (0.19 sec)

  1. test/live.go

    // live variables.
    
    func f26(b bool) {
    	if b {
    		print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "stack object .autotmp_[0-9]+ \[3\]interface \{\}$"
    	}
    	print26((*int)(nil), (*int)(nil), (*int)(nil))
    	print26((*int)(nil), (*int)(nil), (*int)(nil))
    	printnl()
    }
    
    //go:noescape
    func print26(...interface{})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. test/live_regabi.go

    // live variables.
    
    func f26(b bool) {
    	if b {
    		print26((*int)(nil), (*int)(nil), (*int)(nil)) // ERROR "stack object .autotmp_[0-9]+ \[3\]interface \{\}$"
    	}
    	print26((*int)(nil), (*int)(nil), (*int)(nil))
    	print26((*int)(nil), (*int)(nil), (*int)(nil))
    	printnl()
    }
    
    //go:noescape
    func print26(...interface{})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Ints.java

       * Returns the values from each provided array combined into a single array. For example, {@code
       * concat(new int[] {a, b}, new int[] {}, new int[] {c}} returns the array {@code {a, b, c}}.
       *
       * @param arrays zero or more {@code int} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static int[] concat(int[]... arrays) {
        int length = 0;
        for (int[] array : arrays) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Ints.java

       * Returns the values from each provided array combined into a single array. For example, {@code
       * concat(new int[] {a, b}, new int[] {}, new int[] {c}} returns the array {@code {a, b, c}}.
       *
       * @param arrays zero or more {@code int} arrays
       * @return a single array containing all the values from the source arrays, in order
       */
      public static int[] concat(int[]... arrays) {
        int length = 0;
        for (int[] array : arrays) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  5. src/math/big/int.go

    func (z *Int) lehmerGCD(x, y, a, b *Int) *Int {
    	var A, B, Ua, Ub *Int
    
    	A = new(Int).Abs(a)
    	B = new(Int).Abs(b)
    
    	extended := x != nil || y != nil
    
    	if extended {
    		// Ua (Ub) tracks how many times input a has been accumulated into A (B).
    		Ua = new(Int).SetInt64(1)
    		Ub = new(Int)
    	}
    
    	// temp variables for multiprecision update
    	q := new(Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/math/rand/rand.go

    			low = uint32(prod)
    		}
    	}
    	return int32(prod >> 32)
    }
    
    // Intn returns, as an int, a non-negative pseudo-random number in the half-open interval [0,n).
    // It panics if n <= 0.
    func (r *Rand) Intn(n int) int {
    	if n <= 0 {
    		panic("invalid argument to Intn")
    	}
    	if n <= 1<<31-1 {
    		return int(r.Int31n(int32(n)))
    	}
    	return int(r.Int63n(int64(n)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/abiutils_test.go

    	exp := makeExpectedDump(`
            IN 0: R{ I0 } spilloffset: 0 typ: int8
            IN 1: R{ I1 I2 I3 I4 } spilloffset: 2 typ: struct { int8; int8; struct {}; int8; int16 }
            IN 2: R{ I5 } spilloffset: 8 typ: int64
            OUT 0: R{ I0 I1 I2 I3 } spilloffset: -1 typ: struct { int8; int8; struct {}; int8; int16 }
            OUT 1: R{ I4 } spilloffset: -1 typ: int8
            OUT 2: R{ I5 } spilloffset: -1 typ: int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor_test.cc

          mlir::FloatType::getFloat8E4M3FN(&context)));
    
      ASSERT_NO_FATAL_FAILURE(VerifyConversion<int4>(
          {static_cast<int4>(1), static_cast<int4>(-1)}, DT_INT4,
          mlir::IntegerType::get(&context, 4,
                                 mlir::IntegerType::SignednessSemantics::Signed)));
      ASSERT_NO_FATAL_FAILURE(VerifyConversion<int8>(
          {1, -1}, DT_INT8, mlir::IntegerType::get(&context, 8)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. src/testing/quick/quick.go

    	"reflect"
    	"strings"
    	"time"
    )
    
    var defaultMaxCount *int = flag.Int("quickchecks", 100, "The default number of iterations for each check")
    
    // A Generator can generate random values of its own type.
    type Generator interface {
    	// Generate returns a random instance of the type on which it is a
    	// method using the size as a size hint.
    	Generate(rand *rand.Rand, size int) reflect.Value
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/logic_test.go

    		golden func(int8) int8
    	}{
    		{"x|x", func(x int8) int8 { return x | x }, id},
    		{"x|0", func(x int8) int8 { return x | 0 }, id},
    		{"x|-1", func(x int8) int8 { return x | -1 }, func(x int8) int8 { return -1 }},
    		{"x&x", func(x int8) int8 { return x & x }, id},
    		{"x&0", func(x int8) int8 { return x & 0 }, zero},
    		{"x&-1", func(x int8) int8 { return x & -1 }, id},
    		{"x^x", func(x int8) int8 { return x ^ x }, zero},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top