Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for 0xF (0.13 sec)

  1. 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)
  2. src/crypto/md5/md5block.go

    		xa := byteorder.LeUint32(q[4*0xa:])
    		xb := byteorder.LeUint32(q[4*0xb:])
    		xc := byteorder.LeUint32(q[4*0xc:])
    		xd := byteorder.LeUint32(q[4*0xd:])
    		xe := byteorder.LeUint32(q[4*0xe:])
    		xf := byteorder.LeUint32(q[4*0xf:])
    
    		// round 1
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+x0+0xd76aa478, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+x1+0xe8c7b756, 12)
    		c = d + bits.RotateLeft32((((a^b)&d)^b)+c+x2+0x242070db, 17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/internal/runtime/atomic/atomic_mips64x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    #include "textflag.h"
    
    #define SYNC	WORD $0xf
    
    // bool cas(uint32 *ptr, uint32 old, uint32 new)
    // Atomically:
    //	if(*val == old){
    //		*val = new;
    //		return 1;
    //	} else
    //		return 0;
    TEXT ·Cas(SB), NOSPLIT, $0-17
    	MOVV	ptr+0(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 7.2K 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. src/net/addrselect.go

    	if ip.IsLoopback() || ip.IsLinkLocalUnicast() {
    		return scopeLinkLocal
    	}
    	ipv6 := ip.Is6() && !ip.Is4In6()
    	ipv6AsBytes := ip.As16()
    	if ipv6 && ip.IsMulticast() {
    		return scope(ipv6AsBytes[1] & 0xf)
    	}
    	// Site-local addresses are defined in RFC 3513 section 2.5.6
    	// (and deprecated in RFC 3879).
    	if ipv6 && ipv6AsBytes[0] == 0xfe && ipv6AsBytes[1]&0xc0 == 0xc0 {
    		return scopeSiteLocal
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top