Home | History | Annotate | Download | only in cryptobyte

Lines Matching defs:read

24 // read advances a String by n bytes and returns them. If less than n bytes
26 func (s *String) read(n int) []byte {
37 return s.read(n) != nil
43 v := s.read(1)
54 v := s.read(2)
65 v := s.read(3)
76 v := s.read(4)
85 v := s.read(length)
99 lenBytes := s.read(lenLen)
109 // This currently cannot overflow because we read uint24 at most, but check
113 v := s.read(int(length))
145 v := s.read(n)
157 v := s.read(n)