Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 0xffff (0.12 sec)

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

    	// match: (ANDconst [c] y:(MOVHZreg _))
    	// cond: c&0xFFFF == 0xFFFF
    	// result: y
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		y := v_0
    		if y.Op != OpPPC64MOVHZreg || !(c&0xFFFF == 0xFFFF) {
    			break
    		}
    		v.copyOf(y)
    		return true
    	}
    	// match: (ANDconst [0xFFFF] (MOVHreg x))
    	// result: (MOVHZreg x)
    	for {
    		if auxIntToInt64(v.AuxInt) != 0xFFFF || v_0.Op != OpPPC64MOVHreg {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    	}
    	// match: (ADDconst [c] x)
    	// cond: buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff
    	// result: (SUBconst [-c] x)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if !(buildcfg.GOARM.Version == 7 && !isARMImmRot(uint32(c)) && uint32(c) > 0xffff && uint32(-c) <= 0xffff) {
    			break
    		}
    		v.reset(OpARMSUBconst)
    		v.AuxInt = int32ToAuxInt(-c)
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteS390X.go

    		v.AddArg(x)
    		return true
    	}
    	// match: (ANDWconst [0x00ff] x)
    	// result: (MOVBZreg x)
    	for {
    		if auxIntToInt32(v.AuxInt) != 0x00ff {
    			break
    		}
    		x := v_0
    		v.reset(OpS390XMOVBZreg)
    		v.AddArg(x)
    		return true
    	}
    	// match: (ANDWconst [0xffff] x)
    	// result: (MOVHZreg x)
    	for {
    		if auxIntToInt32(v.AuxInt) != 0xffff {
    			break
    		}
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite386.go

    		v0.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (MOVWLZX (ANDLconst [c] x))
    	// result: (ANDLconst [c & 0xffff] x)
    	for {
    		if v_0.Op != Op386ANDLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		v.reset(Op386ANDLconst)
    		v.AuxInt = int32ToAuxInt(c & 0xffff)
    		v.AddArg(x)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386MOVWload(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="0xfff2" type="string" offset="0"/> <!-- V2, L3, CRC -->
          <match value="0xfff3" type="string" offset="0"/> <!-- V2, L3      -->
          <match value="0xfff4" type="string" offset="0"/> <!-- V2, L2, CRC -->
          <match value="0xfff5" type="string" offset="0"/> <!-- V2, L2      -->
          <match value="0xfff6" type="string" offset="0"/> <!-- V2, L1, CRC -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go

    	0xfde: 0x1d93, 0xfdf: 0x1da2, 0xfe0: 0x1dac, 0xfe1: 0x1dbb, 0xfe2: 0x1dc0, 0xfe3: 0x1dc5,
    	0xfe4: 0x1dd4, 0xfe5: 0x1dde, 0xfe6: 0x1dfc, 0xfe7: 0x1e15, 0xfe8: 0x1e1a, 0xfe9: 0x1e29,
    	0xfea: 0x1e2e, 0xfeb: 0x1e3d, 0xfec: 0x1e47, 0xfed: 0x1e56, 0xfee: 0x1e5b, 0xfef: 0x1e60,
    	0xff0: 0x1e6a, 0xff1: 0x1ea6, 0xff2: 0x1eab, 0xff3: 0x1eb5, 0xff4: 0x1ec4, 0xff5: 0x1ec9,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 372.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	RT_SCOPE_UNIVERSE  = 0x0
    	RT_SCOPE_SITE      = 0xc8
    	RT_SCOPE_LINK      = 0xfd
    	RT_SCOPE_HOST      = 0xfe
    	RT_SCOPE_NOWHERE   = 0xff
    	RT_TABLE_UNSPEC    = 0x0
    	RT_TABLE_COMPAT    = 0xfc
    	RT_TABLE_DEFAULT   = 0xfd
    	RT_TABLE_MAIN      = 0xfe
    	RT_TABLE_LOCAL     = 0xff
    	RT_TABLE_MAX       = 0xffffffff
    	RTA_UNSPEC         = 0x0
    	RTA_DST            = 0x1
    	RTA_SRC            = 0x2
    	RTA_IIF            = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go

    	0xfea: 0x1f05, 0xfeb: 0x1f14, 0xfec: 0x1f19, 0xfed: 0x1f28, 0xfee: 0x1f2d, 0xfef: 0x1f32,
    	0xff0: 0x1f37, 0xff1: 0x1f3c, 0xff2: 0x1f41, 0xff3: 0x1f46, 0xff4: 0x1f4b, 0xff5: 0x1f50,
    	0xff6: 0x1f55, 0xff7: 0x1f5a, 0xff8: 0x1f5f, 0xff9: 0x1f64, 0xffa: 0x1f69, 0xffb: 0x1f6e,
    	0xffc: 0x1f73, 0xffd: 0x1f78, 0xffe: 0x1f7d, 0xfff: 0x1f87,
    	// Block 0x40, offset 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go

    	0xfea: 0x1f05, 0xfeb: 0x1f14, 0xfec: 0x1f19, 0xfed: 0x1f28, 0xfee: 0x1f2d, 0xfef: 0x1f32,
    	0xff0: 0x1f37, 0xff1: 0x1f3c, 0xff2: 0x1f41, 0xff3: 0x1f46, 0xff4: 0x1f4b, 0xff5: 0x1f50,
    	0xff6: 0x1f55, 0xff7: 0x1f5a, 0xff8: 0x1f5f, 0xff9: 0x1f64, 0xffa: 0x1f69, 0xffb: 0x1f6e,
    	0xffc: 0x1f73, 0xffd: 0x1f78, 0xffe: 0x1f7d, 0xfff: 0x1f87,
    	// Block 0x40, offset 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 376.2K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go

    	0xfde: 0x44b3, 0xfdf: 0x44ba, 0xfe0: 0x44c1, 0xfe1: 0x44c8, 0xfe2: 0x44cf, 0xfe3: 0x44d6,
    	0xfe4: 0x25c6, 0xfe5: 0x25cd, 0xfe6: 0x25d4, 0xfe7: 0x25db, 0xfe8: 0x25f0, 0xfe9: 0x25f7,
    	0xfea: 0x1d98, 0xfeb: 0x1d9d, 0xfec: 0x1da2, 0xfed: 0x1da7, 0xfee: 0x1db1, 0xfef: 0x1db6,
    	0xff0: 0x1dca, 0xff1: 0x1dcf, 0xff2: 0x1dd4, 0xff3: 0x1dd9, 0xff4: 0x1de3, 0xff5: 0x1de8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 374.3K bytes
    - Viewed (0)
Back to top