Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 8589934592 (0.04 sec)

  1. src/archive/tar/tar_test.go

    		paxHdrs: map[string]string{paxSize: "8589934592"},
    		formats: FormatPAX | FormatGNU,
    	}, {
    		header:  &Header{Size: 077777777777 + 1, Format: FormatPAX},
    		paxHdrs: map[string]string{paxSize: "8589934592"},
    		formats: FormatPAX,
    	}, {
    		header:  &Header{Size: 077777777777 + 1, Format: FormatGNU},
    		paxHdrs: map[string]string{paxSize: "8589934592"},
    		formats: FormatGNU,
    	}, {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Jul 25 00:25:45 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	ADD $-32767, R5, R4             // 38858001
    	ADD $-32768, R6                 // 38c68000
    	ADD $-32768, R6, R5             // 38a68000
    	// Hex constant 0xFFFFFFFE00000000
    	ADD $-8589934592, R5            // 3fe0fffe600000007bff83e4600000007cbf2a14 or 0602000038a50000
    	// Hex constant 0xFFFFFFFE00010001
    	ADD $-8589869055, R5            // 3fe0fffe63ff00017bff83e463ff00017cbf2a14 or 0602000138a50001
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Nov 21 18:27:17 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVHZ	R6, n-8(SP)           // 4060f010
    	MOVBZ	R7, n-8(SP)           // 4270f010
    	MOVDBR	R8, n-8(SP)           // e380f010002f
    	MOVWBR	R9, n-8(SP)           // e390f010003e
    
    	MOVD	$-8589934592, R1      // c01efffffffe
    	MOVW	$-131072, R2          // c021fffe0000
    	MOVH	$-512, R3             // a739fe00
    	MOVB	$-1, R4               // a749ffff
    
    	MOVD	$32767, n-8(SP)       // e548f0107fff
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jul 30 19:29:15 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  4. doc/go_spec.html

    const d = 1 << 3.0         // d == 8     (untyped integer constant)
    const e = 1.0 << 3         // e == 8     (untyped integer constant)
    const f = int32(1) << 33   // illegal    (constant 8589934592 overflows int32)
    const g = float64(2) >> 1  // illegal    (float64(2) is a typed floating-point constant)
    const h = "foo" > "bar"    // h == true  (untyped boolean constant)
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
Back to top