Home
last modified time | relevance | path

Searched refs:this_pool (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/sys/dev/isci/scil/
H A Dsci_pool.h102 ((this_pool).get == (this_pool).put)
109 (SCI_POOL_INCREMENT(this_pool, (this_pool).put) == (this_pool).get)
118 ((this_pool).size - 1)
132 (this_pool).get > (this_pool).put \
133 ? ((this_pool).size - (this_pool).get + (this_pool).put) \
134 : ((this_pool).put - (this_pool).get) \
144 (this_pool).size = (sizeof((this_pool).array) / sizeof((this_pool).array[0])); \
155 (my_value) = (this_pool).array[(this_pool).get]; \
156 (this_pool).get = SCI_POOL_INCREMENT((this_pool), (this_pool).get); \
165 (this_pool).array[(this_pool).put] = (the_value); \
[all …]