Searched defs:tx_type (Results 1 - 24 of 24) sorted by relevance

/external/libvpx/libvpx/vp9/common/mips/msa/
H A Dvp9_idct16x16_msa.c17 int32_t dst_stride, int32_t tx_type) {
22 switch (tx_type) {
16 vp9_iht16x16_256_add_msa(const int16_t *input, uint8_t *dst, int32_t dst_stride, int32_t tx_type) argument
H A Dvp9_idct4x4_msa.c17 int32_t dst_stride, int32_t tx_type) {
24 switch (tx_type) {
16 vp9_iht4x4_16_add_msa(const int16_t *input, uint8_t *dst, int32_t dst_stride, int32_t tx_type) argument
H A Dvp9_idct8x8_msa.c17 int32_t dst_stride, int32_t tx_type) {
26 switch (tx_type) {
16 vp9_iht8x8_64_add_msa(const int16_t *input, uint8_t *dst, int32_t dst_stride, int32_t tx_type) argument
/external/libvpx/libvpx/vp9/common/mips/dspr2/
H A Dvp9_itrans16_dspr2.c25 int tx_type) {
35 switch (tx_type) {
95 default: printf("vp9_short_iht16x16_add_dspr2 : Invalid tx_type\n"); break;
24 vp9_iht16x16_256_add_dspr2(const int16_t *input, uint8_t *dest, int pitch, int tx_type) argument
H A Dvp9_itrans4_dspr2.c25 int tx_type) {
37 switch (tx_type) {
87 default: printf("vp9_short_iht4x4_add_dspr2 : Invalid tx_type\n"); break;
24 vp9_iht4x4_16_add_dspr2(const int16_t *input, uint8_t *dest, int stride, int tx_type) argument
H A Dvp9_itrans8_dspr2.c24 int tx_type) {
34 switch (tx_type) {
81 default: printf("vp9_short_iht8x8_add_dspr2 : Invalid tx_type\n"); break;
23 vp9_iht8x8_64_add_dspr2(const int16_t *input, uint8_t *dest, int stride, int tx_type) argument
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_idct_intrin_sse2.c17 int tx_type) {
24 switch (tx_type) {
55 int tx_type) {
70 switch (tx_type) {
120 int stride, int tx_type) {
127 switch (tx_type) {
16 vp9_iht4x4_16_add_sse2(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
54 vp9_iht8x8_64_add_sse2(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
119 vp9_iht16x16_256_add_sse2(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct4x4_msa.c49 int32_t tx_type) {
68 switch (tx_type) {
48 vp9_fht4x4_msa(const int16_t *input, int16_t *output, int32_t stride, int32_t tx_type) argument
H A Dvp9_fdct8x8_msa.c17 int32_t tx_type) {
24 switch (tx_type) {
16 vp9_fht8x8_msa(const int16_t *input, int16_t *output, int32_t stride, int32_t tx_type) argument
H A Dvp9_fdct16x16_msa.c407 int32_t tx_type) {
441 switch (tx_type) {
406 vp9_fht16x16_msa(const int16_t *input, int16_t *output, int32_t stride, int32_t tx_type) argument
/external/libvpx/libvpx/test/
H A Dvp9_quantize_test.cc101 const TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3); local
102 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type];
159 const TX_TYPE tx_type = (TX_TYPE)(i % 4); local
160 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type];
217 TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3); local
218 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type];
280 TX_TYPE tx_type = (TX_TYPE)(i % 4); local
281 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type];
H A Dfdct4x4_test.cc35 int tx_type);
37 int tx_type);
43 int /*tx_type*/) {
47 void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { argument
48 vp9_fht4x4_c(in, out, stride, tx_type);
52 int /*tx_type*/) {
65 void iht4x4_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { argument
66 vp9_highbd_iht4x4_16_add_c(in, CAST_TO_SHORTPTR(out), stride, tx_type, 10);
69 void iht4x4_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { argument
70 vp9_highbd_iht4x4_16_add_c(in, CAST_TO_SHORTPTR(out), stride, tx_type, 1
[all...]
H A Dfdct8x8_test.cc42 int tx_type);
44 int tx_type);
81 int /*tx_type*/) {
85 void fht8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { argument
86 vp9_fht8x8_c(in, out, stride, tx_type);
98 void iht8x8_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { argument
99 vp9_highbd_iht8x8_64_add_c(in, CAST_TO_SHORTPTR(out), stride, tx_type, 10);
102 void iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { argument
103 vp9_highbd_iht8x8_64_add_c(in, CAST_TO_SHORTPTR(out), stride, tx_type, 12);
H A Ddct16x16_test.cc228 int tx_type);
230 int tx_type);
238 int /*tx_type*/) {
243 int /*tx_type*/) {
247 void fht16x16_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { argument
248 vp9_fht16x16_c(in, out, stride, tx_type);
252 int tx_type) {
253 vp9_iht16x16_256_add_c(in, dest, stride, tx_type);
266 int /*tx_type*/) {
271 int /*tx_type*/) {
251 iht16x16_ref(const tran_low_t *in, uint8_t *dest, int stride, int tx_type) argument
275 iht16x16_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
279 iht16x16_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) argument
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_idct.c21 int tx_type) {
36 IHT_4[tx_type].rows(input, outptr);
44 IHT_4[tx_type].cols(temp_in, temp_out);
60 int tx_type) {
65 const transform_2d ht = IHT_8[tx_type];
93 int tx_type) {
98 const transform_2d ht = IHT_16[tx_type];
180 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, argument
182 if (tx_type == DCT_DCT)
185 vp9_iht4x4_16_add(input, dest, stride, tx_type);
20 vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
59 vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
92 vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
188 vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, int stride, int eob) argument
197 vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, int stride, int eob) argument
208 vp9_highbd_iht4x4_16_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, int bd) argument
247 vp9_highbd_iht8x8_64_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, int bd) argument
280 vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, int stride, int tx_type, int bd) argument
371 vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint16_t *dest, int stride, int eob, int bd) argument
379 vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint16_t *dest, int stride, int eob, int bd) argument
388 vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint16_t *dest, int stride, int eob, int bd) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dnet_tstamp.h49 * @tx_type: one of HWTSTAMP_TX_*
60 int tx_type; member in struct:hwtstamp_config
64 /* possible values for hwtstamp_config->tx_type */
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_iht4x4_add_neon.c138 int tx_type) {
152 switch (tx_type) {
154 vp9_iht4x4_16_add_c(input, dest, stride, tx_type);
137 vp9_iht4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
H A Dvp9_iht8x8_add_neon.c410 int tx_type) {
430 switch (tx_type) {
432 vp9_iht8x8_64_add_c(input, dest, stride, tx_type);
409 vp9_iht8x8_64_add_neon(const tran_low_t *input, uint8_t *dest, int stride, int tx_type) argument
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_dct.c531 int tx_type) {
532 if (tx_type == DCT_DCT) {
538 const transform_2d ht = FHT_4[tx_type];
661 int tx_type) {
662 if (tx_type == DCT_DCT) {
668 const transform_2d ht = FHT_8[tx_type];
744 int tx_type) {
745 if (tx_type == DCT_DCT) {
751 const transform_2d ht = FHT_16[tx_type];
772 int tx_type) {
530 vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
660 vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
743 vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
771 vp9_highbd_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
776 vp9_highbd_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
786 vp9_highbd_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
[all...]
H A Dvp9_encodemb.c762 TX_TYPE tx_type = DCT_DCT; local
784 tx_type = get_tx_type_4x4(get_plane_type(plane), xd, block);
785 scan_order = &vp9_scan_orders[TX_4X4][tx_type];
792 tx_type = get_tx_type(get_plane_type(plane), xd);
793 scan_order = &vp9_scan_orders[tx_size][tx_type];
827 if (tx_type == DCT_DCT)
830 vp9_highbd_fht16x16(src_diff, coeff, diff_stride, tx_type);
840 vp9_highbd_iht16x16_add(tx_type, dqcoeff, dst16, dst_stride, *eob,
848 if (tx_type == DCT_DCT)
851 vp9_highbd_fht8x8(src_diff, coeff, diff_stride, tx_type);
[all...]
H A Dvp9_rdopt.c1033 const TX_TYPE tx_type = get_tx_type_4x4(PLANE_TYPE_Y, xd, block); local
1034 const scan_order *so = &vp9_scan_orders[TX_4X4][tx_type];
1037 if (tx_type == DCT_DCT)
1040 vp9_highbd_fht4x4(src_diff, coeff, 8, tx_type);
1051 vp9_highbd_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block),
1133 const TX_TYPE tx_type = get_tx_type_4x4(PLANE_TYPE_Y, xd, block); local
1134 const scan_order *so = &vp9_scan_orders[TX_4X4][tx_type];
1137 vp9_fht4x4(src_diff, coeff, 8, tx_type);
1147 vp9_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block), dst,
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c252 const TX_TYPE tx_type,
266 vp9_highbd_iht4x4_add(tx_type, dqcoeff, dst16, stride, eob, xd->bd);
269 vp9_highbd_iht8x8_add(tx_type, dqcoeff, dst16, stride, eob, xd->bd);
272 vp9_highbd_iht16x16_add(tx_type, dqcoeff, dst16, stride, eob, xd->bd);
285 case TX_4X4: vp9_iht4x4_add(tx_type, dqcoeff, dst, stride, eob); break;
286 case TX_8X8: vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob); break;
288 vp9_iht16x16_add(tx_type, dqcoeff, dst, stride, eob);
300 case TX_4X4: vp9_iht4x4_add(tx_type, dqcoeff, dst, stride, eob); break;
301 case TX_8X8: vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob); break;
303 vp9_iht16x16_add(tx_type, dqcoef
251 inverse_transform_block_intra(MACROBLOCKD *xd, int plane, const TX_TYPE tx_type, const TX_SIZE tx_size, uint8_t *dst, int stride, int eob) argument
340 const TX_TYPE tx_type = local
[all...]
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_dct_intrin_sse2.c155 int tx_type) {
158 switch (tx_type) {
1132 int tx_type) {
1135 switch (tx_type) {
2015 int tx_type) {
2018 switch (tx_type) {
154 vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
1131 vp9_fht8x8_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
2014 vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type) argument
/external/valgrind/include/vki/
H A Dvki-linux.h3194 int tx_type; member in struct:vki_hwtstamp_config

Completed in 627 milliseconds