Lines Matching refs:bound

36   let bound: usize = 1;
37 if input.input_len() < bound {
42 Ok((input.slice(bound..), res))
66 let bound: usize = 2;
67 if input.input_len() < bound {
71 for byte in input.iter_elements().take(bound) {
75 Ok((input.slice(bound..), res))
99 let bound: usize = 3;
100 if input.input_len() < bound {
104 for byte in input.iter_elements().take(bound) {
108 Ok((input.slice(bound..), res))
132 let bound: usize = 4;
133 if input.input_len() < bound {
137 for byte in input.iter_elements().take(bound) {
141 Ok((input.slice(bound..), res))
165 let bound: usize = 8;
166 if input.input_len() < bound {
170 for byte in input.iter_elements().take(bound) {
174 Ok((input.slice(bound..), res))
198 let bound: usize = 16;
199 if input.input_len() < bound {
203 for byte in input.iter_elements().take(bound) {
207 Ok((input.slice(bound..), res))
378 let bound: usize = 1;
379 if input.input_len() < bound {
384 Ok((input.slice(bound..), res))
408 let bound: usize = 2;
409 if input.input_len() < bound {
413 for (index, byte) in input.iter_indices().take(bound) {
417 Ok((input.slice(bound..), res))
441 let bound: usize = 3;
442 if input.input_len() < bound {
446 for (index, byte) in input.iter_indices().take(bound) {
450 Ok((input.slice(bound..), res))
474 let bound: usize = 4;
475 if input.input_len() < bound {
479 for (index, byte) in input.iter_indices().take(bound) {
483 Ok((input.slice(bound..), res))
507 let bound: usize = 8;
508 if input.input_len() < bound {
512 for (index, byte) in input.iter_indices().take(bound) {
516 Ok((input.slice(bound..), res))
540 let bound: usize = 16;
541 if input.input_len() < bound {
545 for (index, byte) in input.iter_indices().take(bound) {
549 Ok((input.slice(bound..), res))
721 let bound: usize = 1;
722 if input.input_len() < bound {
727 Ok((input.slice(bound..), res))