Lines Matching defs:space
181 * - CDMA_EVENT_PUSH_BUFFER_SPACE : there is space in the push buffer
182 * - Return the amount of space (> 0)
190 unsigned int space;
194 space = list_empty(&cdma->sync_queue) ? 1 : 0;
198 space = host1x_pushbuffer_space(pb);
206 if (space)
207 return space;
231 * Sleep (if necessary) until the push buffer has enough free space.
241 unsigned int space;
243 space = host1x_pushbuffer_space(pb);
244 if (space >= needed)
563 unsigned int space = cdma->slots_free;
576 space = host1x_pushbuffer_space(pb);
578 cdma->slots_free = space - needed;