Lines Matching refs:rowscpow
711 picoos_uint8* rowscpow, picoos_uint8 bigpow, picoos_uint8 invpow) in picocep_fixptInvDiagEle() argument
721 …rowscpow = invpow + bigpow - 30 - dlen;PICODBG_DEBUG(("input to picocep_fixptInvDiagEle is %i <= 1… in picocep_fixptInvDiagEle()
723 *rowscpow = 0; in picocep_fixptInvDiagEle()
726 b = d << (*rowscpow); in picocep_fixptInvDiagEle()
868 picoos_uint8 rowscpow, prevrowscpow; in invMatrix() local
875 cep->invdiag0[0] = picocep_fixptInvDiagEle(cep->diag0[0], &rowscpow, in invMatrix()
877 cep->diag1[0] = picocep_fixptinv((cep->diag1[0]) << rowscpow, in invMatrix()
879 cep->diag2[0] = picocep_fixptinv((cep->diag2[0]) << rowscpow, in invMatrix()
881 …cep->WUm[0] = (cep->WUm[0]) << rowscpow; /* if diag0 too low, multiply LHS and RHS of row in matri… in invMatrix()
892 v1 = picocep_fixptmult((cep->diag1[j - 1]) / (1 << rowscpow), in invMatrix()
902 prevrowscpow = rowscpow; in invMatrix()
903 cep->invdiag0[j] = picocep_fixptInvDiagEle(cep->diag0[j], &rowscpow, in invMatrix()
905 cep->WUm[j] = (cep->WUm[j]) << rowscpow; in invMatrix()
908 cep->diag1[j] = picocep_fixptinv((cep->diag1[j] - h) << rowscpow, in invMatrix()
912 cep->diag2[j] = picocep_fixptinv((cep->diag2[j]) << rowscpow, in invMatrix()