Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for 0xff000000 (0.19 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/main/java/jcifs/smb/MIEName.java

            this.oid = ASN1ObjectIdentifier.getInstance(bo);
    
            // NAME_LEN
            if ( buf.length < i + NAME_LEN_SIZE ) {
                throw new IllegalArgumentException();
            }
            len = 0xff000000 & ( buf[ i++ ] << 24 );
            len |= 0x00ff0000 & ( buf[ i++ ] << 16 );
            len |= 0x0000ff00 & ( buf[ i++ ] << 8 );
            len |= 0x000000ff & buf[ i++ ];
    
            // NAME
            if ( buf.length < i + len ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

            0x00080000, 0x00000100, 0x40000000, 0x02080000,
            0x40080100, 0x00080000, 0x02000100, 0x40080100,
            0x42000100, 0x42080000, 0x00080100, 0x40000000,
            0x02000000, 0x40080000, 0x40080000, 0x00000000,
            0x40000100, 0x42080100, 0x42080100, 0x02000100,
            0x42080000, 0x40000100, 0x00000000, 0x42000000,
            0x02080100, 0x02000000, 0x42000000, 0x00080100,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/jcifs/ntlmssp/NtlmFlags.java

         * 
         */
        public static final int NTLMSSP_NEGOTIATE_VERSION = 0x2000000;
    
        /**
         * Indicates that 128-bit encryption is supported.
         */
        public static final int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        /**
         * Request explicit key exchange
         */
        public static final int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
         * Indicates that 56-bit encryption is supported.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int GENERIC_ALL = 0x10000000; // 28
        /**
         * 
         */
        public static final int GENERIC_EXECUTE = 0x20000000; // 29
        /**
         * 
         */
        public static final int GENERIC_WRITE = 0x40000000; // 30
        /**
         * 
         */
        public static final int GENERIC_READ = 0x80000000; // 31
    
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int SYNCHRONIZE           = 0x00100000; // 20
        static final int GENERIC_ALL           = 0x10000000; // 28
        static final int GENERIC_EXECUTE       = 0x20000000; // 29
        static final int GENERIC_WRITE         = 0x40000000; // 30
        static final int GENERIC_READ          = 0x80000000; // 31
    
    
        // flags for move and copy
        static final int FLAGS_TARGET_MUST_BE_FILE         = 0x0001; 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbConstants.java

        static final int WRITE_OWNER = 0x00080000; // 19
        static final int SYNCHRONIZE = 0x00100000; // 20
        static final int GENERIC_ALL = 0x10000000; // 28
        static final int GENERIC_EXECUTE = 0x20000000; // 29
        static final int GENERIC_WRITE = 0x40000000; // 30
        static final int GENERIC_READ = 0x80000000; // 31
    
        // flags for move and copy
        static final int FLAGS_TARGET_MUST_BE_FILE = 0x0001;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int SYNCHRONIZE           = 0x00100000; // 20
        public static final int GENERIC_ALL           = 0x10000000; // 28
        public static final int GENERIC_EXECUTE       = 0x20000000; // 29
        public static final int GENERIC_WRITE         = 0x40000000; // 30
        public static final int GENERIC_READ          = 0x80000000; // 31
    
        public static final int FLAGS_OBJECT_INHERIT    = 0x01;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        * Indicates that 128-bit encryption is supported.
        */
        public static final int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        public static final int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
        * Indicates that 56-bit encryption is supported.
        */
        public static final int NTLMSSP_NEGOTIATE_56 = 0x80000000;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.3K bytes
    - Viewed (1)
Back to top