HomeSort by relevance Sort by last modified time
    Searched refs:firstNonZero (Results 1 - 5 of 5) sorted by null

  /external/skia/src/core/
SkConvolver.cpp 293 int firstNonZero = 0;
294 while (firstNonZero < filterLength && filterValues[firstNonZero] == 0) {
295 firstNonZero++;
298 if (firstNonZero < filterLength) {
305 filterOffset += firstNonZero;
306 filterLength = lastNonZero + 1 - firstNonZero;
309 fFilterValues.append(filterLength, &filterValues[firstNonZero]);
  /libcore/ojluni/src/main/java/sun/security/util/
ObjectIdentifier.java 539 int firstNonZero = pack.length-1; // paste at least one byte
542 firstNonZero = i;
546 System.arraycopy(pack, firstNonZero, out, ooffset, pack.length-firstNonZero);
547 return pack.length-firstNonZero;
559 int firstNonZero = pack.length-1; // paste at least one byte
562 firstNonZero = i;
565 System.arraycopy(pack, firstNonZero, out, ooffset, pack.length-firstNonZero);
566 return pack.length-firstNonZero;
    [all...]
  /external/pdfium/xfa/src/fxbarcode/common/reedsolomon/
BC_ReedSolomonGF256Poly.cpp 47 int32_t firstNonZero = 1;
48 while ((firstNonZero < coefficientsLength) &&
49 ((*coefficients)[firstNonZero] == 0)) {
50 firstNonZero++;
52 if (firstNonZero == coefficientsLength) {
55 m_coefficients.SetSize(coefficientsLength - firstNonZero);
56 for (int32_t i = firstNonZero, j = 0; i < coefficientsLength; i++, j++) {
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417ECModulusPoly.cpp 36 int32_t firstNonZero = 1;
37 while (firstNonZero < coefficientsLength &&
38 coefficients[firstNonZero] == 0) {
39 firstNonZero++;
41 if (firstNonZero == coefficientsLength) {
44 m_coefficients.SetSize(coefficientsLength - firstNonZero);
46 for (int32_t i = firstNonZero;
47 i < firstNonZero + m_coefficients.GetSize(); i++) {
  /external/zxing/core/
core.jar 

Completed in 112 milliseconds