Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 137 for t4 (0.02 sec)

  1. src/internal/zstd/literals.go

    			return nil, err
    		}
    
    		t3, err := fetchHuff(&rbr3)
    		if err != nil {
    			return nil, err
    		}
    
    		if use4 {
    			t4, err := fetchHuff(&rbr4)
    			if err != nil {
    				return nil, err
    			}
    			outbuf[out4] = byte(t4 >> 8)
    			out4++
    			rbr4.cnt -= uint32(t4 & 0xff)
    		}
    
    		outbuf[out1] = byte(t1 >> 8)
    		out1++
    		rbr1.cnt -= uint32(t1 & 0xff)
    
    		outbuf[out2] = byte(t2 >> 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. src/runtime/runtime_test.go

    		t.Errorf("sizeof(%#v)==%d, want 2", T3{}, unsafe.Sizeof(T3{}))
    	}
    	// make sure padding can double for both zerosize and alignment
    	type T4 struct {
    		a int32
    		b int16
    		c int8
    		z struct{}
    	}
    	if unsafe.Sizeof(T4{}) != 8 {
    		t.Errorf("sizeof(%#v)==%d, want 8", T4{}, unsafe.Sizeof(T4{}))
    	}
    	// make sure we don't pad a zero-sized thing
    	type T5 struct {
    	}
    	if unsafe.Sizeof(T5{}) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    
    // Helper function for implementing {EXPECT|ASSERT}_PRED4.  Don't use
    // this in your code.
    template <typename Pred,
              typename T1,
              typename T2,
              typename T3,
              typename T4>
    AssertionResult AssertPred4Helper(const char* pred_text,
                                      const char* e1,
                                      const char* e2,
                                      const char* e3,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/testdata/exports.go

    	C4          = +123.456e+789
    	C5          = 1234i
    	C6          = "foo\n"
    	C7          = `bar\n`
    	C8          = 42
    	C9  int     = 42
    	C10 float64 = 42
    )
    
    type (
    	T1  int
    	T2  [10]int
    	T3  []int
    	T4  *int
    	T5  chan int
    	T6a chan<- int
    	T6b chan (<-chan int)
    	T6c chan<- (chan int)
    	T7  <-chan *ast.File
    	T8  struct{}
    	T9  struct {
    		a    int
    		b, c float32
    		d    []string `go:"tag"`
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			indexFields:   []string{"spec.nodeName"},
    			watchTests: []*testWatchStruct{
    				{baseNamespacedPod("t4-foo1", "t4-ns1"), true, watch.Added},
    				{baseNamespacedPod("t4-foo2", "t4-ns1"), true, watch.Added},
    				{baseNamespacedPodUpdated("t4-foo1", "t4-ns1"), true, watch.Modified},
    				{baseNamespacedPodAssigned("t4-foo1", "t4-ns1", "t4-bar1"), true, watch.Deleted},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/testdata/aliases.gox

    type <type 21 "A14" = <type 22 (? <type -11>, ? <type 1>) <type 23 chan <type 18>>>>;
    type <type 18>;
    type <type 24 "A3" = <type 25 "T3" <type 26 interface { .go.aliases.m () <type 19>; }>>>;
    type <type 27 "A4" = <type 28 "T4" <type 29 (? <type -11>, ? <type 2>) <type 30 chan <type 19>>>>>;
    type <type 31 "Ai" = <type -11>>;
    type <type 32 "C0" <type 33 struct { .go.aliases.f1 <type 34 "C1" <type 35 *<type 32>>>; .go.aliases.f2 <type 36 "C2" = <type 34>>; }>>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/copy_test.go

    	}
    }
    
    type T4 struct {
    	pre  [8]byte
    	mid  [4]byte
    	post [8]byte
    }
    
    //go:noinline
    func t4copy_ssa(y, x *[4]byte) {
    	*y = *x
    }
    func testCopy4(t *testing.T) {
    	a := T4{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [4]byte{0, 1, 2, 3}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [4]byte{100, 101, 102, 103}
    	t4copy_ssa(&a.mid, &x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/edwards25519.go

    func (v *Point) Equal(u *Point) int {
    	checkInitialized(v, u)
    
    	var t1, t2, t3, t4 field.Element
    	t1.Multiply(&v.x, &u.z)
    	t2.Multiply(&u.x, &v.z)
    	t3.Multiply(&v.y, &u.z)
    	t4.Multiply(&u.y, &v.z)
    
    	return t1.Equal(&t2) & t3.Equal(&t4)
    }
    
    // Constant-time operations
    
    // Select sets v to a if cond == 1 and to b if cond == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/runtime/signal_openbsd_riscv64.go

    func (c *sigctxt) s10() uint64 { return uint64(c.regs().sc_s[10]) }
    func (c *sigctxt) s11() uint64 { return uint64(c.regs().sc_s[11]) }
    func (c *sigctxt) t3() uint64  { return uint64(c.regs().sc_t[3]) }
    func (c *sigctxt) t4() uint64  { return uint64(c.regs().sc_t[4]) }
    func (c *sigctxt) t5() uint64  { return uint64(c.regs().sc_t[5]) }
    func (c *sigctxt) t6() uint64  { return uint64(c.regs().sc_t[6]) }
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/runtime/defs_linux_riscv64.go

    	a5  uint64
    	a6  uint64
    	a7  uint64
    	s2  uint64
    	s3  uint64
    	s4  uint64
    	s5  uint64
    	s6  uint64
    	s7  uint64
    	s8  uint64
    	s9  uint64
    	s10 uint64
    	s11 uint64
    	t3  uint64
    	t4  uint64
    	t5  uint64
    	t6  uint64
    }
    
    type user_fpregs_struct struct {
    	f [528]byte
    }
    
    type usigset struct {
    	us_x__val [16]uint64
    }
    
    type sigcontext struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top