Lines Matching full:insert
91 /// Insert the value at the given index.
110 /// tree.insert(100, ten, GFP_KERNEL)?;
111 /// tree.insert(101, twenty, GFP_KERNEL)?;
115 /// tree.insert(100, the_answer, GFP_KERNEL).unwrap_err().cause,
121 pub fn insert(&self, index: usize, value: T, gfp: Flags) -> Result<(), InsertError<T>> { in insert() method
125 /// Insert a value to the specified range, failing on overlap.
149 /// // Insert the value 10 at the indices 100 to 499.
152 /// // Insert the value 20 at the indices 500 to 1000.
217 /// tree.insert(67, twenty, GFP_KERNEL)?;
333 /// tree.insert(100, ten, GFP_KERNEL)?;
334 /// tree.insert(200, twenty, GFP_KERNEL)?;
353 /// tree.insert(100, ten, GFP_KERNEL)?;
354 /// tree.insert(200, twenty, GFP_KERNEL)?;
396 /// Insert an entry with the given size somewhere in the given range.
398 /// The maple tree will search for a location in the given range where there is space to insert
550 /// tree.insert(100, ten, GFP_KERNEL)?;
551 /// tree.insert(200, twenty, GFP_KERNEL)?;
575 /// Error type for failure to insert a new value.
579 /// The reason for the failure to insert.
583 /// The reason for the failure to insert.
612 /// Error type for failure to insert a new value.
616 /// The reason for the failure to insert.
620 /// The reason for the failure to insert.