Searched refs:prepare_to_insert (Results 1 – 2 of 2) sorted by relevance
200 // * This returns the same pointer as `prepare_to_insert` because `prepare_to_insert`212 // * `me` originates from the most recent call to `prepare_to_insert`, which calls215 // pointer originally passed to `prepare_to_insert`.217 // of the most recent call to `prepare_to_insert` promised to retain ownership of the221 // SAFETY: `me` originates from the most recent call to `prepare_to_insert`, so it229 // `ListLinks` several times because calls to `prepare_to_insert` and `post_remove`235 unsafe fn prepare_to_insert(me: *const Self) -> *mut $crate::list::ListLinks<$num> {241 // * `me` originates from the most recent call to `prepare_to_insert`, which calls244 // pointer originally passed to `prepare_to_insert`[all...]
359 unsafe fn prepare_to_insert(me: *const Self) -> *mut ListLinks<ID>; in prepare_to_insert() method518 let list_links = unsafe { T::prepare_to_insert(raw_item) }; in insert_inner()