Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 0x7fff (0.13 sec)

  1. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	// match: (MOVHreg (ANDconst [c] x))
    	// cond: c & 0x8000 == 0
    	// result: (ANDconst [c&0x7fff] x)
    	for {
    		if v_0.Op != OpMIPSANDconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(c&0x8000 == 0) {
    			break
    		}
    		v.reset(OpMIPSANDconst)
    		v.AuxInt = int32ToAuxInt(c & 0x7fff)
    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVHreg (MOVWconst [c]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

        static final int ATTR_COMPRESSED       = 0x800;
        static final int ATTR_NORMAL           = 0x080;
        static final int ATTR_TEMPORARY        = 0x100;
    
        static final int ATTR_GET_MASK = 0x7FFF; /* orig 0x7fff */
        static final int ATTR_SET_MASK = 0x30A7; /* orig 0x0027 */
    
        static final int DEFAULT_ATTR_EXPIRATION_PERIOD = 5000;
    
        static final int HASH_DOT     = ".".hashCode();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	ETHTOOL_PHYS_ID                             = 0x1c
    	ETHTOOL_PHY_EDPD_DFLT_TX_MSECS              = 0xffff
    	ETHTOOL_PHY_EDPD_DISABLE                    = 0x0
    	ETHTOOL_PHY_EDPD_NO_TX                      = 0xfffe
    	ETHTOOL_PHY_FAST_LINK_DOWN_OFF              = 0xff
    	ETHTOOL_PHY_FAST_LINK_DOWN_ON               = 0x0
    	ETHTOOL_PHY_GTUNABLE                        = 0x4e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    		}
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    	// cond: 0x7fff < c
    	// result: (MOVVconst [1])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpLOONG64MOVHreg || !(0x7fff < c) {
    			break
    		}
    		v.reset(OpLOONG64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    	// cond: 0x7fff < c
    	// result: (MOVVconst [1])
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		if v_0.Op != OpMIPS64MOVHreg || !(0x7fff < c) {
    			break
    		}
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(1)
    		return true
    	}
    	// match: (SGTconst [c] (MOVHreg _))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/asmz.go

    		default:
    			return C_GOK
    		}
    
    		if c.instoffset == 0 {
    			return C_ZCON
    		}
    		if c.instoffset >= 0 {
    			if c.instoffset <= 0x7fff {
    				return C_SCON
    			}
    			if c.instoffset <= 0xffff {
    				return C_ANDCON
    			}
    			if c.instoffset&0xffff == 0 && isuint32(uint64(c.instoffset)) { /* && ((instoffset & (1<<31)) == 0) */
    				return C_UCON
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    }
    
    func ADR(p uint32, o uint32, rt uint32) uint32 {
    	return p<<31 | (o&3)<<29 | 0x10<<24 | ((o>>2)&0x7FFFF)<<5 | rt&31
    }
    
    func OPBIT(x uint32) uint32 {
    	return 1<<30 | 0<<29 | 0xD6<<21 | 0<<16 | x<<10
    }
    
    func MOVCONST(d int64, s int, rt int) uint32 {
    	return uint32(((d>>uint(s*16))&0xFFFF)<<5) | uint32(s)&3<<21 | uint32(rt&31)
    }
    
    const (
    	// Optab.flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	DNS_TYPE_TKEY    = 0x00f9
    	DNS_TYPE_TSIG    = 0x00fa
    	DNS_TYPE_IXFR    = 0x00fb
    	DNS_TYPE_AXFR    = 0x00fc
    	DNS_TYPE_MAILB   = 0x00fd
    	DNS_TYPE_MAILA   = 0x00fe
    	DNS_TYPE_ALL     = 0x00ff
    	DNS_TYPE_ANY     = 0x00ff
    	DNS_TYPE_WINS    = 0xff01
    	DNS_TYPE_WINSR   = 0xff02
    	DNS_TYPE_NBSTAT  = 0xff01
    )
    
    const (
    	// flags inside DNSRecord.Dw
    	DnsSectionQuestion   = 0x0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    }
    
    func AOP_IRR(op uint32, d uint32, a uint32, simm uint32) uint32 {
    	return op | (d&31)<<21 | (a&31)<<16 | simm&0xFFFF
    }
    
    /* VX-form 2-register + UIM operands */
    func AOP_VIRR(op uint32, d uint32, a uint32, simm uint32) uint32 {
    	return op | (d&31)<<21 | (simm&0xFFFF)<<16 | (a&31)<<11
    }
    
    /* VX-form 2-register + ST + SIX operands */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	SHN_HIPROC    SectionIndex = 0xff1f /* Last processor-specific. */
    	SHN_LOOS      SectionIndex = 0xff20 /* First operating system-specific. */
    	SHN_HIOS      SectionIndex = 0xff3f /* Last operating system-specific. */
    	SHN_ABS       SectionIndex = 0xfff1 /* Absolute values. */
    	SHN_COMMON    SectionIndex = 0xfff2 /* Common data. */
    	SHN_XINDEX    SectionIndex = 0xffff /* Escape; index stored elsewhere. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top