Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0xff000000 (1.04 sec)

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

    	MOVB	g, CPSR            // ERROR "illegal combination"
    	MOVH	g, CPSR            // ERROR "illegal combination"
    	MOVB	$0xff000000, CPSR  // ERROR "illegal combination"
    	MOVH	$0xff000000, CPSR  // ERROR "illegal combination"
    	MOVB	$0xff000000, FPSR  // ERROR "illegal combination"
    	MOVH	$0xff000000, FPSR  // ERROR "illegal combination"
    	MOVB	$0xffffff00, CPSR  // 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/arm.s

    // immediate decomposition
    	ADD	$0xff0000ff, R0, R1 // ADD $4278190335, R0, R1 // ff1080e2ff1481e2
    	EOR	$0xff0000ff, R0, R1 // EOR $4278190335, R0, R1 // ff1020e2ff1421e2
    	ORR	$0xff0000ff, R0, R1 // ORR $4278190335, R0, R1 // ff1080e3ff1481e3
    	SUB	$0xff0000ff, R0, R1 // SUB $4278190335, R0, R1 // ff1040e2ff1441e2
    	BIC	$0xff0000ff, R0, R1 // BIC $4278190335, R0, R1 // ff10c0e3ff14c1e3
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    		SE_GROUP_ENABLED            = 0x00000004,
    		SE_GROUP_OWNER              = 0x00000008,
    		SE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010,
    		SE_GROUP_RESOURCE           = 0x20000000,
    		SE_GROUP_LOGON_ID           = 0xC0000000
    	} SamrGroupAttrs;
    
    	typedef struct {
    		uint32_t rid;
    		SamrGroupAttrs attributes;
    	} SamrRidWithAttribute;
    
    	typedef struct {
    		uint32_t count;
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    		SE_GROUP_ENABLED            = 0x00000004,
    		SE_GROUP_OWNER              = 0x00000008,
    		SE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010,
    		SE_GROUP_RESOURCE           = 0x20000000,
    		SE_GROUP_LOGON_ID           = 0xC0000000
    	} SamrGroupAttrs;
    
    	typedef struct {
    		uint32_t rid;
    		SamrGroupAttrs attributes;
    	} SamrRidWithAttribute;
    
    	typedef struct {
    		uint32_t count;
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64.s

    	ANDW	$0x3ff00000, R2                     // ANDW	$1072693248, R2                 // 42240c12
    	BICW	$0x3ff00000, R2                     // BICW	$1072693248, R2                 // 42540212
    	ORRW	$0x3ff00000, R2                     // ORRW	$1072693248, R2                 // 42240c32
    	ORNW	$0x3ff00000, R2                     // ORNW	$1072693248, R2                 // 42540232
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
Back to top