Lines Matching refs:index
390 for (index, byte) in input.iter_indices().take(bound) {
391 res += (byte as u16) << (8 * index);
423 for (index, byte) in input.iter_indices().take(bound) {
424 res += (byte as u32) << (8 * index);
456 for (index, byte) in input.iter_indices().take(bound) {
457 res += (byte as u32) << (8 * index);
489 for (index, byte) in input.iter_indices().take(bound) {
490 res += (byte as u64) << (8 * index);
522 for (index, byte) in input.iter_indices().take(bound) {
523 res += (byte as u128) << (8 * index);
1436 Some(index) => i.take_split(index),
1446 Some(index) => i.take_split(index),
1481 let index = if zero_count == 0 {
1489 (i.slice(position..), i.slice(..index))