Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for nbytes (0.08 sec)

  1. src/bytes/buffer_test.go

    	if !Equal(buf.Bytes(), b) {
    		t.Fatalf("incorrect result from WriteRune: %q not %q", buf.Bytes(), b)
    	}
    
    	p := make([]byte, utf8.UTFMax)
    	// Read it back with ReadRune
    	for r := rune(0); r < NRune; r++ {
    		size := utf8.EncodeRune(p, r)
    		nr, nbytes, err := buf.ReadRune()
    		if nr != r || nbytes != size || err != nil {
    			t.Fatalf("ReadRune(%U) got %U,%d not %U,%d (err=%s)", r, nr, nbytes, r, size, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/encoding/hex/hex.go

    }
    
    type dumper struct {
    	w          io.Writer
    	rightChars [18]byte
    	buf        [14]byte
    	used       int  // number of bytes in the current line
    	n          uint // number of bytes, total
    	closed     bool
    }
    
    func toChar(b byte) byte {
    	if b < 32 || b > 126 {
    		return '.'
    	}
    	return b
    }
    
    func (h *dumper) Write(data []byte) (n int, err error) {
    	if h.closed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:30:23 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	_ sys.NotInHeap
    	x uint8
    }
    
    // bytep returns a pointer to the n'th byte of b.
    func (b *gcBits) bytep(n uintptr) *uint8 {
    	return addb(&b.x, n)
    }
    
    // bitp returns a pointer to the byte containing bit n and a mask for
    // selecting that bit from *bytep.
    func (b *gcBits) bitp(n uintptr) (bytep *uint8, mask uint8) {
    	return b.bytep(n / 8), 1 << (n % 8)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/compile.go

    			var stats string
    			if logMemStats {
    				var mEnd runtime.MemStats
    				runtime.ReadMemStats(&mEnd)
    				nBytes := mEnd.TotalAlloc - mStart.TotalAlloc
    				nAllocs := mEnd.Mallocs - mStart.Mallocs
    				stats = fmt.Sprintf("[%d ns %d allocs %d bytes]", time, nAllocs, nBytes)
    			} else {
    				stats = fmt.Sprintf("[%d ns]", time)
    			}
    
    			if f.Log() {
    				f.Logf("  pass %s end %s\n", p.name, stats)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    				// the runtime's accounting will be wrong.
    				nbytes := int64(npages * pageSize)
    				gcController.heapReleased.add(nbytes)
    				gcController.heapFree.add(-nbytes)
    
    				stats := memstats.heapStats.acquire()
    				atomic.Xaddint64(&stats.committed, -nbytes)
    				atomic.Xaddint64(&stats.released, nbytes)
    				memstats.heapStats.release()
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/runtime/os_plan9.go

    type mOS struct {
    	waitsemacount uint32
    	notesig       *int8
    	errstr        *byte
    	ignoreHangup  bool
    }
    
    func closefd(fd int32) int32
    
    //go:noescape
    func open(name *byte, mode, perm int32) int32
    
    //go:noescape
    func pread(fd int32, buf unsafe.Pointer, nbytes int32, offset int64) int32
    
    //go:noescape
    func pwrite(fd int32, buf unsafe.Pointer, nbytes int32, offset int64) int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/time/format.go

    }
    
    func commaOrPeriod(b byte) bool {
    	return b == '.' || b == ','
    }
    
    func parseNanoseconds[bytes []byte | string](value bytes, nbytes int) (ns int, rangeErrString string, err error) {
    	if !commaOrPeriod(value[0]) {
    		err = errBad
    		return
    	}
    	if nbytes > 10 {
    		value = value[:10]
    		nbytes = 10
    	}
    	if ns, err = atoi(value[1:nbytes]); err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/runtime/export_test.go

    }
    
    var CasGStatusAlwaysTrack = &casgstatusAlwaysTrack
    
    //go:noinline
    func PanicForTesting(b []byte, i int) byte {
    	return unexportedPanicForTesting(b, i)
    }
    
    //go:noinline
    func unexportedPanicForTesting(b []byte, i int) byte {
    	return b[i]
    }
    
    func G0StackOverflow() {
    	systemstack(func() {
    		g0 := getg()
    		sp := getcallersp()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		return bytes.NewBuffer(make([]byte, nBytes)), func() {}, nil
    	}
    
    	cases := []struct {
    		name             string
    		readerFunc       func() (io.Reader, func(), error)
    		contentLength    int64
    		expectedReadFrom bool
    	}{
    		{
    			name:             "file, length",
    			readerFunc:       newFileFunc,
    			contentLength:    nBytes,
    			expectedReadFrom: true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/net/sendfile_test.go

    			}
    
    			if sbytes != newtonLen {
    				errc <- fmt.Errorf("sent %d bytes; expected %d", sbytes, newtonLen)
    				return
    			}
    		}()
    	}(ln)
    
    	// Connect to listener to retrieve file and verify digest matches
    	// expected.
    	c, err := Dial("tcp", ln.Addr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer c.Close()
    
    	h := sha256.New()
    	rbytes, err := io.Copy(h, c)
    	if err != nil {
    		t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top