Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 137 for t4 (0.02 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    	=> x
    (Load <t1> p1 (Store {t2} p2 _ (Store {t3} p3 _ (Store {t4} p4 x _))))
    	&& isSamePtr(p1, p4)
    	&& t1.Compare(x.Type) == types.CMPeq
    	&& t1.Size() == t2.Size()
    	&& disjoint(p4, t4.Size(), p2, t2.Size())
    	&& disjoint(p4, t4.Size(), p3, t3.Size())
    	=> x
    (Load <t1> p1 (Store {t2} p2 _ (Store {t3} p3 _ (Store {t4} p4 _ (Store {t5} p5 x _)))))
    	&& isSamePtr(p1, p5)
    	&& t1.Compare(x.Type) == types.CMPeq
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/init2.go

    // cycles through method expressions
    
    type T3 int
    func (T3) m() int { _ = x3; return 0 }
    var x3 /* ERROR "initialization cycle" */ = T3.m
    
    type T4 int
    func (T4) m() int { _ = x4; return 0 }
    var x4 /* ERROR "initialization cycle" */ = T4.m(0)
    
    type T3p int
    func (*T3p) m() int { _ = x3p; return 0 }
    var x3p /* ERROR "initialization cycle" */ = (*T3p).m
    
    type T4p int
    func (*T4p) m() int { _ = x4p; return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/cycles5a.go

    var _ = err.Error()
    
    
    // more esoteric cases
    
    type (
    	T1 interface { T2 }
    	T2 /* ERROR "invalid recursive type" */ T2
    )
    
    type (
    	T3 interface { T4 }
    	T4 /* ERROR "invalid recursive type" */ T5
    	T5 = T6
    	T6 = T7
    	T7 = T4
    )
    
    
    // arbitrary code may appear inside an interface
    
    const n = unsafe.Sizeof(func(){})
    
    type I interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

      T0 f0_;
      T1 f1_;
      T2 f2_;
      T3 f3_;
      T4 f4_;
    };
    
    template <GTEST_6_TYPENAMES_(T)>
    class GTEST_6_TUPLE_(T) {
     public:
      template <int k> friend class gtest_internal::Get;
    
      tuple() : f0_(), f1_(), f2_(), f3_(), f4_(), f5_() {}
    
      explicit tuple(GTEST_BY_REF_(T0) f0, GTEST_BY_REF_(T1) f1,
          GTEST_BY_REF_(T2) f2, GTEST_BY_REF_(T3) f3, GTEST_BY_REF_(T4) f4,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/cycles4.go

    	// a single method m that refers to the very interface
    	// that contains it. This requires cycle detection in
    	// identity checks for interface types.
    	x = y
    }
    
    type T3 interface {
    	m() interface{T4}
    }
    
    type T4 interface {
    	m() interface{T3}
    }
    
    func _(x T1, y T3) {
    	x = y
    }
    
    // Check that interfaces are type-checked in order of
    // (embedded interface) dependencies (was issue 7158).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/runtime/utf8.go

    				return
    			}
    		}
    	case t3 <= s[0] && s[0] < t4:
    		// 0800-FFFF three byte sequence
    		if len(s) > 2 && (locb <= s[1] && s[1] <= hicb) && (locb <= s[2] && s[2] <= hicb) {
    			r = rune(s[0]&mask3)<<12 | rune(s[1]&maskx)<<6 | rune(s[2]&maskx)
    			pos += 3
    			if rune2Max < r && !(surrogateMin <= r && r <= surrogateMax) {
    				return
    			}
    		}
    	case t4 <= s[0] && s[0] < t5:
    		// 10000-1FFFFF four byte sequence
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/cycles0.go

    package cycles
    
    import "unsafe"
    
    type (
    	T0 int
    	T1 /* ERROR "invalid recursive type: T1 refers to itself" */ T1
    	T2 *T2
    
    	T3 /* ERROR "invalid recursive type" */ T4
    	T4 T5
    	T5 T3
    
    	T6 T7
    	T7 *T8
    	T8 T6
    
    	// arrays
    	A0 /* ERROR "invalid recursive type" */ [10]A0
    	A1 [10]*A1
    
    	A2 /* ERROR "invalid recursive type" */ [10]A3
    	A3 [10]A4
    	A4 A2
    
    	A5 [10]A6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_s390x.s

    X=Y;  Y- ;  MUL;X=T  // T3 = T1*T1         T2
    X- ;  Y- ;  MUL;T4=T // T4 = T3*T1         T2        T4
    X- ;  Y=X1; MUL;T3=T // T3 = T3*X1         T2   T3   T4
    ADD(T1<T+T)          // T1 = T3+T3    T1   T2   T3   T4
    X=T2; Y=T2; MUL;T-   // X3 = T2*T2    T1   T2   T3   T4
    SUB(T<T-T1)          // X3 = X3-T1    T1   T2   T3   T4
    SUB(T<T-T4) X3:=T    // X3 = X3-T4         T2   T3   T4
    SUB(X<T3-T)          // T3 = T3-X3         T2   T3   T4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/tables_test.go

    	table.FromP3(B)
    
    	var tmp1, tmp2, tmp3, tmp4 projCached
    	table.SelectInto(&tmp1, 9)
    	table.SelectInto(&tmp2, 11)
    	table.SelectInto(&tmp3, 7)
    	table.SelectInto(&tmp4, 13)
    	// Expect T1 + T2 = T3 + T4
    
    	var accP1xP1 projP1xP1
    	lhs := NewIdentityPoint()
    	rhs := NewIdentityPoint()
    
    	accP1xP1.Add(lhs, &tmp1)
    	lhs.fromP1xP1(&accP1xP1)
    	accP1xP1.Add(lhs, &tmp2)
    	lhs.fromP1xP1(&accP1xP1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. pkg/queue/delay_test.go

    	t0 := time.Now()
    	t1 := &delayTask{runAt: t0.Add(0)}
    	t2 := &delayTask{runAt: t0.Add(1 * time.Hour)}
    	t3 := &delayTask{runAt: t0.Add(2 * time.Hour)}
    	t4 := &delayTask{runAt: t0.Add(3 * time.Hour)}
    	sorted := []*delayTask{t1, t2, t3, t4}
    	// fill in an unsorted order
    	unsorted := []*delayTask{t4, t2, t3, t1}
    	for _, task := range unsorted {
    		heap.Push(pq, task)
    	}
    
    	// dequeue should be in order
    	for i, task := range sorted {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top