Searched defs:firstNonZero (Results 1 - 3 of 3) sorted by relevance

/external/pdfium/xfa/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256Poly.cpp50 int32_t firstNonZero = 1; local
51 while ((firstNonZero < coefficientsLength) &&
52 ((*coefficients)[firstNonZero] == 0)) {
53 firstNonZero++;
55 if (firstNonZero == coefficientsLength) {
58 m_coefficients.SetSize(coefficientsLength - firstNonZero);
59 for (int32_t i = firstNonZero, j = 0; i < coefficientsLength; i++, j++) {
/external/skia/src/core/
H A DSkConvolver.cpp118 int firstNonZero = 0; local
119 while (firstNonZero < filterLength && filterValues[firstNonZero] == 0) {
120 firstNonZero++;
123 if (firstNonZero < filterLength) {
130 filterOffset += firstNonZero;
131 filterLength = lastNonZero + 1 - firstNonZero;
134 fFilterValues.append(filterLength, &filterValues[firstNonZero]);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...

Completed in 173 milliseconds