Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for 0x7fff (0.09 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Huffman.kt

          0xffffffc, 0xfffe6, 0x3fffd2, 0xfffe7, 0xfffe8, 0x3fffd3, 0x3fffd4, 0x3fffd5, 0x7fffd9,
          0x3fffd6, 0x7fffda, 0x7fffdb, 0x7fffdc, 0x7fffdd, 0x7fffde, 0xffffeb, 0x7fffdf,
          0xffffec, 0xffffed, 0x3fffd7, 0x7fffe0, 0xffffee, 0x7fffe1, 0x7fffe2, 0x7fffe3,
          0x7fffe4, 0x1fffdc, 0x3fffd8, 0x7fffe5, 0x3fffd9, 0x7fffe6, 0x7fffe7, 0xffffef,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	0x3fffd3,
    	0x3fffd4,
    	0x3fffd5,
    	0x7fffd9,
    	0x3fffd6,
    	0x7fffda,
    	0x7fffdb,
    	0x7fffdc,
    	0x7fffdd,
    	0x7fffde,
    	0xffffeb,
    	0x7fffdf,
    	0xffffec,
    	0xffffed,
    	0x3fffd7,
    	0x7fffe0,
    	0xffffee,
    	0x7fffe1,
    	0x7fffe2,
    	0x7fffe3,
    	0x7fffe4,
    	0x1fffdc,
    	0x3fffd8,
    	0x7fffe5,
    	0x3fffd9,
    	0x7fffe6,
    	0x7fffe7,
    	0xffffef,
    	0x3fffda,
    	0x1fffdd,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

     * will never change.
     *
     * @see java.io.File
     */
    
    public class SmbFile extends URLConnection implements SmbResource, SmbConstants {
        protected static final int ATTR_GET_MASK = 0x7FFF;
        protected static final int ATTR_SET_MASK = 0x30A7;
        protected static final int DEFAULT_ATTR_EXPIRATION_PERIOD = 5000;
    
        protected static final int HASH_DOT = ".".hashCode();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/cmd/internal/obj/mips/asm0.go

    		default:
    			return C_GOK
    		}
    
    		if c.instoffset >= 0 {
    			if c.instoffset == 0 {
    				return C_ZCON
    			}
    			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
    - 53.6K bytes
    - Viewed (0)
  5. src/unicode/utf16/utf16_test.go

    }
    
    var encodeTests = []encodeTest{
    	{[]rune{1, 2, 3, 4}, []uint16{1, 2, 3, 4}},
    	{[]rune{0xffff, 0x10000, 0x10001, 0x12345, 0x10ffff},
    		[]uint16{0xffff, 0xd800, 0xdc00, 0xd800, 0xdc01, 0xd808, 0xdf45, 0xdbff, 0xdfff}},
    	{[]rune{'a', 'b', 0xd7ff, 0xd800, 0xdfff, 0xe000, 0x110000, -1},
    		[]uint16{'a', 'b', 0xd7ff, 0xfffd, 0xfffd, 0xe000, 0xfffd, 0xfffd}},
    }
    
    func TestEncode(t *testing.T) {
    	for _, tt := range encodeTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVWreg y:(AND (MOVDconst [c]) _)) && uint64(c) <= 0x7FFFFFFF => y
    
    // small and of zero-extend => either zero-extend or small and
    (ANDconst [c] y:(MOVBZreg _)) && c&0xFF == 0xFF => y
    (ANDconst [0xFF] (MOVBreg x)) => (MOVBZreg x)
    (ANDconst [c] y:(MOVHZreg _))  && c&0xFFFF == 0xFFFF => y
    (ANDconst [0xFFFF] (MOVHreg x)) => (MOVHZreg x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    	return op | (i&0xFFFFF)<<5 | (r2&0x1F)<<0 // ui20, rd5
    }
    
    func OP_15I(op uint32, i uint32) uint32 {
    	return op | (i&0x7FFF)<<0
    }
    
    // Encoding for the 'b' or 'bl' instruction.
    func OP_B_BL(op uint32, i uint32) uint32 {
    	return op | ((i & 0xFFFF) << 10) | ((i >> 16) & 0x3FF)
    }
    
    func (c *ctxt0) asmout(p *obj.Prog, o *Optab, out []uint32) {
    	o1 := uint32(0)
    	o2 := uint32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (ADDconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff => (SUBconst [-c] x)
    (SUBconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && uint32(-c)<=0xffff => (ADDconst [-c] x)
    (ANDconst [c] x) && buildcfg.GOARM.Version==7 && !isARMImmRot(uint32(c)) && uint32(c)>0xffff && ^uint32(c)<=0xffff => (BICconst [int32(^uint32(c))] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  9. 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)
  10. android/guava/src/com/google/common/net/PercentEscaper.java

          return PLUS_SIGN;
        } else if (cp <= 0x7F) {
          // Single byte UTF-8 characters
          // Start with "%--" and fill in the blanks
          char[] dest = new char[3];
          dest[0] = '%';
          dest[2] = UPPER_HEX_DIGITS[cp & 0xF];
          dest[1] = UPPER_HEX_DIGITS[cp >>> 4];
          return dest;
        } else if (cp <= 0x7ff) {
          // Two byte UTF-8 characters [cp >= 0x80 && cp <= 0x7ff]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top