Lines Matching defs:tail
100 struct cmd_block *tail;
323 struct cmd_block *tail = bin->tail;
329 if (tail == NULL || tail->count == CMD_BLOCK_MAX) {
330 tail = lp_scene_new_cmd_block(scene, bin);
331 if (!tail) {
334 assert(tail->count == 0);
338 unsigned i = tail->count;
339 tail->cmd[i] = cmd & LP_RAST_OP_MASK;
340 tail->arg[i] = arg;
341 tail->count++;