Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 83 for 0xF (0.26 sec)

  1. src/syscall/ztypes_linux_arm64.go

    	IFLA_COST           = 0x8
    	IFLA_PRIORITY       = 0x9
    	IFLA_MASTER         = 0xa
    	IFLA_WIRELESS       = 0xb
    	IFLA_PROTINFO       = 0xc
    	IFLA_TXQLEN         = 0xd
    	IFLA_MAP            = 0xe
    	IFLA_WEIGHT         = 0xf
    	IFLA_OPERSTATE      = 0x10
    	IFLA_LINKMODE       = 0x11
    	IFLA_LINKINFO       = 0x12
    	IFLA_NET_NS_PID     = 0x13
    	IFLA_IFALIAS        = 0x14
    	IFLA_MAX            = 0x24
    	RT_SCOPE_UNIVERSE   = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

        private static StringBuilder toStringBuilder(int capacity, byte[] bytes) {
            StringBuilder sb = new StringBuilder(capacity);
            for (byte b : bytes) {
                sb.append(HEX_DIGITS[(b >> 4) & 0xf]).append(HEX_DIGITS[b & 0xf]);
            }
            return sb;
        }
    
        /**
         * Encodes the hash code into a base-36 string,
         * which yields shorter strings than {@link #toString()}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  3. src/syscall/ztypes_linux_mips.go

    	IFLA_COST           = 0x8
    	IFLA_PRIORITY       = 0x9
    	IFLA_MASTER         = 0xa
    	IFLA_WIRELESS       = 0xb
    	IFLA_PROTINFO       = 0xc
    	IFLA_TXQLEN         = 0xd
    	IFLA_MAP            = 0xe
    	IFLA_WEIGHT         = 0xf
    	IFLA_OPERSTATE      = 0x10
    	IFLA_LINKMODE       = 0x11
    	IFLA_LINKINFO       = 0x12
    	IFLA_NET_NS_PID     = 0x13
    	IFLA_IFALIAS        = 0x14
    	IFLA_MAX            = 0x27
    	RT_SCOPE_UNIVERSE   = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_mipsle.go

    	IFLA_COST           = 0x8
    	IFLA_PRIORITY       = 0x9
    	IFLA_MASTER         = 0xa
    	IFLA_WIRELESS       = 0xb
    	IFLA_PROTINFO       = 0xc
    	IFLA_TXQLEN         = 0xd
    	IFLA_MAP            = 0xe
    	IFLA_WEIGHT         = 0xf
    	IFLA_OPERSTATE      = 0x10
    	IFLA_LINKMODE       = 0x11
    	IFLA_LINKINFO       = 0x12
    	IFLA_NET_NS_PID     = 0x13
    	IFLA_IFALIAS        = 0x14
    	IFLA_MAX            = 0x27
    	RT_SCOPE_UNIVERSE   = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/AbstractArtifactComponentTestCase.java

        private static String printHexBinary(byte[] data) {
            StringBuilder r = new StringBuilder(data.length * 2);
            for (byte b : data) {
                r.append(hexCode[(b >> 4) & 0xF]);
                r.append(hexCode[(b & 0xF)]);
            }
            return r.toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	PTRACE_GETVRREGS                 = 0x12
    	PTRACE_GETVSRREGS                = 0x1b
    	PTRACE_GET_DEBUGREG              = 0x19
    	PTRACE_SETEVRREGS                = 0x15
    	PTRACE_SETFPREGS                 = 0xf
    	PTRACE_SETREGS64                 = 0x17
    	PTRACE_SETVRREGS                 = 0x13
    	PTRACE_SETVSRREGS                = 0x1c
    	PTRACE_SET_DEBUGREG              = 0x1a
    	PTRACE_SINGLEBLOCK               = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. src/fmt/format.go

    		utf8.EncodeRune(buf[i:], rune(u))
    		i--
    		buf[i] = '\''
    		i--
    		buf[i] = ' '
    	}
    	// Format the Unicode code point u as a hexadecimal number.
    	for u >= 16 {
    		i--
    		buf[i] = udigits[u&0xF]
    		prec--
    		u >>= 4
    	}
    	i--
    	buf[i] = udigits[u]
    	prec--
    	// Add zeros in front of the number until requested precision is reached.
    	for prec > 0 {
    		i--
    		buf[i] = '0'
    		prec--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/go/printer/testdata/expressions.input

    	_ = a-b-c
    	_ = a+(b*c)
    	_ = a+(b/c)
    	_ = a-(b%c)
    	_ = 1+a
    	_ = a+1
    	_ = a+b+1
    	_ = s[a]
    	_ = s[a:]
    	_ = s[:b]
    	_ = s[1:2]
    	_ = s[a:b]
    	_ = s[0:len(s)]
    	_ = s[0]<<1
    	_ = (s[0]<<1)&0xf
    	_ = s[0] << 2 | s[1] >> 4
    	_ = "foo"+s
    	_ = s+"foo"
    	_ = 'a'+'b'
    	_ = len(s)/2
    	_ = len(t0.x)/a
    
    	// spaces around expressions of different precedence or expressions containing spaces
    	_ = a + -b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_s390x.go

    // paddedGHASH pads data with zeroes until its length is a multiple of
    // 16-bytes. It then calculates a new value for hash using the GHASH algorithm.
    func (g *gcmAsm) paddedGHASH(hash *[16]byte, data []byte) {
    	siz := len(data) &^ 0xf // align size to 16-bytes
    	if siz > 0 {
    		ghash(&g.hashKey, hash, data[:siz])
    		data = data[siz:]
    	}
    	if len(data) > 0 {
    		var s [16]byte
    		copy(s[:], data)
    		ghash(&g.hashKey, hash, s[:])
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. src/runtime/malloc_test.go

    	runtime.Acquirem()
    
    	// Make 1-byte allocations until we get a fresh tiny slot.
    	aligned := false
    	for i := 0; i < 16; i++ {
    		x := runtime.Escape(new(byte))
    		if uintptr(unsafe.Pointer(x))&0xf == 0xf {
    			aligned = true
    			break
    		}
    	}
    	if !aligned {
    		runtime.Releasem()
    		t.Fatal("unable to get a fresh tiny slot")
    	}
    
    	// Create a 4-byte object so that the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top