Lines Matching refs:items
8 to add and remove data items of any size.
22 * A **queue** of data items that have been added but not yet removed.
27 FIFO data items must be aligned on a word boundary, as the kernel reserves
31 reserved space requirements for data items if they are added with
36 FIFO data items are restricted to single active instance across all FIFO
44 There is no limit to the number of items that may be queued.
56 If desired, **multiple data items** can be added to a FIFO in a single operation
58 useful if multiple writers are adding sets of related data items to the FIFO,
59 as it ensures the data items in each set are not interleaved with other data
60 items. Adding multiple data items to a FIFO is also more efficient than adding
62 the first data item in a set will be able to remove the remaining data items
121 Additionally, a singly-linked list of data items can be added to a FIFO
135 to obtain data items from a producer thread,
155 Use a FIFO to asynchronously transfer data items of arbitrary size