Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 142 for 0xfff (0.04 sec)

  1. src/compress/lzw/reader_test.go

    	// 1....... 11111111 .....111 ........   x = 0xfff
    	// ........ ........ 00001... .0001000   y = 0x101
    	//
    	// The 12 'w' bits (not all are shown) form the 3839'th code, with value
    	// 0x000. Just after decoder.read returns that code, d.hi == 4095 and
    	// d.last == 0.
    	//
    	// The 12 'x' bits form the 3840'th code, with value 0xfff or 4095. Just
    	// after decoder.read returns that code, d.hi == 4095 and d.last ==
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables_linux.go

    	var rules []*netlink.Rule
    	families := []int{unix.AF_INET}
    	if cfg.EnableIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/io/BaseEncodingBenchmark.java

    import java.util.Random;
    
    /** Benchmark for {@code BaseEncoding} performance. */
    public class BaseEncodingBenchmark {
      private static final int INPUTS_COUNT = 0x1000;
      private static final int INPUTS_MASK = 0xFFF;
    
      enum EncodingOption {
        BASE64(BaseEncoding.base64()),
        BASE64_URL(BaseEncoding.base64Url()),
        BASE32(BaseEncoding.base32()),
        BASE32_HEX(BaseEncoding.base32Hex()),
        BASE16(BaseEncoding.base16());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm/a.out.go

    	C_SBRA
    	C_LBRA
    
    	C_HAUTO  /* halfword insn offset (-0xff to 0xff) */
    	C_FAUTO  /* float insn offset (0 to 0x3fc, word aligned) */
    	C_HFAUTO /* both H and F */
    	C_SAUTO  /* -0xfff to 0xfff */
    	C_LAUTO
    
    	C_HOREG
    	C_FOREG
    	C_HFOREG
    	C_SOREG
    	C_ROREG
    	C_SROREG /* both nil and R */
    	C_LOREG
    
    	C_PC
    	C_SP
    	C_HREG
    
    	C_ADDR /* reference to relocatable address */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/a.out.go

    	C_REG
    	C_FREG
    	C_FCSRREG
    	C_FCCREG
    	C_ZCON
    	C_SCON // 12 bit signed
    	C_UCON // 32 bit signed, low 12 bits 0
    	C_ADD0CON
    	C_AND0CON
    	C_ADDCON // -0x800 <= v < 0
    	C_ANDCON // 0 < v <= 0xFFF
    	C_LCON   // other 32
    	C_DCON   // other 64 (could subdivide further)
    	C_SACON  // $n(REG) where n <= int12
    	C_SECON
    	C_LACON // $n(REG) where int12 < n <= int32
    	C_LECON
    	C_DACON // $n(REG) where int32 < n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/internal/zstd/fse.go

    		}
    
    		if prev0 {
    			// Previous count was 0, so there is a 2-bit
    			// repeat flag. If the 2-bit flag is 0b11,
    			// it adds 3 and then there is another repeat flag.
    			zsym := sym
    			for (br.bits & 0xfff) == 0xfff {
    				zsym += 3 * 6
    				br.bits >>= 12
    				br.cnt -= 12
    				if err := br.moreBits(); err != nil {
    					return 0, 0, err
    				}
    			}
    			for (br.bits & 3) == 3 {
    				zsym += 3
    				br.bits >>= 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    	s.P = &si
    	C.setstruct(s)
    
    	if uintptr(unsafe.Pointer(&x))&^0xfff == uintptr(unsafe.Pointer(&z))&^0xfff {
    		t.Error("C int* argument on stack")
    	}
    	if uintptr(unsafe.Pointer(&y))&^0xfff == uintptr(unsafe.Pointer(&z))&^0xfff {
    		t.Error("C intptr argument on stack")
    	}
    	if uintptr(unsafe.Pointer(&v))&^0xfff == uintptr(unsafe.Pointer(&z))&^0xfff {
    		t.Error("C void* argument on stack")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. 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)
  9. src/syscall/zerrors_darwin_arm64.go

    	IPV6_JOIN_GROUP                   = 0xc
    	IPV6_LEAVE_GROUP                  = 0xd
    	IPV6_MAXHLIM                      = 0xff
    	IPV6_MAXOPTHDR                    = 0x800
    	IPV6_MAXPACKET                    = 0xffff
    	IPV6_MAX_GROUP_SRC_FILTER         = 0x200
    	IPV6_MAX_MEMBERSHIPS              = 0xfff
    	IPV6_MAX_SOCK_SRC_FILTER          = 0x80
    	IPV6_MIN_MEMBERSHIPS              = 0x1f
    	IPV6_MMTU                         = 0x500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  10. src/syscall/syscall_linux_loong64.go

    // 0xMMMM_MMMM 0xmmmm_mmmm -> 0xMMMM_Mmmm_mmmM_MMmm
    func makedev(major uint32, minor uint32) uint64 {
    	majorH := uint64(major >> 12)
    	majorL := uint64(major & 0xfff)
    	minorH := uint64(minor >> 8)
    	minorL := uint64(minor & 0xff)
    	return (majorH << 44) | (minorH << 20) | (majorL << 8) | minorL
    }
    
    func timespecFromStatxTimestamp(x statxTimestamp) Timespec {
    	return Timespec{
    		Sec:  x.Sec,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top