Searched refs:h_count (Results 1 - 19 of 19) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/
H A Dsp5xdec.c108 s->h_count[0] = 2;
112 s->h_count[1] = 1;
116 s->h_count[2] = 1;
162 s->nb_blocks[0] = s->h_count[0] * s->v_count[0];
163 s->h_scount[0] = s->h_count[0];
169 s->nb_blocks[1] = s->h_count[1] * s->v_count[1];
170 s->h_scount[1] = s->h_count[1];
176 s->nb_blocks[2] = s->h_count[2] * s->v_count[2];
177 s->h_scount[2] = s->h_count[2];
H A Dmjpegdec.h72 int h_count[MAX_COMPONENTS]; /* horizontal and vertical count for each component */ member in struct:MJpegDecodeContext
H A Dmjpegdec.c238 s->h_count[i] = get_bits(&s->gb, 4);
241 if (s->h_count[i] > s->h_max)
242 s->h_max = s->h_count[i];
248 av_log(s->avctx, AV_LOG_DEBUG, "component %d %d:%d id: %d quant:%d\n", i, s->h_count[i],
260 /* XXX: also check h_count and v_count */
290 pix_fmt_id = (s->h_count[0] << 28) | (s->v_count[0] << 24) |
291 (s->h_count[1] << 20) | (s->v_count[1] << 16) |
292 (s->h_count[2] << 12) | (s->v_count[2] << 8) |
293 (s->h_count[3] << 4) | s->v_count[3];
362 int size = bw * bh * s->h_count[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/
H A Dsp5xdec.c108 s->h_count[0] = 2;
112 s->h_count[1] = 1;
116 s->h_count[2] = 1;
162 s->nb_blocks[0] = s->h_count[0] * s->v_count[0];
163 s->h_scount[0] = s->h_count[0];
169 s->nb_blocks[1] = s->h_count[1] * s->v_count[1];
170 s->h_scount[1] = s->h_count[1];
176 s->nb_blocks[2] = s->h_count[2] * s->v_count[2];
177 s->h_scount[2] = s->h_count[2];
H A Dmjpegdec.h72 int h_count[MAX_COMPONENTS]; /* horizontal and vertical count for each component */ member in struct:MJpegDecodeContext
H A Dmjpegdec.c238 s->h_count[i] = get_bits(&s->gb, 4);
241 if (s->h_count[i] > s->h_max)
242 s->h_max = s->h_count[i];
248 av_log(s->avctx, AV_LOG_DEBUG, "component %d %d:%d id: %d quant:%d\n", i, s->h_count[i],
260 /* XXX: also check h_count and v_count */
290 pix_fmt_id = (s->h_count[0] << 28) | (s->v_count[0] << 24) |
291 (s->h_count[1] << 20) | (s->v_count[1] << 16) |
292 (s->h_count[2] << 12) | (s->v_count[2] << 8) |
293 (s->h_count[3] << 4) | s->v_count[3];
362 int size = bw * bh * s->h_count[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/
H A Dsp5xdec.c108 s->h_count[0] = 2;
112 s->h_count[1] = 1;
116 s->h_count[2] = 1;
162 s->nb_blocks[0] = s->h_count[0] * s->v_count[0];
163 s->h_scount[0] = s->h_count[0];
169 s->nb_blocks[1] = s->h_count[1] * s->v_count[1];
170 s->h_scount[1] = s->h_count[1];
176 s->nb_blocks[2] = s->h_count[2] * s->v_count[2];
177 s->h_scount[2] = s->h_count[2];
H A Dmjpegdec.h72 int h_count[MAX_COMPONENTS]; /* horizontal and vertical count for each component */ member in struct:MJpegDecodeContext
H A Dmjpegdec.c238 s->h_count[i] = get_bits(&s->gb, 4);
241 if (s->h_count[i] > s->h_max)
242 s->h_max = s->h_count[i];
248 av_log(s->avctx, AV_LOG_DEBUG, "component %d %d:%d id: %d quant:%d\n", i, s->h_count[i],
260 /* XXX: also check h_count and v_count */
290 pix_fmt_id = (s->h_count[0] << 28) | (s->v_count[0] << 24) |
291 (s->h_count[1] << 20) | (s->v_count[1] << 16) |
292 (s->h_count[2] << 12) | (s->v_count[2] << 8) |
293 (s->h_count[3] << 4) | s->v_count[3];
362 int size = bw * bh * s->h_count[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/lockd/
H A Dhost.c176 atomic_set(&host->h_count, 1);
209 BUG_ON(atomic_read(&host->h_count));
412 atomic_inc(&host->h_count);
425 BUG_ON(atomic_read(&host->h_count) < 0);
426 if (atomic_dec_and_test(&host->h_count)) {
523 host->h_name, atomic_read(&host->h_count),
553 if (atomic_read(&host->h_count) || host->h_inuse
556 host->h_name, atomic_read(&host->h_count),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/lockd/
H A Dhost.c176 atomic_set(&host->h_count, 1);
209 BUG_ON(atomic_read(&host->h_count));
412 atomic_inc(&host->h_count);
425 BUG_ON(atomic_read(&host->h_count) < 0);
426 if (atomic_dec_and_test(&host->h_count)) {
523 host->h_name, atomic_read(&host->h_count),
553 if (atomic_read(&host->h_count) || host->h_inuse
556 host->h_name, atomic_read(&host->h_count),
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iptables/
H A Diptables-xml.c185 int h_count = 0; local
189 h_count++;
190 if (h_count >= 2) {
191 h_count = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/iptables-1.4.x/iptables/
H A Diptables-xml.c176 int h_count = 0; local
180 h_count++;
181 if (h_count >= 2) {
182 h_count = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iptables/
H A Diptables-xml.c185 int h_count = 0; local
189 h_count++;
190 if (h_count >= 2) {
191 h_count = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/iptables-1.4.x/iptables/
H A Diptables-xml.c176 int h_count = 0; local
180 h_count++;
181 if (h_count >= 2) {
182 h_count = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iptables/
H A Diptables-xml.c185 int h_count = 0; local
189 h_count++;
190 if (h_count >= 2) {
191 h_count = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/iptables-1.4.x/iptables/
H A Diptables-xml.c176 int h_count = 0; local
180 h_count++;
181 if (h_count >= 2) {
182 h_count = 0;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/lockd/
H A Dlockd.h59 atomic_t h_count; /* reference count */ member in struct:nlm_host
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/lockd/
H A Dlockd.h59 atomic_t h_count; /* reference count */ member in struct:nlm_host

Completed in 224 milliseconds