Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 0xFFFFFFF0 (0.18 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"
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Nov 03 14:06:21 GMT 2017
    - 14.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	TST $0xfffffff0, LR                        // TST $4294967280, R30          // df6f7cf2
    	TSTW R10@>21, R2                           // 5f54ca6a
    	TST R17<<11, R24                           // 1f2f11ea
    	ANDSW $0x80000007, R9, ZR                  // ANDSW   $2147483655, R9, ZR   // 3f0d0172
    	ANDS $0xfffffff0, LR, ZR                   // ANDS    $4294967280, R30, ZR  // df6f7cf2
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  3. 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).
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. 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
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top