Lines Matching refs:index
413 for (index, byte) in input.iter_indices().take(bound) {
414 res += (byte as u16) << (8 * index);
446 for (index, byte) in input.iter_indices().take(bound) {
447 res += (byte as u32) << (8 * index);
479 for (index, byte) in input.iter_indices().take(bound) {
480 res += (byte as u32) << (8 * index);
512 for (index, byte) in input.iter_indices().take(bound) {
513 res += (byte as u64) << (8 * index);
545 for (index, byte) in input.iter_indices().take(bound) {
546 res += (byte as u128) << (8 * index);
1467 Some(index) => i.take_split(index),
1476 Some(index) => i.take_split(index),
1508 let index = if zero_count == 0 {
1516 (i.slice(position..), i.slice(..index))