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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/pvrusb2/
H A Dpvrusb2-std.c189 unsigned int idx1,idx2; local
198 for (idx2 = 0; idx2 < ARRAY_SIZE(std_items); idx2++) {
199 ip = std_items + idx2;
325 unsigned int idx,bcnt,idx2; local
350 for (idx2 = 0; idx2 < ARRAY_SIZE(std_mixes); idx2++) {
351 if ((id & std_mixes[idx2])
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dhevcdsp.h35 #define PEL_LINK(dst, idx1, idx2, idx3, name, D, opt) \
36 dst[idx1][idx2][idx3] = ff_hevc_put_hevc_ ## name ## _ ## D ## _##opt; \
37 dst ## _bi[idx1][idx2][idx3] = ff_hevc_put_hevc_bi_ ## name ## _ ## D ## _##opt; \
38 dst ## _uni[idx1][idx2][idx3] = ff_hevc_put_hevc_uni_ ## name ## _ ## D ## _##opt; \
39 dst ## _uni_w[idx1][idx2][idx3] = ff_hevc_put_hevc_uni_w_ ## name ## _ ## D ## _##opt; \
40 dst ## _bi_w[idx1][idx2][idx3] = ff_hevc_put_hevc_bi_w_ ## name ## _ ## D ## _##opt
H A Dvp9dsp_init.c262 #define init_fpel(idx1, idx2, sz, type, opt) \
263 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = \
264 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = \
265 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = \
266 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = ff_vp9_##type##sz##_##opt
268 #define init_subpel1(idx1, idx2, idxh, idxv, sz, dir, type, opt) \
269 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = type##_8tap_smooth_##sz##dir##_##opt; \
270 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = type##_8tap_regular_##sz##dir##_##opt; \
271 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][idxh][idxv] = type##_8tap_sharp_##sz##dir##_##opt
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/
H A Dinit.c152 int err, idx2; local
168 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++)
170 if (~snd_cards_lock & idx & 1<<idx2) {
171 if (module_slot_match(module, idx2)) {
172 idx = idx2;
178 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/lua/source/src/
H A Dluaconf.h297 #define lua_equal(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPEQ)
298 #define lua_lessthan(L,idx1,idx2) lua_compare(L,(idx1),(idx2),LUA_OPLT)
H A Dlua.h198 LUA_API int (lua_rawequal) (lua_State *L, int idx1, int idx2);
199 LUA_API int (lua_compare) (lua_State *L, int idx1, int idx2, int op);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Divi_common.c932 int result, i, t, idx1, idx2, pos; local
966 idx2 = band->corr[i * 2 + 1];
967 FFSWAP(uint8_t, band->rv_map->runtab[idx1], band->rv_map->runtab[idx2]);
968 FFSWAP(int16_t, band->rv_map->valtab[idx1], band->rv_map->valtab[idx2]);
969 if (idx1 == band->rv_map->eob_sym || idx2 == band->rv_map->eob_sym)
970 band->rv_map->eob_sym ^= idx1 ^ idx2;
971 if (idx1 == band->rv_map->esc_sym || idx2 == band->rv_map->esc_sym)
972 band->rv_map->esc_sym ^= idx1 ^ idx2;
1026 idx2 = band->corr[i*2+1];
1027 FFSWAP(uint8_t, band->rv_map->runtab[idx1], band->rv_map->runtab[idx2]);
[all...]
H A Dhevcdsp.c132 #define PEL_FUNC(dst1, idx1, idx2, a, depth) \
135 hevcdsp->dst1[i][idx1][idx2] = a ## _ ## depth; \
H A Dvp9dsp.c2011 #define init_fpel(idx1, idx2, sz, type) \
2012 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = type##sz##_c; \
2013 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = type##sz##_c; \
2014 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][0][0] = type##sz##_c; \
2015 dsp->mc[idx1][FILTER_BILINEAR ][idx2][0][0] = type##sz##_c
2030 #define init_subpel1(idx1, idx2, idxh, idxv, sz, dir, type) \
2031 dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = type##_8tap_smooth_##sz##dir##_c; \
2032 dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = type##_8tap_regular_##sz##dir##_c; \
2033 dsp->mc[idx1][FILTER_8TAP_SHARP ][idx2][idxh][idxv] = type##_8tap_sharp_##sz##dir##_c; \
2034 dsp->mc[idx1][FILTER_BILINEAR ][idx2][idx
[all...]
H A Dg723_1.c1062 int idx2 = cng_rand(&p->cng_random_seed, t); local
1064 pos[idx] = tmp[idx2] * 2 + off[i];
1065 tmp[idx2] = tmp[--t];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Divi_common.c683 int result, i, t, idx1, idx2, pos; local
707 idx2 = band->corr[i * 2 + 1];
708 FFSWAP(uint8_t, band->rv_map->runtab[idx1], band->rv_map->runtab[idx2]);
709 FFSWAP(int16_t, band->rv_map->valtab[idx1], band->rv_map->valtab[idx2]);
761 idx2 = band->corr[i*2+1];
762 FFSWAP(uint8_t, band->rv_map->runtab[idx1], band->rv_map->runtab[idx2]);
763 FFSWAP(int16_t, band->rv_map->valtab[idx1], band->rv_map->valtab[idx2]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dfnmatch_loop.c386 int32_t idx2; local
389 idx2 = findidx (&np);
390 if (idx2 != 0 && len == weights[idx2])
396 == weights[idx2 + 1 + cnt]))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/video/sis/
H A Dinit.c2213 unsigned short *idx2)
2221 (*idx2) = (unsigned short)(ThTiming[((temp2 >> 3) | temp1) & 0x07]);
2228 SiS_GetFIFOThresholdA300(unsigned short idx1, unsigned short idx2) argument
2236 return (unsigned short)((ThLowA[idx1 + 1] * idx2) + ThLowA[idx1]);
2240 SiS_GetFIFOThresholdB300(unsigned short idx1, unsigned short idx2) argument
2248 return (unsigned short)((ThLowB[idx1 + 1] * idx2) + ThLowB[idx1]);
2255 unsigned short idx1, idx2; local
2258 SiS_GetFIFOThresholdIndex300(SiS_Pr, &idx1, &idx2);
2261 longtemp *= SiS_GetFIFOThresholdA300(idx1, idx2);
2263 longtemp *= SiS_GetFIFOThresholdB300(idx1, idx2);
2212 SiS_GetFIFOThresholdIndex300(struct SiS_Private *SiS_Pr, unsigned short *idx1, unsigned short *idx2) argument
[all...]
H A Dinit.h1496 unsigned short *idx2);
1497 unsigned short SiS_GetFIFOThresholdB300(unsigned short idx1, unsigned short idx2);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/dvb-core/
H A Ddvb_ca_en50221.c1429 size_t idx, idx2; local
1491 idx2 = dvb_ringbuffer_pkt_next(&ca->slot_info[slot].rx_buffer, idx, &fraglen);
1494 idx = idx2;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgrep/
H A Dregex.c3423 int32_t idx2 = table[ch];
3424 size_t len = weights[idx2];
3435 == weights[idx2 + 1 + cnt]))
6431 int32_t idx, idx2;
6449 idx2 = 0;
6451 for (i = 0 ; idx2 == 0 && i < WORK_BUFFER_SIZE - 1; i++)
6463 idx2 = findidx ((const wint_t**)&cp);
6480 len = weights[idx2];
6488 if (idx2 != 0 && len == weights[idx])
6492 == weights[idx2
3410 int32_t idx2 = table[ch]; local
6414 int32_t idx, idx2; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/libiptc/
H A Dlibiptc.c611 unsigned int idx, idx2; local
629 iptcc_bsearch_chain_index(c2->name, &idx2, h);
630 if (idx != idx2) {
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/libiptc/
H A Dlibiptc.c611 unsigned int idx, idx2; local
629 iptcc_bsearch_chain_index(c2->name, &idx2, h);
630 if (idx != idx2) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/lib/
H A Dquaqua.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/randelshofer/ ch/randelshofer/quaqua/ ch/randelshofer/quaqua/border/ ...

Completed in 188 milliseconds