Lines Matching full:array
16 array that is separately indexed. It might be tempting to consider use
17 of RCU to instead protect the index into an array, however, this use
34 Hash tables are often implemented as an array, where each array entry
37 to other array-of-list situations, such as radix trees.
45 located in each array element, and where the array is never resized,
61 function formerly used by the System V IPC code. The array is used
70 the new array, and invokes ipc_rcu_putref() to free up the old array.
102 * contents of the new array are visible before the new
103 * array becomes visible.
111 The ipc_rcu_putref() function decrements the array's reference count
113 to free the array after a grace period has elapsed.
115 The array is traversed by the ipc_lock() function. This function
116 indexes into the array under the protection of rcu_read_lock(),
117 using rcu_dereference() to pick up the pointer to the array so
119 required on the Alpha CPU. Since the size of the array is stored
120 with the array itself, there can be no array-size mismatches, so
165 each array entry rather than to the entire array.