Lines Matching refs:code128_step
162 struct code128_step { struct
171 struct code128_step * steps; argument
300 static int code128_do_a_step(struct code128_step * base, int prev_ix, int ix) in code128_do_a_step()
302 struct code128_step * previous_step = &base[prev_ix]; in code128_do_a_step()
303 struct code128_step * step = &base[ix]; in code128_do_a_step()
324 static int code128_do_b_step(struct code128_step * base, int prev_ix, int ix) in code128_do_b_step()
326 struct code128_step * previous_step = &base[prev_ix]; in code128_do_b_step()
327 struct code128_step * step = &base[ix]; in code128_do_b_step()
348 static int code128_do_c_step(struct code128_step * base, int prev_ix, int ix) in code128_do_c_step()
350 struct code128_step * previous_step = &base[prev_ix]; in code128_do_c_step()
351 struct code128_step * step = &base[ix]; in code128_do_c_step()
377 static struct code128_step * code128_alloc_step(struct code128_state * state) in code128_alloc_step()
381 state->steps = (struct code128_step *) CODE128_REALLOC(state->steps, in code128_alloc_step()
382 … state->allocated_steps * sizeof(struct code128_step)); in code128_alloc_step()
385 struct code128_step * step = &state->steps[state->todo_ix]; in code128_alloc_step()
393 struct code128_step * step = &state->steps[state->current_ix]; in code128_do_step()
467 …state.steps = (struct code128_step *) CODE128_MALLOC(state.allocated_steps * sizeof(struct code128… in code128_encode_raw()
511 struct code128_step * step = &state.steps[state.best_ix]; in code128_encode_raw()
514 struct code128_step * prev_step = &state.steps[step->prev_ix]; in code128_encode_raw()