Home | History | Annotate | Download | only in fec

Lines Matching refs:decisions

24   void *decisions;   /* Beginning of decisions for block */
40 vp->dp = vp->decisions;
54 vp->decisions = malloc(sizeof(decision_t)*(len+14));
78 decision_t *d = (decision_t *)vp->decisions;
105 free(vp->decisions);
114 vector unsigned char decisions = (vector unsigned char)(0);
162 /* Store decisions and survivors.
166 decisions = vec_add(decisions,decisions); /* Shift each byte 1 bit to the left */
171 decisions = vec_sub(decisions,(vector unsigned char)vec_pack(vec_mergeh(decision0,decision1),vec_mergel(decision0,decision1)));
177 /* We've accumulated a total of 128 decisions, stash and start again */
178 d->v[i>>3] = decisions; /* No need to clear, the new bits will replace the old */