Lines Matching refs:array
18 Hash tables are often implemented as an array, where each array entry
21 to other array-of-list situations, such as radix trees.
27 located in each array element, and where the array is never resized,
39 function used by the System V IPC code. The array is used to map from
48 the new array, and invokes ipc_rcu_putref() to free up the old array.
80 * contents of the new array are visible before the new
81 * array becomes visible.
89 The ipc_rcu_putref() function decrements the array's reference count
91 to free the array after a grace period has elapsed.
93 The array is traversed by the ipc_lock() function. This function
94 indexes into the array under the protection of rcu_read_lock(),
95 using rcu_dereference() to pick up the pointer to the array so
97 required on the Alpha CPU. Since the size of the array is stored
98 with the array itself, there can be no array-size mismatches, so
141 each array entry rather than to the entire array.