Home
last modified time | relevance | path

Searched refs:nroots (Results 1 – 11 of 11) sorted by relevance

/external/fec/
Dinit_rs.h21 if(nroots < 0 || nroots >= (1<<symsize))
23 if(pad < 0 || pad >= ((1<<symsize) -1 - nroots))
70 rs->genpoly = (data_t *)malloc(sizeof(data_t)*(nroots+1));
80 rs->nroots = nroots;
88 for (i = 0,root=fcr*prim; i < nroots; i++,root += prim) {
102 for (i = 0; i <= nroots; i++)
Drstest.c20 int nroots; member
57 kk = nn - Tab[i].nroots; in main()
155 kk = nn - e->nroots; in exercise_char()
157 rs = init_rs_char(e->symsize,e->genpoly,e->fcs,e->prim,e->nroots,0); in exercise_char()
163 for(errors=0;errors <= e->nroots/2;errors++){ in exercise_char()
233 kk = nn - e->nroots; in exercise_int()
235 rs = init_rs_int(e->symsize,e->genpoly,e->fcs,e->prim,e->nroots,0); in exercise_int()
241 for(errors=0;errors <= e->nroots/2;errors++){ in exercise_int()
Dinit_rs_int.c29 int nroots,int pad){ in init_rs_int() argument
Dinit_rs_char.c29 int nroots,int pad){ in init_rs_char() argument
Dinit_rs.c33 int nroots,int pad){ in init_rs_common() argument
Drs-common.h13 int nroots; /* Number of generator roots = number of parity symbols */ member
Dchar.h15 #define NROOTS (rs->nroots)
Dint.h15 #define NROOTS (rs->nroots)
Dexercise.c33 #define PRINTPARM printf("(%d,%d):",rs->nn,rs->nn-rs->nroots);
Dfec.h233 int fcr,int prim,int nroots,
241 int prim,int nroots,int pad);
/external/opencv3/modules/core/src/
Dmathfuncs.cpp2121 int nroots = cv::solveCubic(_coeffs, _roots); in cvSolveCubic() local
2123 return nroots; in cvSolveCubic()