Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 0xF (0.03 sec)

  1. 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)
  2. 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)
  3. src/crypto/cipher/gcm.go

    		for j := 0; j < 64; j += 4 {
    			msw := z.high & 0xf
    			z.high >>= 4
    			z.high |= z.low << 60
    			z.low >>= 4
    			z.low ^= uint64(gcmReductionTable[msw]) << 48
    
    			// the values in |table| are ordered for
    			// little-endian bit positions. See the comment
    			// in NewGCMWithNonceSize.
    			t := &g.productTable[word&0xf]
    
    			z.low ^= t.low
    			z.high ^= t.high
    			word >>= 4
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. src/net/netip/netip.go

    	}
    	if x >= 0x100 {
    		b = append(b, digits[x>>8&0xf])
    	}
    	if x >= 0x10 {
    		b = append(b, digits[x>>4&0xf])
    	}
    	return append(b, digits[x&0xf])
    }
    
    // appendHexPad appends the fully padded hex string representation of x to b.
    func appendHexPad(b []byte, x uint16) []byte {
    	return append(b, digits[x>>12], digits[x>>8&0xf], digits[x>>4&0xf], digits[x&0xf])
    }
    
    func (ip Addr) string4() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	PTRACE_GETFPREGS                 = 0xe
    	PTRACE_GETFPXREGS                = 0x12
    	PTRACE_GET_THREAD_AREA           = 0x19
    	PTRACE_OLDSETOPTIONS             = 0x15
    	PTRACE_SETFPREGS                 = 0xf
    	PTRACE_SETFPXREGS                = 0x13
    	PTRACE_SET_THREAD_AREA           = 0x1a
    	PTRACE_SINGLEBLOCK               = 0x21
    	PTRACE_SYSEMU                    = 0x1f
    	PTRACE_SYSEMU_SINGLESTEP         = 0x20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	PTRACE_GETFPREGS                 = 0xe
    	PTRACE_GETFPXREGS                = 0x12
    	PTRACE_GET_THREAD_AREA           = 0x19
    	PTRACE_OLDSETOPTIONS             = 0x15
    	PTRACE_SETFPREGS                 = 0xf
    	PTRACE_SETFPXREGS                = 0x13
    	PTRACE_SET_THREAD_AREA           = 0x1a
    	PTRACE_SINGLEBLOCK               = 0x21
    	PTRACE_SYSEMU                    = 0x1f
    	PTRACE_SYSEMU_SINGLESTEP         = 0x20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

                        case '\r':
                            out.write('\\');
                            out.write('r');
                            break;
                        default:
                            if (ch > 0xf) {
                                out.write("\\u00" + hex(ch));
                            } else {
                                out.write("\\u000" + hex(ch));
                            }
                            break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    		d := dylibId(r.targ)
    		if d > 0 && d < 128 {
    			bind.AddUint8(BIND_OPCODE_SET_DYLIB_ORDINAL_IMM | uint8(d)&0xf)
    		} else if d >= 128 {
    			bind.AddUint8(BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB)
    			bind.AddUleb(uint64(d))
    		} else { // d <= 0
    			bind.AddUint8(BIND_OPCODE_SET_DYLIB_SPECIAL_IMM | uint8(d)&0xf)
    		}
    
    		bind.AddUint8(BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/AbstractCodecTest.groovy

                assert decoder.readInt() == value
            }
    
            where:
            value             | _
            0                 | _
            12                | _
            -1                | _
            0xF               | _
            0xFD              | _
            0xFDD             | _
            0xFFDD            | _
            0xFFDDCC          | _
            0x7FDDCCBB        | _
            -0xFF             | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. test/codegen/shift.go

    	g := 2 * uint64(uint32(d))
    	return f, g
    }
    
    func checkCombinedShifts(v8 uint8, v16 uint16, v32 uint32, x32 int32, v64 uint64) (uint8, uint16, uint32, uint64, int64) {
    
    	// ppc64x:-"AND","CLRLSLWI"
    	f := (v8 & 0xF) << 2
    	// ppc64x:"CLRLSLWI"
    	f += byte(v16) << 3
    	// ppc64x:-"AND","CLRLSLWI"
    	g := (v16 & 0xFF) << 3
    	// ppc64x:-"AND","CLRLSLWI"
    	h := (v32 & 0xFFFFF) << 2
    	// ppc64x:"CLRLSLDI"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top