Searched refs:replength (Results 1 - 2 of 2) sorted by relevance

/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng_util.cpp425 size_t i = 0, replength;
434 replength = 3 + readBitsFromStream(bp, in, 2);
438 for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
447 replength = 3 + readBitsFromStream(bp, in, 3);
448 zlibinfo->back().treecodes.push_back(replength); //tree symbol code repetitions
449 for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
458 replength = 11 + readBitsFromStream(bp, in, 7);
459 zlibinfo->back().treecodes.push_back(replength); //tree symbol code repetitions
460 for(size_t n = 0; n < replength; n++) //repeat this value in the next lengths
H A Dlodepng.cpp1000 unsigned replength = 3; /*read in the 2 bits that indicate repeat length (3-6)*/ local
1006 replength += readBitsFromStream(bp, in, 2);
1011 for(n = 0; n < replength; n++)
1021 unsigned replength = 3; /*read in the bits that indicate repeat length*/ local
1024 replength += readBitsFromStream(bp, in, 3);
1027 for(n = 0; n < replength; n++)
1038 unsigned replength = 11; /*read in the bits that indicate repeat length*/ local
1041 replength += readBitsFromStream(bp, in, 7);
1044 for(n = 0; n < replength; n++)

Completed in 72 milliseconds