Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_ir_common.c96 if (ctx->cond_stack_size > 0) in mask_has_cond()
156 ctx->cond_stack_size = 0; in lp_exec_mask_function_init()
359 if (ctx->cond_stack_size >= LP_MAX_TGSI_NESTING) { in lp_exec_mask_cond_push()
360 ctx->cond_stack_size++; in lp_exec_mask_cond_push()
363 if (ctx->cond_stack_size == 0 && mask->function_stack_size == 1) { in lp_exec_mask_cond_push()
366 ctx->cond_stack[ctx->cond_stack_size++] = mask->cond_mask; in lp_exec_mask_cond_push()
382 assert(ctx->cond_stack_size); in lp_exec_mask_cond_invert()
383 if (ctx->cond_stack_size >= LP_MAX_TGSI_NESTING) in lp_exec_mask_cond_invert()
385 prev_mask = ctx->cond_stack[ctx->cond_stack_size - 1]; in lp_exec_mask_cond_invert()
386 if (ctx->cond_stack_size == 1 && mask->function_stack_size == 1) { in lp_exec_mask_cond_invert()
[all …]
Dlp_bld_ir_common.h69 int cond_stack_size; member
Dlp_bld_tgsi_soa.c390 if (ctx->cond_stack_size == 0 && in lp_exec_mask_ret()