Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for bufr (0.04 sec)

  1. src/crypto/ecdh/nist.go

    		panic("crypto/ecdh: internal error: isLess input too large")
    	}
    	bufA, bufB := make([]byte, 72), make([]byte, 72)
    	for i := range a {
    		bufA[i], bufB[i] = a[len(a)-i-1], b[len(b)-i-1]
    	}
    
    	// Perform a subtraction with borrow.
    	var borrow uint64
    	for i := 0; i < len(bufA); i += 8 {
    		limbA, limbB := byteorder.LeUint64(bufA[i:]), byteorder.LeUint64(bufB[i:])
    		_, borrow = bits.Sub64(limbA, limbB, borrow)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/os/dir_unix.go

    				dirBufPool.Put(d.buf)
    				d.buf = nil
    				break // EOF
    			}
    		}
    
    		// Drain the buffer
    		buf := (*d.buf)[d.bufp:d.nbuf]
    		reclen, ok := direntReclen(buf)
    		if !ok || reclen > uint64(len(buf)) {
    			break
    		}
    		rec := buf[:reclen]
    		d.bufp += int(reclen)
    		ino, ok := direntIno(rec)
    		if !ok {
    			break
    		}
    		// When building to wasip1, the host runtime might be running on Windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/compress/gzip/gzip_test.go

    	}
    }
    
    func TestWriterReset(t *testing.T) {
    	buf := new(bytes.Buffer)
    	buf2 := new(bytes.Buffer)
    	z := NewWriter(buf)
    	msg := []byte("hello world")
    	z.Write(msg)
    	z.Close()
    	z.Reset(buf2)
    	z.Write(msg)
    	z.Close()
    	if buf.String() != buf2.String() {
    		t.Errorf("buf2 %q != original buf of %q", buf2.String(), buf.String())
    	}
    }
    
    type limitedWriter struct {
    	N int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/os/dir_windows.go

    type dirInfo struct {
    	mu sync.Mutex
    	// buf is a slice pointer so the slice header
    	// does not escape to the heap when returning
    	// buf to dirBufPool.
    	buf   *[]byte // buffer for directory I/O
    	bufp  int     // location of next record in buf
    	h     syscall.Handle
    	vol   uint32
    	class uint32 // type of entries in buf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/compress/lzw/reader_test.go

    func BenchmarkDecoder(b *testing.B) {
    	buf, err := os.ReadFile("../testdata/e.txt")
    	if err != nil {
    		b.Fatal(err)
    	}
    	if len(buf) == 0 {
    		b.Fatalf("test file has no data")
    	}
    
    	getInputBuf := func(buf []byte, n int) []byte {
    		compressed := new(bytes.Buffer)
    		w := NewWriter(compressed, LSB, 8)
    		for i := 0; i < n; i += len(buf) {
    			if len(buf) > n-i {
    				buf = buf[:n-i]
    			}
    			w.Write(buf)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:58 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/cmd/internal/buildid/buildid_test.go

    		}
    	}
    	for bufSize := len(id); bufSize <= len(buf); bufSize++ {
    		for j := range buf {
    			for k := 0; k < 2*len(id) && j+k < len(buf); k++ {
    				for i := range buf {
    					buf[i] = 1
    				}
    				copy(buf[j:], id)
    				copy(buf[j+k:], id)
    				var m []int64
    				if j+len(id) <= j+k {
    					m = append(m, int64(j))
    				}
    				if j+k+len(id) <= len(buf) {
    					m = append(m, int64(j+k))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top