Lines Matching defs:bytes
1240 for end in s[close + 1..close + 1 + pounds].bytes() {
1510 for (i, b) in s[1..].bytes().enumerate() {
1566 let mut bytes = input.to_owned().into_bytes();
1568 let start = (*bytes.first()? == b'-') as usize;
1569 match bytes.get(start)? {
1580 while read < bytes.len() {
1581 match bytes[read] {
1591 bytes[write] = bytes[read];
1598 bytes[write] = b'.';
1601 match bytes[read + 1..]
1617 bytes[write] = b'e';
1624 if bytes[read] == b'-' {
1625 bytes[write] = bytes[read];
1642 let mut digits = String::from_utf8(bytes).unwrap();