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

/external/zopfli/src/zopflipng/lodepng/
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 233 milliseconds