Home | History | Annotate | Download | only in shootout

Lines Matching refs:bytes

76 func countMatches(pat string, bytes []byte) int {
80 e := re.FindIndex(bytes)
85 bytes = bytes[e[1]:]
92 bytes, err := ioutil.ReadAll(os.Stdin)
97 ilen := len(bytes)
99 bytes = regexp.MustCompile("(>[^\n]+)?\n").ReplaceAll(bytes, []byte{})
100 clen := len(bytes)
107 ch <- countMatches(ss, bytes)
112 bb := bytes