Home | History | Annotate | Download | only in llvmpipe

Lines Matching defs:tail

81    struct cmd_block *tail;
100 struct cmd_block *tail;
298 struct cmd_block *tail = bin->tail;
304 if (tail == NULL || tail->count == CMD_BLOCK_MAX) {
305 tail = lp_scene_new_cmd_block( scene, bin );
306 if (!tail) {
309 assert(tail->count == 0);
313 unsigned i = tail->count;
314 tail->cmd[i] = cmd & LP_RAST_OP_MASK;
315 tail->arg[i] = arg;
316 tail->count++;