Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0xFFFFFFF0 (0.08 sec)

  1. src/cmd/asm/internal/asm/testdata/armerror.s

    	MOVH	$0xff000000, FPSR  // ERROR "illegal combination"
    	MOVB	$0xffffff00, CPSR  // ERROR "illegal combination"
    	MOVH	$0xffffff00, CPSR  // ERROR "illegal combination"
    	MOVB	$0xfffffff0, FPSR  // ERROR "illegal combination"
    	MOVH	$0xfffffff0, FPSR  // ERROR "illegal combination"
    	MOVB	(R1), [R0-R4]      // ERROR "illegal combination"
    	MOVB	[R0-R4], (R1)      // ERROR "illegal combination"
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 23 15:18:14 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    sign extended to implicit infinite precision; otherwise it is zero extended.
    It is then truncated to fit in the result type's size.
    For example, if <code>v := uint16(0x10F0)</code>, then <code>uint32(int8(v)) == 0xFFFFFFF0</code>.
    The conversion always yields a valid value; there is no indication of overflow.
    </li>
    <li>
    When converting a floating-point number to an integer, the fraction is discarded
    (truncation towards zero).
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    sign extended to implicit infinite precision; otherwise it is zero extended.
    It is then truncated to fit in the result type's size.
    For example, if <code>v := uint16(0x10F0)</code>, then <code>uint32(int8(v)) == 0xFFFFFFF0</code>.
    The conversion always yields a valid value; there is no indication of overflow.
    </li>
    <li>
    When converting a <a href="#Numeric_types">floating-point number</a> to an integer, the fraction is discarded
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top