HomeSort by relevance Sort by last modified time
    Searched defs:tx_type (Results 1 - 19 of 19) sorted by null

  /bionic/libc/kernel/uapi/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /development/ndk/platforms/android-L/include/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /external/kernel-headers/original/uapi/linux/
net_tstamp.h 32 * @tx_type: one of HWTSTAMP_TX_*
43 int tx_type; member in struct:hwtstamp_config
47 /* possible values for hwtstamp_config->tx_type */
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
net_tstamp.h 40 int tx_type; member in struct:hwtstamp_config
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemb.c 610 TX_TYPE tx_type; local
646 tx_type = get_tx_type(pd->plane_type, xd);
647 scan_order = &vp9_scan_orders[TX_16X16][tx_type];
656 vp9_fht16x16(src_diff, coeff, diff_stride, tx_type);
663 vp9_iht16x16_add(tx_type, dqcoeff, dst, dst_stride, *eob);
666 tx_type = get_tx_type(pd->plane_type, xd);
667 scan_order = &vp9_scan_orders[TX_8X8][tx_type];
676 vp9_fht8x8(src_diff, coeff, diff_stride, tx_type);
683 vp9_iht8x8_add(tx_type, dqcoeff, dst, dst_stride, *eob)
    [all...]
vp9_rdopt.c 717 const TX_TYPE tx_type = get_tx_type_4x4(PLANE_TYPE_Y, xd, block); local
718 const scan_order *so = &vp9_scan_orders[TX_4X4][tx_type];
719 vp9_fht4x4(src_diff, coeff, 8, tx_type);
728 vp9_iht4x4_add(tx_type, BLOCK_OFFSET(pd->dqcoeff, block),
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 487 TX_TYPE tx_type; local
523 tx_type = get_tx_type(pd->plane_type, xd);
524 scan_order = &vp9_scan_orders[TX_16X16][tx_type];
533 vp9_fht16x16(src_diff, coeff, diff_stride, tx_type);
540 vp9_iht16x16_add(tx_type, dqcoeff, dst, dst_stride, *eob);
543 tx_type = get_tx_type(pd->plane_type, xd);
544 scan_order = &vp9_scan_orders[TX_8X8][tx_type];
553 vp9_fht8x8(src_diff, coeff, diff_stride, tx_type);
560 vp9_iht8x8_add(tx_type, dqcoeff, dst, dst_stride, *eob)
    [all...]
vp9_rdopt.c 1123 const TX_TYPE tx_type = get_tx_type_4x4(PLANE_TYPE_Y, xd, block); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemb.c 487 TX_TYPE tx_type; local
523 tx_type = get_tx_type(pd->plane_type, xd);
524 scan_order = &vp9_scan_orders[TX_16X16][tx_type];
533 vp9_fht16x16(src_diff, coeff, diff_stride, tx_type);
540 vp9_iht16x16_add(tx_type, dqcoeff, dst, dst_stride, *eob);
543 tx_type = get_tx_type(pd->plane_type, xd);
544 scan_order = &vp9_scan_orders[TX_8X8][tx_type];
553 vp9_fht8x8(src_diff, coeff, diff_stride, tx_type);
560 vp9_iht8x8_add(tx_type, dqcoeff, dst, dst_stride, *eob)
    [all...]
vp9_rdopt.c 1123 const TX_TYPE tx_type = get_tx_type_4x4(PLANE_TYPE_Y, xd, block); local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_decodeframe.c 197 TX_TYPE tx_type = DCT_DCT; local
200 tx_type = DCT_DCT;
206 tx_type = get_tx_type_4x4(plane_type, xd, block);
207 vp9_iht4x4_add(tx_type, dqcoeff, dst, stride, eob);
210 tx_type = get_tx_type(plane_type, xd);
211 vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob);
214 tx_type = get_tx_type(plane_type, xd);
215 vp9_iht16x16_add(tx_type, dqcoeff, dst, stride, eob);
218 tx_type = DCT_DCT
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 195 TX_TYPE tx_type; local
200 tx_type = get_tx_type_4x4(plane_type, xd, block);
201 if (tx_type == DCT_DCT)
204 vp9_iht4x4_16_add(dqcoeff, dst, stride, tx_type);
207 tx_type = get_tx_type(plane_type, xd);
208 vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob);
211 tx_type = get_tx_type(plane_type, xd);
212 vp9_iht16x16_add(tx_type, dqcoeff, dst, stride, eob);
215 tx_type = DCT_DCT
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodeframe.c 197 TX_TYPE tx_type = DCT_DCT; local
202 tx_type = get_tx_type_4x4(plane_type, xd, block);
203 if (tx_type == DCT_DCT)
206 vp9_iht4x4_16_add(dqcoeff, dst, stride, tx_type);
209 tx_type = get_tx_type(plane_type, xd);
210 vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob);
213 tx_type = get_tx_type(plane_type, xd);
214 vp9_iht16x16_add(tx_type, dqcoeff, dst, stride, eob);
217 tx_type = DCT_DCT
    [all...]
  /external/valgrind/main/include/vki/
vki-linux.h 3029 int tx_type; member in struct:vki_hwtstamp_config
    [all...]

Completed in 1455 milliseconds