Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stop (0.15 sec)

  1. src/bufio/bufio_test.go

    	}
    }
    
    // A StringReader delivers its data one string segment at a time via Read.
    type StringReader struct {
    	data []string
    	step int
    }
    
    func (r *StringReader) Read(p []byte) (n int, err error) {
    	if r.step < len(r.data) {
    		s := r.data[r.step]
    		n = copy(p, s)
    		r.step++
    	} else {
    		err = io.EOF
    	}
    	return
    }
    
    func readRuneSegments(t *testing.T, segments []string) {
    	got := ""
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	LDPSW	8(R1), (ZR, R2)     // 3f084169
    	STP	(R3, R4), (R5)      // a31000a9
    	STP	(R3, R4), 8(R5)     // a39000a9
    	STP.W	(R3, R4), 8(R5)     // a39080a9
    	STP.P	(R3, R4), 8(R5)     // a39080a8
    	STP	(R3, R4), -8(R5)    // a3903fa9
    	STP	(R3, R4), -4(R5)    // bb1000d1631300a9
    	STP	(R3, R4), 11(R0)    // 1b2c0091631300a9
    	STP	(R3, R4), 1024(R0)  // 1b001091631300a9
    	STP	(R3, R4), (RSP)     // e31300a9
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  3. src/bytes/bytes_test.go

    		buf[n-7] = '\x00'
    	})
    }
    
    func BenchmarkCountSingle(b *testing.B) {
    	benchBytes(b, indexSizes, func(b *testing.B, n int) {
    		buf := bmbuf[0:n]
    		step := 8
    		for i := 0; i < len(buf); i += step {
    			buf[i] = 1
    		}
    		expect := (len(buf) + (step - 1)) / step
    		for i := 0; i < b.N; i++ {
    			j := Count(buf, []byte{1})
    			if j != expect {
    				b.Fatal("bad count", j, expect)
    			}
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
Back to top