Searched refs:nonzeros (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp8/decoder/ |
D | detokenize.c | 177 int nonzeros; in vp8_decode_mb_tokens() local 197 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), 0, qcoeff_ptr + 24 * 16); in vp8_decode_mb_tokens() 198 *a = *l = (nonzeros > 0); in vp8_decode_mb_tokens() 200 eobs[24] = nonzeros; in vp8_decode_mb_tokens() 201 eobtotal += nonzeros - 16; in vp8_decode_mb_tokens() 217 nonzeros = GetCoeffs(bc, coef_probs, (*a + *l), skip_dc, qcoeff_ptr); in vp8_decode_mb_tokens() 218 *a = *l = (nonzeros > 0); in vp8_decode_mb_tokens() 220 nonzeros += skip_dc; in vp8_decode_mb_tokens() 221 eobs[i] = nonzeros; in vp8_decode_mb_tokens() 222 eobtotal += nonzeros; in vp8_decode_mb_tokens() [all …]
|
/external/webp/src/enc/ |
D | histogram.c | 149 static WEBP_INLINE double BitsEntropyRefine(int nonzeros, int sum, int max_val, in BitsEntropyRefine() argument 152 if (nonzeros < 5) { in BitsEntropyRefine() 153 if (nonzeros <= 1) { in BitsEntropyRefine() 159 if (nonzeros == 2) { in BitsEntropyRefine() 166 if (nonzeros == 3) { in BitsEntropyRefine() 185 int nonzeros = 0; in BitsEntropy() local 191 ++nonzeros; in BitsEntropy() 199 return BitsEntropyRefine(nonzeros, sum, max_val, retval); in BitsEntropy() 206 int nonzeros = 0; in BitsEntropyCombined() local 213 ++nonzeros; in BitsEntropyCombined() [all …]
|
D | backward_references.c | 472 int nonzeros = 0; in ConvertPopulationCountTableToBitEstimates() local 477 ++nonzeros; in ConvertPopulationCountTableToBitEstimates() 480 if (nonzeros <= 1) { in ConvertPopulationCountTableToBitEstimates()
|
/external/eigen/bench/spbench/ |
D | spbench.dtd | 10 <!ELEMENT ENTRIES (#PCDATA)> <!-- The number of nonzeros elements -->
|
/external/eigen/Eigen/ |
D | OrderingMethods | 19 * the nonzeros elements in LLT(A*P) will be much smaller than that in LLT(A).
|
/external/eigen/doc/ |
D | SparseLinearSystems.dox | 96 A = ...; // modify the values of the nonzeros of A, the nonzeros pattern must st…
|
D | SparseQuickReference.dox | 25 sm1.reserve(nnz); // Allocate room for nnz nonzeros elements.
|
D | TutorialSparse.dox | 57 … a random element is therefore in O(nnz_j) where nnz_j is the number of nonzeros of the respective… 224 …ctorXi or std::vector<int>). If only a rought estimate of the number of nonzeros per inner-vector …
|