Lines Matching refs:array
14 array that is separately indexed. It might be tempting to consider use
15 of RCU to instead protect the index into an array, however, this use
30 Hash tables are often implemented as an array, where each array entry
33 to other array-of-list situations, such as radix trees.
39 located in each array element, and where the array is never resized,
51 function formerly used by the System V IPC code. The array is used
60 the new array, and invokes ipc_rcu_putref() to free up the old array.
92 * contents of the new array are visible before the new
93 * array becomes visible.
101 The ipc_rcu_putref() function decrements the array's reference count
103 to free the array after a grace period has elapsed.
105 The array is traversed by the ipc_lock() function. This function
106 indexes into the array under the protection of rcu_read_lock(),
107 using rcu_dereference() to pick up the pointer to the array so
109 required on the Alpha CPU. Since the size of the array is stored
110 with the array itself, there can be no array-size mismatches, so
153 each array entry rather than to the entire array.