Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for buf4 (0.16 sec)

  1. test/escape2.go

    	arr    [64]byte
    	arrPtr *[64]byte
    	buf1   []byte
    	buf2   []byte
    	str1   string
    	str2   string
    }
    
    func (b *Buffer) foo() { // ERROR "b does not escape$"
    	b.buf1 = b.buf1[1:2]   // ERROR "\(\*Buffer\).foo ignoring self-assignment in b.buf1 = b.buf1\[1:2\]$"
    	b.buf1 = b.buf1[1:2:3] // ERROR "\(\*Buffer\).foo ignoring self-assignment in b.buf1 = b.buf1\[1:2:3\]$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. test/escape2n.go

    	arr    [64]byte
    	arrPtr *[64]byte
    	buf1   []byte
    	buf2   []byte
    	str1   string
    	str2   string
    }
    
    func (b *Buffer) foo() { // ERROR "b does not escape$"
    	b.buf1 = b.buf1[1:2]   // ERROR "\(\*Buffer\).foo ignoring self-assignment in b.buf1 = b.buf1\[1:2\]$"
    	b.buf1 = b.buf1[1:2:3] // ERROR "\(\*Buffer\).foo ignoring self-assignment in b.buf1 = b.buf1\[1:2:3\]$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. test/fixedbugs/issue4099.go

    // The noescape comment only applies to the next func,
    // which must not have a body.
    
    //go:noescape
    
    func F1([]byte)
    
    func F2([]byte)
    
    func G() {
    	var buf1 [10]byte
    	F1(buf1[:])
    
    	var buf2 [10]byte // ERROR "moved to heap: buf2"
    	F2(buf2[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 509 bytes
    - Viewed (0)
  4. 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)
  5. src/net/http/response_test.go

    			}
    			fatalf(msg+": %v", err)
    		}
    		var buf bytes.Buffer
    		buf.WriteString("HTTP/1.1 200 OK\r\n")
    		if test.chunked {
    			buf.WriteString("Transfer-Encoding: chunked\r\n")
    		} else {
    			buf.WriteString("Content-Length: 1000000\r\n")
    		}
    		var wr io.Writer = &buf
    		if test.chunked {
    			wr = internal.NewChunkedWriter(wr)
    		}
    		if test.compressed {
    			buf.WriteString("Content-Encoding: gzip\r\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser_test.go

    }
    
    func verifyPrint(t *testing.T, filename string, ast1 *File) {
    	var buf1 bytes.Buffer
    	_, err := Fprint(&buf1, ast1, LineForm)
    	if err != nil {
    		panic(err)
    	}
    	bytes1 := buf1.Bytes()
    
    	ast2, err := Parse(NewFileBase(filename), &buf1, nil, nil, 0)
    	if err != nil {
    		panic(err)
    	}
    
    	var buf2 bytes.Buffer
    	_, err = Fprint(&buf2, ast2, LineForm)
    	if err != nil {
    		panic(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 16:30:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/bytes/bytes_test.go

    			if j != n-3 {
    				b.Fatal("bad index", j)
    			}
    		}
    		buf[n-3] = '\x00'
    		buf[n-2] = '\x00'
    		buf[n-1] = '\x00'
    	}
    }
    
    func BenchmarkEqual(b *testing.B) {
    	b.Run("0", func(b *testing.B) {
    		var buf [4]byte
    		buf1 := buf[0:0]
    		buf2 := buf[1:1]
    		for i := 0; i < b.N; i++ {
    			eq := Equal(buf1, buf2)
    			if !eq {
    				b.Fatal("bad equal")
    			}
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/CharSequenceReaderTest.java

        assertEquals(expected, buf2.toString());
        assertFullyRead(reader);
    
        // read in chunks to fixed CharBuffer
        reader = new CharSequenceReader(charSequence);
        buf2 = CharBuffer.allocate(5);
        builder = new StringBuilder();
        while (reader.read(buf2) != -1) {
          Java8Compatibility.flip(buf2);
          builder.append(buf2);
          Java8Compatibility.clear(buf2);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/net/http/cgi/child.go

    	if r.wroteCGIHeader {
    		return
    	}
    	r.wroteCGIHeader = true
    	fmt.Fprintf(r.bufw, "Status: %d %s\r\n", r.code, http.StatusText(r.code))
    	if _, hasType := r.header["Content-Type"]; !hasType {
    		r.header.Set("Content-Type", http.DetectContentType(p))
    	}
    	r.header.Write(r.bufw)
    	r.bufw.WriteString("\r\n")
    	r.bufw.Flush()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/os/dir_plan9.go

    	defer d.mu.Unlock()
    
    	size := n
    	if size <= 0 {
    		size = 100
    		n = -1
    	}
    	for n != 0 {
    		// Refill the buffer if necessary.
    		if d.bufp >= d.nbuf {
    			nb, err := file.Read(d.buf[:])
    
    			// Update the buffer state before checking for errors.
    			d.bufp, d.nbuf = 0, nb
    
    			if err != nil {
    				if err == io.EOF {
    					break
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top