Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for 42 (0.18 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	VREDUCESS $42, X9, X24, K7, X3                     // 62d33d0757d92a
    	VREDUCESS $42, X15, X24, K7, X3                    // 62d33d0757df2a
    	VREDUCESS $42, X26, X24, K7, X3                    // 62933d0757da2a
    	VREDUCESS $42, X9, X13, K7, X26                    // 6243150f57d12a
    	VREDUCESS $42, X15, X13, K7, X26                   // 6243150f57d72a
    	VREDUCESS $42, X26, X13, K7, X26                   // 6203150f57d22a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 194.8K bytes
    - Viewed (0)
  2. api/go1.3.txt

    pkg syscall (freebsd-386), const AF_INET6_SDP = 42
    pkg syscall (freebsd-386), const AF_INET6_SDP ideal-int
    pkg syscall (freebsd-386), const AF_INET_SDP = 40
    pkg syscall (freebsd-386), const AF_INET_SDP ideal-int
    pkg syscall (freebsd-386), const AF_MAX = 42
    pkg syscall (freebsd-386), const DLT_MATCHING_MAX = 246
    pkg syscall (freebsd-386), const DLT_MPEG_2_TS = 243
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/mips64.s

    //	LMOVH addr ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVH	foo<>+3(SB), R2
    	MOVH	(R20), R7	// 86870000
    	MOVH	54(R11), R26	// 857a0036
    	MOVH	-42(R3), R20	// 8474ffd6
    	MOVHU	(R20), R7	// 96870000
    	MOVHU	54(R11), R26	// 957a0036
    	MOVHU	-42(R3), R20	// 9474ffd6
    
    //	LMOVB addr ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVB	foo<>+3(SB), R2
    	MOVB	(R4), R21	// 80950000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VCMPPS $42, Z0, Z24, K2, K5                        // 62f13c42c2e82a
    	VCMPPS $42, Z26, Z24, K2, K5                       // 62913c42c2ea2a
    	VCMPPS $42, Z0, Z12, K2, K5                        // 62f11c4ac2e82a
    	VCMPPS $42, Z26, Z12, K2, K5                       // 62911c4ac2ea2a
    	VCMPPS $42, Z0, Z24, K2, K4                        // 62f13c42c2e02a
    	VCMPPS $42, Z26, Z24, K2, K4                       // 62913c42c2e22a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 410.5K bytes
    - Viewed (0)
  5. src/bytes/bytes_test.go

    	}
    }
    
    func TestClone(t *testing.T) {
    	var cloneTests = [][]byte{
    		[]byte(nil),
    		[]byte{},
    		Clone([]byte{}),
    		[]byte(strings.Repeat("a", 42))[:0],
    		[]byte(strings.Repeat("a", 42))[:0:0],
    		[]byte("short"),
    		[]byte(strings.Repeat("a", 42)),
    	}
    	for _, input := range cloneTests {
    		clone := Clone(input)
    		if !Equal(clone, input) {
    			t.Errorf("Clone(%q) = %q; want %q", input, clone, input)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s

    	VPSHRDQ $42, X19, X14, K3, X13                     // 62338d0b73eb2a
    	VPSHRDQ $42, X8, X14, K3, X13                      // 62538d0b73e82a
    	VPSHRDQ $42, -7(DI)(R8*1), X14, K3, X13            // 62338d0b73ac07f9ffffff2a
    	VPSHRDQ $42, (SP), X14, K3, X13                    // 62738d0b732c242a
    	VPSHRDQ $42, X14, X11, K3, X13                     // 6253a50b73ee2a
    	VPSHRDQ $42, X19, X11, K3, X13                     // 6233a50b73eb2a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 97.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    	c = 3          // c == 3  (iota == 2, unused)
    	d = 1 &lt;&lt; iota  // d == 8  (iota == 3)
    )
    
    const (
    	u         = iota * 42  // u == 0     (untyped integer constant)
    	v float64 = iota * 42  // v == 42.0  (float64 constant)
    	w         = iota * 42  // w == 84    (untyped integer constant)
    )
    
    const x = iota  // x == 0
    const y = iota  // y == 0
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/arena/arena_test.go

    	tt.n = 1
    
    	ts := arena.MakeSlice[T1](a, 99, 100)
    	if len(ts) != 99 {
    		t.Errorf("Slice() len = %d, want 99", len(ts))
    	}
    	if cap(ts) != 100 {
    		t.Errorf("Slice() cap = %d, want 100", cap(ts))
    	}
    	ts[1].n = 42
    }
    
    func TestSmokeLarge(t *testing.T) {
    	a := arena.NewArena()
    	defer a.Free()
    	for i := 0; i < 10*64; i++ {
    		_ = arena.New[T2](a)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 742 bytes
    - Viewed (0)
  9. src/archive/zip/reader_test.go

    00000a0 ff c2 54 8e 57 39 00 05 00 fa ff 00 05 00 fa ff
    00000b0 00 14 00 eb ff 42 88 21 c4 00 00 14 00 eb ff 42
    00000c0 88 21 c4 00 00 14 00 eb ff 42 88 21 c4 00 00 14
    00000d0 00 eb ff 42 88 21 c4 00 00 14 00 eb ff 42 88 21
    00000e0 c4 00 00 00 00 ff ff 00 00 00 ff ff 00 34 00 cb
    00000f0 ff 42 88 21 c4 00 00 00 00 ff ff 00 00 00 ff ff
    0000100 00 34 00 cb ff 42 e8 21 5e 0f 00 00 00 ff ff 0a
    0000110 f0 66 64 12 61 c0 15 dc e8 a0 48 bf 48 af 2a b3
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const AF_IMPLINK = 3 #53466
    pkg syscall (freebsd-riscv64), const AF_IMPLINK ideal-int #53466
    pkg syscall (freebsd-riscv64), const AF_INET6 = 28 #53466
    pkg syscall (freebsd-riscv64), const AF_INET6_SDP = 42 #53466
    pkg syscall (freebsd-riscv64), const AF_INET6_SDP ideal-int #53466
    pkg syscall (freebsd-riscv64), const AF_INET_SDP = 40 #53466
    pkg syscall (freebsd-riscv64), const AF_INET_SDP ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
Back to top