Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 81 for intSize (0.4 sec)

  1. src/net/http/h2_bundle.go

    // parseUintBytes is like strconv.ParseUint, but using a []byte.
    func http2parseUintBytes(s []byte, base int, bitSize int) (n uint64, err error) {
    	var cutoff, maxVal uint64
    
    	if bitSize == 0 {
    		bitSize = int(strconv.IntSize)
    	}
    
    	s0 := s
    	switch {
    	case len(s) < 1:
    		err = strconv.ErrSyntax
    		goto Error
    
    	case 2 <= base && base <= 36:
    		// valid base; nothing to do
    
    	case base == 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. test/rangegen.go

    	"os"
    	"os/exec"
    	"strings"
    )
    
    const verbose = false
    
    func main() {
    	long := len(os.Args) > 1 && os.Args[1] == "long"
    	log.SetFlags(0)
    	log.SetPrefix("rangegen: ")
    
    	if !long && bits.UintSize == 32 {
    		// Skip this test on 32-bit platforms, where it seems to
    		// cause timeouts and build problems.
    		skip()
    		return
    	}
    
    	b := new(bytes.Buffer)
    	tests := ""
    	flush := func(force bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/math/big/arith.go

    package big
    
    import "math/bits"
    
    // A Word represents a single digit of a multi-precision unsigned integer.
    type Word uint
    
    const (
    	_S = _W / 8 // word size in bytes
    
    	_W = bits.UintSize // word size in bits
    	_B = 1 << _W       // digit base
    	_M = _B - 1        // digit mask
    )
    
    // Many of the loops in this file are of the form
    //   for i := 0; i < len(z) && i < len(x) && i < len(y); i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ErrRange", Var, 0},
    		{"ErrSyntax", Var, 0},
    		{"FormatBool", Func, 0},
    		{"FormatComplex", Func, 15},
    		{"FormatFloat", Func, 0},
    		{"FormatInt", Func, 0},
    		{"FormatUint", Func, 0},
    		{"IntSize", Const, 0},
    		{"IsGraphic", Func, 6},
    		{"IsPrint", Func, 0},
    		{"Itoa", Func, 0},
    		{"NumError", Type, 0},
    		{"NumError.Err", Field, 0},
    		{"NumError.Func", Field, 0},
    		{"NumError.Num", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat_test.go

    		if a.Equal(aAgain) != 1 {
    			t.Errorf("%v != %v", a, aAgain)
    			return false
    		}
    		return true
    	}, &quick.Config{})
    	if err != nil {
    		t.Error(err)
    	}
    }
    
    func TestShiftIn(t *testing.T) {
    	if bits.UintSize != 64 {
    		t.Skip("examples are only valid in 64 bit")
    	}
    	examples := []struct {
    		m, x, expected []byte
    		y              uint64
    	}{{
    		m:        []byte{13},
    		x:        []byte{0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/debug/elf/file_test.go

    			Link:      0xFF10,
    			Info:      0x02,
    			Addralign: 0x04,
    			Entsize:   0x10,
    		})
    		// .symtab_shndx
    		binary.Write(&buf, binary.LittleEndian, Section32{
    			Name:      0x0CF3AD,
    			Type:      uint32(SHT_SYMTAB_SHNDX),
    			Off:       0x13ED1C,
    			Size:      0x03FC28,
    			Link:      0xFF0E,
    			Addralign: 0x04,
    			Entsize:   0x04,
    		})
    		// .strtab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    // the compiled form will not take up too much memory.
    // 128 MB is enough for a 3.3 million Inst structures, which roughly
    // corresponds to a 3.3 MB regexp.
    const (
    	maxSize  = 128 << 20 / instSize
    	instSize = 5 * 8 // byte, 2 uint32, slice is 5 64-bit words
    )
    
    // maxRunes is the maximum number of runes allowed in a regexp tree
    // counting the runes in all the nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func CreateNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxInstances uint32, outSize uint32, inSize uint32, defaultTimeout uint32, sa *SecurityAttributes) (handle Handle, err error) {
    	r0, _, e1 := syscall.Syscall9(procCreateNamedPipeW.Addr(), 8, uintptr(unsafe.Pointer(name)), uintptr(flags), uintptr(pipeMode), uintptr(maxInstances), uintptr(outSize), uintptr(inSize), uintptr(defaultTimeout), uintptr(unsafe.Pointer(sa)), 0)
    	handle = Handle(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	ConnectNamedPipe(pipe Handle, overlapped *Overlapped) (err error)
    //sys	DisconnectNamedPipe(pipe Handle) (err error)
    //sys	GetNamedPipeInfo(pipe Handle, flags *uint32, outSize *uint32, inSize *uint32, maxInstances *uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	Size      uint32 /* Size in bytes. */
    	Link      uint32 /* Index of a related section. */
    	Info      uint32 /* Depends on section type. */
    	Addralign uint32 /* Alignment in bytes. */
    	Entsize   uint32 /* Size of each entry in section. */
    }
    
    // ELF32 Program header.
    type Prog32 struct {
    	Type   uint32 /* Entry type. */
    	Off    uint32 /* File offset of contents. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top