Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for 0x08 (0.08 sec)

  1. src/index/suffixarray/sais2.go

    	// That is, the text sequence A B C (hex 41 42 43)
    	// encodes as ^uint64(0x42_43_44).
    	// LMS-substrings can never start or end with 0xFF.
    	// Adding 1 ensures the encoded byte sequence never
    	// starts or ends with 0x00, so that present bytes can be
    	// distinguished from zero-padding in the top bits,
    	// so the length need not be separately encoded.
    	// Inverting the bytes increases the chance that a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%#v", reflect.ValueOf([]uint8{}), "[]uint8{}"},
    	{"%#v", &[]byte{}, "&[]uint8{}"},
    	{"%#v", &[]byte{}, "&[]uint8{}"},
    	{"%#v", [3]byte{}, "[3]uint8{0x0, 0x0, 0x0}"},
    	{"%#v", [3]uint8{}, "[3]uint8{0x0, 0x0, 0x0}"},
    
    	// slices with other formats
    	{"%#x", []int{1, 2, 15}, `[0x1 0x2 0xf]`},
    	{"%x", []int{1, 2, 15}, `[1 2 f]`},
    	{"%d", []int{1, 2, 15}, `[1 2 15]`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    		ip       []byte
    		wantAddr Addr
    		wantOK   bool
    	}{
    		{
    			ip:       []byte{10, 0, 0, 1},
    			wantAddr: mustIP("10.0.0.1"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0xfe, 0x80, 15: 0x01},
    			wantAddr: mustIP("fe80::01"),
    			wantOK:   true,
    		},
    		{
    			ip:       []byte{0, 1, 2},
    			wantAddr: Addr{},
    			wantOK:   false,
    		},
    		{
    			ip:       nil,
    			wantAddr: Addr{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    var helloRetryRequestRandom = []byte{ // See RFC 8446, Section 4.1.3.
    	0xCF, 0x21, 0xAD, 0x74, 0xE5, 0x9A, 0x61, 0x11,
    	0xBE, 0x1D, 0x8C, 0x02, 0x1E, 0x65, 0xB8, 0x91,
    	0xC2, 0xA2, 0x11, 0x16, 0x7A, 0xBB, 0x8C, 0x5E,
    	0x07, 0x9E, 0x09, 0xE2, 0xC8, 0xA8, 0x33, 0x9C,
    }
    
    const (
    	// downgradeCanaryTLS12 or downgradeCanaryTLS11 is embedded in the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    	switch a {
    	case ALU12IW:
    		return 0x0a << 25
    	case ALU32ID:
    		return 0x0b << 25
    	case APCALAU12I:
    		return 0x0d << 25
    	case APCADDU12I:
    		return 0x0e << 25
    	}
    	return 0
    }
    
    func (c *ctxt0) opirr(a obj.As) uint32 {
    	switch a {
    	case AADD, AADDU:
    		return 0x00a << 22
    	case ASGT:
    		return 0x008 << 22
    	case ASGTU:
    		return 0x009 << 22
    	case AAND:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits. At least that's the idea.
    // There are various irregularities. For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    	exited  = 0x00
    	stopped = 0x7F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.  At least that's the idea.
    // There are various irregularities.  For example, the
    // "continued" status is 0xFFFF, distinguishing itself
    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    	exited  = 0x00
    	stopped = 0x7F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    				sehp.xdata = append(sehp.xdata, ls.XData)
    			}
    			ctxt.Textp = append(ctxt.Textp, ls.Textp...)
    		}
    		return ldhostobj(ldpe, ctxt.HeadType, f, pkg, length, pn, file)
    	}
    
    	if c1 == 0x01 && (c2 == 0xD7 || c2 == 0xF7) {
    		ldxcoff := func(ctxt *Link, f *bio.Reader, pkg string, length int64, pn string) {
    			textp, err := loadxcoff.Load(ctxt.loader, ctxt.Arch, ctxt.IncVersion(), f, pkg, length, pn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top