Home | History | Annotate | Download | only in lodepng

Lines Matching refs:replength

1000         unsigned replength = 3; /*read in the 2 bits that indicate repeat length (3-6)*/
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*/
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*/
1041 replength += readBitsFromStream(bp, in, 7);
1044 for(n = 0; n < replength; n++)