Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for 0xabcd (0.21 sec)

  1. src/cmd/compile/internal/test/testdata/unsafe_test.go

    	a = new([8]uint)
    	for i := 0; i < 8; i++ {
    		a[i] = 0xabcd
    	}
    	c := f_ssa()
    	for i := 0; i < 8; i++ {
    		if c[i] != 0xabcd {
    			t.Fatalf("%d:%x\n", i, c[i])
    		}
    	}
    }
    
    func testg(t *testing.T) {
    	a = new([8]uint)
    	for i := 0; i < 8; i++ {
    		a[i] = 0xabcd
    	}
    	c := g_ssa()
    	for i := 0; i < 7; i++ {
    		if c[i] != 0xabcd {
    			t.Fatalf("%d:%x\n", i, c[i])
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 3K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssa/schedule_test.go

    )
    
    func TestSchedule(t *testing.T) {
    	c := testConfig(t)
    	cases := []fun{
    		c.Fun("entry",
    			Bloc("entry",
    				Valu("mem0", OpInitMem, types.TypeMem, 0, nil),
    				Valu("ptr", OpConst64, c.config.Types.Int64, 0xABCD, nil),
    				Valu("v", OpConst64, c.config.Types.Int64, 12, nil),
    				Valu("mem1", OpStore, types.TypeMem, 0, c.config.Types.Int64, "ptr", "v", "mem0"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_arm.s

    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	B	runtime·armPublicationBarrier(SB)
    
    // never called (this is a GOARM=7 platform)
    TEXT runtime·read_tls_fallback(SB),NOSPLIT,$0
    	MOVW	$0xabcd, R0
    	MOVW	R0, (R0)
    	RET
    
    TEXT runtime·nanotime1(SB),NOSPLIT,$0-8
    loop:
    	MOVW	time_hi1(R3), R1
    	DMB	MB_ISH
    	MOVW	time_lo(R3), R0
    	DMB	MB_ISH
    	MOVW	time_hi2(R3), R2
    	CMP	R1, R2
    	BNE	loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/scanner_test.go

    		{IntLit, "0x1g", "0x1 g", ""},
    
    		{ImagLit, "0xf00i", "0xf00i", ""},
    
    		// hexadecimal floats
    		{FloatLit, "0x0p0", "0x0p0", ""},
    		{FloatLit, "0x12efp-123", "0x12efp-123", ""},
    		{FloatLit, "0xABCD.p+0", "0xABCD.p+0", ""},
    		{FloatLit, "0x.0189P-0", "0x.0189P-0", ""},
    		{FloatLit, "0x1.ffffp+1023", "0x1.ffffp+1023", ""},
    
    		{FloatLit, "0x.", "0x.", "hexadecimal literal has no digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  5. src/fmt/fmt_test.go

    	{"%# 10x", []byte{0xab, 0xcd}, " 0xab 0xcd"},
    	{"%010x", []byte{0xab, 0xcd}, "000000abcd"},
    	{"% 010x", []byte{0xab, 0xcd}, "00000ab cd"},
    	{"%#010x", []byte{0xab, 0xcd}, "00000xabcd"},
    	{"%# 010x", []byte{0xab, 0xcd}, "00xab 0xcd"},
    	{"%-10X", []byte{0xab}, "AB        "},
    	{"% -010X", []byte{0xab}, "AB        "},
    	{"%#-10X", []byte{0xab, 0xcd}, "0XABCD    "},
    	{"%# -010X", []byte{0xab, 0xcd}, "0XAB 0XCD "},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  6. src/text/scanner/scanner_test.go

    		{Int, "0x", "0x", "hexadecimal literal has no digits"},
    		{Int, "0x1g", "0x1 g", ""},
    
    		// hexadecimal floats
    		{Float, "0x0p0", "0x0p0", ""},
    		{Float, "0x12efp-123", "0x12efp-123", ""},
    		{Float, "0xABCD.p+0", "0xABCD.p+0", ""},
    		{Float, "0x.0189P-0", "0x.0189P-0", ""},
    		{Float, "0x1.ffffp+1023", "0x1.ffffp+1023", ""},
    
    		{Float, "0x.", "0x.", "hexadecimal literal has no digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  7. src/go/scanner/scanner_test.go

    		{token.IMAG, "0xf00i", "0xf00i", ""},
    
    		// hexadecimal floats
    		{token.FLOAT, "0x0p0", "0x0p0", ""},
    		{token.FLOAT, "0x12efp-123", "0x12efp-123", ""},
    		{token.FLOAT, "0xABCD.p+0", "0xABCD.p+0", ""},
    		{token.FLOAT, "0x.0189P-0", "0x.0189P-0", ""},
    		{token.FLOAT, "0x1.ffffp+1023", "0x1.ffffp+1023", ""},
    
    		{token.FLOAT, "0x.", "0x.", "hexadecimal literal has no digits"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue31747.go

    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point literal requires go1.13 or later"
    
    	_ = 0b111 // ERROR "binary"
    	_ = 0o567 // ERROR "octal"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point"
    
    	_ = 1_000i // ERROR "underscore"
    	_ = 0b111i // ERROR "binary"
    	_ = 0o567i // ERROR "octal"
    	_ = 0xabci // ERROR "hexadecimal floating-point"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/go1_12.go

    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point literal requires go1.13 or later"
    
    	_ = 0b111 // ERROR "binary"
    	_ = 0o567 // ERROR "octal"
    	_ = 0xabc // ok
    	_ = 0x0p1 // ERROR "hexadecimal floating-point"
    
    	_ = 1_000i // ERROR "underscore"
    	_ = 0b111i // ERROR "binary"
    	_ = 0o567i // ERROR "octal"
    	_ = 0xabci // ERROR "hexadecimal floating-point"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRendererTest.groovy

            signatureFailure("Maven", ['abcd': signatureError(FAILED)])             | 'Artifact was signed with key abcd (not found) but signature didn\'t match'
            signatureFailure("Maven", ['abcd': signatureError(IGNORED_KEY)])        | 'Artifact was signed with an ignored key: abcd (not found)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top