Lines Matching defs:count
334 // @count: the minimum number of times @entry should be deleted or 0.
335 int delete_ptr_list_entry(struct ptr_list **list, void *entry, int count)
342 if (!--count)
346 assert(count <= 0);
349 return count;
357 // @count: the minimum number of times @entry should be deleted or 0.
359 void *new_ptr, int count)
366 if (!--count)
370 assert(count <= 0);
372 return count;