Home | History | Annotate | Download | only in gallivm

Lines Matching refs:step

242                        LLVMValueRef step,
250 if (!step)
251 step = LLVMConstInt(LLVMTypeOf(end), 1, 0);
253 next = LLVMBuildAdd(builder, state->counter, step, "");
272 LLVMValueRef step)
274 lp_build_loop_end_cond(state, end, step, LLVMIntNE);
280 * e.g. for(i = start; i cmp_op end; i += step)
286 * \param step value added to iterator at end of each loop
294 LLVMValueRef step)
299 assert(LLVMTypeOf(start) == LLVMTypeOf(step));
302 state->step = step;
327 next = LLVMBuildAdd(builder, state->counter, state->step, "");