Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 119 for 0_80 (0.06 sec)

  1. src/net/netip/fuzz_test.go

    	// AddrPort strings.
    	"1.2.3.4:51820",
    	"[fd7a:115c:a1e0:ab12:4843:cd96:626b:430b]:80",
    	"[::ffff:c000:0280]:65535",
    	"[::ffff:c000:0280%eth0]:1",
    	// Prefix strings.
    	"1.2.3.4/24",
    	"fd7a:115c:a1e0:ab12:4843:cd96:626b:430b/118",
    	"::ffff:c000:0280/96",
    	"::ffff:c000:0280%eth0/37",
    }
    
    func FuzzParse(f *testing.F) {
    	for _, seed := range corpus {
    		f.Add(seed)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/wasm/asm.go

    	for more {
    		c := uint8(v & 0x7f)
    		v >>= 7
    		more = v != 0
    		if more {
    			c |= 0x80
    		}
    		w.WriteByte(c)
    	}
    }
    
    func writeUleb128FixedLength(w io.ByteWriter, v uint64, length int) {
    	for i := 0; i < length; i++ {
    		c := uint8(v & 0x7f)
    		v >>= 7
    		if i < length-1 {
    			c |= 0x80
    		}
    		w.WriteByte(c)
    	}
    	if v != 0 {
    		panic("writeUleb128FixedLength: length too small")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/unicode/utf8/utf8.go

    // Defining them locally avoids this package depending on package unicode.
    
    // Numbers fundamental to the encoding.
    const (
    	RuneError = '\uFFFD'     // the "error" Rune or "Unicode replacement character"
    	RuneSelf  = 0x80         // characters below RuneSelf are represented as themselves in a single byte.
    	MaxRune   = '\U0010FFFF' // Maximum valid Unicode code point.
    	UTFMax    = 4            // maximum number of bytes of a UTF-8 encoded Unicode character.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/crypto/aes/aes_test.go

    			0x2b7e1516, 0x28aed2a6, 0xabf71588, 0x9cf4f3c,
    		},
    	},
    	{
    		// A.2.  Expansion of a 192-bit Cipher Key
    		[]byte{
    			0x8e, 0x73, 0xb0, 0xf7, 0xda, 0x0e, 0x64, 0x52, 0xc8, 0x10, 0xf3, 0x2b, 0x80, 0x90, 0x79, 0xe5,
    			0x62, 0xf8, 0xea, 0xd2, 0x52, 0x2c, 0x6b, 0x7b,
    		},
    		[]uint32{
    			0x8e73b0f7, 0xda0e6452, 0xc810f32b, 0x809079e5,
    			0x62f8ead2, 0x522c6b7b, 0xfe0c91f7, 0x2402f5a5,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 14:58:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/syscall/syscall_bsd.go

    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	stopped = 0x7F
    )
    
    func (w WaitStatus) Exited() bool { return w&mask == exited }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    }
    
    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	killed  = 9
    	stopped = 0x7F
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. src/internal/xcoff/file.go

    					return nil, err
    				}
    				reloc.VirtualAddress = uint64(rel.Rvaddr)
    				reloc.Symbol = idxToSym[int(rel.Rsymndx)]
    				reloc.Type = rel.Rtype
    				reloc.Length = rel.Rsize&0x3F + 1
    
    				if rel.Rsize&0x80 != 0 {
    					reloc.Signed = true
    				}
    				if rel.Rsize&0x40 != 0 {
    					reloc.InstructionFixed = true
    				}
    
    			case U64_TOCMAGIC:
    				rel := new(Reloc64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/dwarf.go

    // AppendUleb128 appends v to b using DWARF's unsigned LEB128 encoding.
    func AppendUleb128(b []byte, v uint64) []byte {
    	for {
    		c := uint8(v & 0x7f)
    		v >>= 7
    		if v != 0 {
    			c |= 0x80
    		}
    		b = append(b, c)
    		if c&0x80 == 0 {
    			break
    		}
    	}
    	return b
    }
    
    // AppendSleb128 appends v to b using DWARF's signed LEB128 encoding.
    func AppendSleb128(b []byte, v int64) []byte {
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    	CBitFieldMaskBit50 = 0x2000
    	CBitFieldMaskBit51 = 0x1000
    	CBitFieldMaskBit52 = 0x800
    	CBitFieldMaskBit53 = 0x400
    	CBitFieldMaskBit54 = 0x200
    	CBitFieldMaskBit55 = 0x100
    	CBitFieldMaskBit56 = 0x80
    	CBitFieldMaskBit57 = 0x40
    	CBitFieldMaskBit58 = 0x20
    	CBitFieldMaskBit59 = 0x10
    	CBitFieldMaskBit60 = 0x8
    	CBitFieldMaskBit61 = 0x4
    	CBitFieldMaskBit62 = 0x2
    	CBitFieldMaskBit63 = 0x1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go

    	CBitFieldMaskBit50 = 0x2000
    	CBitFieldMaskBit51 = 0x1000
    	CBitFieldMaskBit52 = 0x800
    	CBitFieldMaskBit53 = 0x400
    	CBitFieldMaskBit54 = 0x200
    	CBitFieldMaskBit55 = 0x100
    	CBitFieldMaskBit56 = 0x80
    	CBitFieldMaskBit57 = 0x40
    	CBitFieldMaskBit58 = 0x20
    	CBitFieldMaskBit59 = 0x10
    	CBitFieldMaskBit60 = 0x8
    	CBitFieldMaskBit61 = 0x4
    	CBitFieldMaskBit62 = 0x2
    	CBitFieldMaskBit63 = 0x1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top