Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ByteWriter (0.26 sec)

  1. src/cmd/link/internal/wasm/asm.go

    	}
    	writeSecSize(ctxt, sizeOffset2)
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    type nameWriter interface {
    	io.ByteWriter
    	io.Writer
    }
    
    func writeI32Const(w io.ByteWriter, v int32) {
    	w.WriteByte(0x41) // i32.const
    	writeSleb128(w, int64(v))
    }
    
    func writeI64Const(w io.ByteWriter, v int64) {
    	w.WriteByte(0x42) // i64.const
    	writeSleb128(w, v)
    }
    
    func writeName(w nameWriter, name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/io/io.go

    // seek to one byte before the current offset.
    type ByteScanner interface {
    	ByteReader
    	UnreadByte() error
    }
    
    // ByteWriter is the interface that wraps the WriteByte method.
    type ByteWriter interface {
    	WriteByte(c byte) error
    }
    
    // RuneReader is the interface that wraps the ReadRune method.
    //
    // ReadRune reads a single encoded Unicode character
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/image/gif/writer.go

    func log2(x int) int {
    	for i, v := range log2Lookup {
    		if x <= v {
    			return i
    		}
    	}
    	return -1
    }
    
    // writer is a buffered writer.
    type writer interface {
    	Flush() error
    	io.Writer
    	io.ByteWriter
    }
    
    // encoder encodes an image to the GIF format.
    type encoder struct {
    	// w is the writer to write to. err is the first error encountered during
    	// writing. All attempted writes after the first error become no-ops.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/image/jpeg/writer.go

    func init() {
    	for i, s := range theHuffmanSpec {
    		theHuffmanLUT[i].init(s)
    	}
    }
    
    // writer is a buffered writer.
    type writer interface {
    	Flush() error
    	io.Writer
    	io.ByteWriter
    }
    
    // encoder encodes an image to the JPEG format.
    type encoder struct {
    	// w is the writer to write to. err is the first error encountered during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/wasm/wasmobj.go

    		panic("align: bad op")
    	}
    }
    
    func writeUleb128(w io.ByteWriter, v uint64) {
    	if v < 128 {
    		w.WriteByte(uint8(v))
    		return
    	}
    	more := true
    	for more {
    		c := uint8(v & 0x7f)
    		v >>= 7
    		more = v != 0
    		if more {
    			c |= 0x80
    		}
    		w.WriteByte(c)
    	}
    }
    
    func writeSleb128(w io.ByteWriter, v int64) {
    	more := true
    	for more {
    		c := uint8(v & 0x7f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/net/http/requestwrite_test.go

    	// w is the buffered io.Writer to write the request to. It
    	// fails exactly once on its Nth Write call, as controlled by
    	// failAfter. It also tracks the number of calls in
    	// writeCount.
    	w := struct {
    		io.ByteWriter // to avoid being wrapped by a bufio.Writer
    		io.Writer
    	}{
    		nil,
    		writerFunc(func(p []byte) (n int, err error) {
    			writeCount++
    			if failAfter == 0 {
    				err = errFail
    			}
    			failAfter--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal.go

    	if p.closed && p.err == nil {
    		p.err = errors.New("use of closed Encoder")
    	}
    	if p.err == nil {
    		n, p.err = p.w.WriteString(s)
    	}
    	return n, p.err
    }
    
    // WriteByte implements io.ByteWriter
    func (p *printer) WriteByte(c byte) error {
    	if p.closed && p.err == nil {
    		p.err = errors.New("use of closed Encoder")
    	}
    	if p.err == nil {
    		p.err = p.w.WriteByte(c)
    	}
    	return p.err
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. internal/ringbuffer/ring_buffer_test.go

    	"sync"
    	"testing"
    	"time"
    )
    
    func TestRingBuffer_interface(t *testing.T) {
    	rb := New(1)
    	var _ io.Writer = rb
    	var _ io.Reader = rb
    	// var _ io.StringWriter = rb
    	var _ io.ByteReader = rb
    	var _ io.ByteWriter = rb
    }
    
    func TestRingBuffer_Write(t *testing.T) {
    	rb := New(64)
    
    	// check empty or full
    	if !rb.IsEmpty() {
    		t.Fatalf("expect IsEmpty is true but got false")
    	}
    	if rb.IsFull() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top