Searched refs:hash_prefix (Results 1 - 3 of 3) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dlzwenc.c43 int hash_prefix; member in struct:Code
123 * @param hash_prefix LZW code for prefix
126 static inline int findCode(LZWEncodeState * s, uint8_t c, int hash_prefix) argument
128 int h = hash(FFMAX(hash_prefix, 0), c);
131 while (s->tab[h].hash_prefix != LZW_PREFIX_FREE) {
133 && (s->tab[h].hash_prefix == hash_prefix))
145 * @param hash_prefix LZW code for prefix
148 static inline void addCode(LZWEncodeState * s, uint8_t c, int hash_prefix, int hash_code) argument
152 s->tab[hash_code].hash_prefix
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dlzwenc.c43 int hash_prefix; member in struct:Code
123 * @param hash_prefix LZW code for prefix
126 static inline int findCode(LZWEncodeState * s, uint8_t c, int hash_prefix) argument
128 int h = hash(FFMAX(hash_prefix, 0), c);
131 while (s->tab[h].hash_prefix != LZW_PREFIX_FREE) {
133 && (s->tab[h].hash_prefix == hash_prefix))
145 * @param hash_prefix LZW code for prefix
148 static inline void addCode(LZWEncodeState * s, uint8_t c, int hash_prefix, int hash_code) argument
152 s->tab[hash_code].hash_prefix
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dlzwenc.c43 int hash_prefix; member in struct:Code
123 * @param hash_prefix LZW code for prefix
126 static inline int findCode(LZWEncodeState * s, uint8_t c, int hash_prefix) argument
128 int h = hash(FFMAX(hash_prefix, 0), c);
131 while (s->tab[h].hash_prefix != LZW_PREFIX_FREE) {
133 && (s->tab[h].hash_prefix == hash_prefix))
145 * @param hash_prefix LZW code for prefix
148 static inline void addCode(LZWEncodeState * s, uint8_t c, int hash_prefix, int hash_code) argument
152 s->tab[hash_code].hash_prefix
[all...]

Completed in 60 milliseconds