Lines Matching refs:split_at_unchecked
120 unsafe { Ok(self.split_at_unchecked(mid)) } in split_at()
141 unsafe fn split_at_unchecked(self, mid: usize) -> (Self, Self); in split_at_unchecked() method
214 unsafe fn split_at_unchecked(self, mid: usize) -> (Self, Self) { in split_at_unchecked() method
245 unsafe fn split_at_unchecked(self, mid: usize) -> (Self, Self) { in split_at_unchecked() method
334 unsafe fn split_at_unchecked(self, mid: usize) -> (Self, Self) { in split_at_unchecked() method
339 SplitByteSlice::split_at_unchecked(slice, mid) in split_at_unchecked()
354 unsafe fn split_at_unchecked(self, mid: usize) -> (Self, Self) { in split_at_unchecked() method
359 SplitByteSlice::split_at_unchecked(slice, mid) in split_at_unchecked()
380 let (l, r) = unsafe { slc.split_at_unchecked(mid) }; in prove_split_at_unchecked()
395 let (l, r) = unsafe { slc.split_at_unchecked(mid) }; in prove_split_at_unchecked()
419 let (l, r) = unsafe { slice_ref.split_at_unchecked(2) }; in test_ref_split_at_unchecked()
430 let (l, r) = unsafe { slice_ref_mut.split_at_unchecked(2) }; in test_ref_mut_split_at_unchecked()