HomeSort by relevance Sort by last modified time
    Searched full:replength (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/java/sun/security/util/
BitArray.java 86 int repLength = ((length + BITS_PER_UNIT - 1)/BITS_PER_UNIT);
87 int unusedBits = repLength*BITS_PER_UNIT - length;
95 repn = new byte[repLength];
96 System.arraycopy(a, 0, repn, 0, repLength);
97 if (repLength > 0) {
98 repn[repLength - 1] &= bitMask;
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 425 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
lodepng.cpp 1000 unsigned replength = 3; \/*read in the 2 bits that indicate repeat length (3-6)*\/ local
1021 unsigned replength = 3; \/*read in the bits that indicate repeat length*\/ local
1038 unsigned replength = 11; \/*read in the bits that indicate repeat length*\/ local
    [all...]

Completed in 3383 milliseconds