Lines Matching defs:rank
40 * The rank will be the number of bins in the scene. Whenever a rendering
42 * the counter == the rank, the fence is finished.
44 * \param rank the expected finished value of the fence counter.
47 lp_fence_create(unsigned rank)
61 fence->rank = rank;
85 * When the counter == the rank, the fence is finished.
96 assert(fence->count <= fence->rank);
99 debug_printf("%s count=%u rank=%u\n", __FUNCTION__,
100 fence->count, fence->rank);
112 return f->count == f->rank;
123 while (f->count < f->rank) {
145 while (f->count < f->rank) {
153 const boolean result = (f->count >= f->rank);