Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 8589934592 (0.14 sec)

  1. 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)
  2. 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