Lines Matching defs:active
3199 * @param lane - id of the lane or NULL for the first active lane
3663 LLVMValueRef active, tmp1, tmp2;
3671 active =
3674 tmp2 = LLVMBuildSelect(ctx->builder, active,
3678 active = LLVMBuildOr(
3679 ctx->builder, active,
3684 return LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
3686 active =
3689 return LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
3696 LLVMValueRef active, tmp1, tmp2;
3700 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
3703 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
3705 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
3708 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
3710 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ,
3713 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
3715 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ, tid, LLVMConstInt(ctx->i32, 32, 0), "");
3716 tmp1 = LLVMBuildSelect(ctx->builder, active, tmp2, tmp1, "");
3717 active = LLVMBuildICmp(ctx->builder, LLVMIntEQ, tid, LLVMConstInt(ctx->i32, 0, 0), "");
3718 return LLVMBuildSelect(ctx->builder, active, identity, tmp1, "");
3738 LLVMValueRef active;
3740 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3742 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
3745 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3748 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
3751 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3754 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
3757 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3760 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
3763 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3766 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
3769 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3772 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
3802 LLVMValueRef active;
3806 active = LLVMBuildICmp(ctx->builder, LLVMIntNE,
3810 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
3819 active = LLVMBuildICmp(ctx->builder, LLVMIntUGE, tid, LLVMConstInt(ctx->i32, 32, false), "");
3821 tmp = LLVMBuildSelect(ctx->builder, active, tmp, identity, "");
4053 * All lanes must be active when this code runs.
4101 * The caller must ensure that all lanes are active when this code runs