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

  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.h 122 int btype; //block type (0-2) member in struct:lodepng::ZlibBlockInfo
lodepng.h 281 unsigned btype; /*the block type for LZ (0, 1, 2 or 3, see zlib standard). Should be 2 for proper compression.*/ member in struct:LodePNGCompressSettings
    [all...]
  /external/u-boot/fs/jffs2/
mini_inflate.c 353 int bfinal, btype; local
359 btype = pull_bits(&stream, 2);
360 if (btype == NO_COMP) decompress_none(&stream, dest + stream.decoded);
361 else if (btype == DYNAMIC_COMP)
363 else if (btype == FIXED_COMP) decompress_fixed(&stream, dest + stream.decoded);
  /external/zopfli/src/zopfli/
deflate.c 490 size_t lstart, size_t lend, int btype) {
494 double result = 3; /* bfinal and btype bits */
496 assert(btype == 1 || btype == 2); /* This is not for uncompressed blocks. */
498 if(btype == 1) {
514 btype: the block type, must be 1 or 2
528 static void AddLZ77Block(const ZopfliOptions* options, int btype, int final,
545 AddBit(btype & 1, bp, out, outsize);
546 AddBit((btype & 2) >> 1, bp, out, outsize);
548 if (btype == 1)
594 int btype = 2; local
    [all...]
  /external/mesa3d/src/compiler/glsl/
builtin_functions.cpp 4673 const glsl_type *btype = type->get_base_type(); local
4768 const glsl_type *btype = type->get_base_type(); local
4830 const glsl_type *btype = type->get_base_type(); local
    [all...]

Completed in 527 milliseconds