HomeSort by relevance Sort by last modified time
    Searched refs:RunningBits (Results 1 - 2 of 2) sorted by null

  /external/giflib/
gif_lib_private.h 39 RunningBits, /* The number of bits required to represent RunningCode. */
40 MaxCode1, /* 1 bigger than max. possible code, in RunningBits bits. */
dgif_lib.c 712 Private->RunningBits = BitsPerPixel + 1; /* Number of bits per code. */
713 Private->MaxCode1 = 1 << Private->RunningBits; /* Max. code + 1. */
779 Private->RunningBits = Private->BitsPerPixel + 1;
780 Private->MaxCode1 = 1 << Private->RunningBits;
912 Private->RunningBits = Private->BitsPerPixel + 1;
913 Private->MaxCode1 = 1 << Private->RunningBits;
    [all...]

Completed in 928 milliseconds