HomeSort by relevance Sort by last modified time
    Searched refs:decimation (Results 1 - 13 of 13) sorted by null

  /hardware/qcom/display/msm8909/sdm/libs/core/
resource_default.h 137 DisplayError CalculateDecimation(float downscale, uint8_t *decimation);
resource_default.cpp 770 // MDP H/W cannot apply decimation on UBWC tiled framebuffer
907 DisplayError ResourceDefault::CalculateDecimation(float downscale, uint8_t *decimation) {
911 *decimation = 0;
914 DLOGE("Downscaling exceeds the maximum MDP downscale limit but decimation not enabled");
918 // Decimation is the remaining downscale factor after doing max SDE downscale.
919 // In SDE, decimation is supported in powers of 2.
921 // So decimation = powf(2.0, ceilf(log2f(8 / 4))) = powf(2.0, 1.0) = 2
922 *decimation = UINT8(ceilf(log2f(downscale / max_down_scale)));
display_base.cpp 629 char decimation[16] = { 0 }; local
646 snprintf(decimation, sizeof(decimation), "%3d x %3d", pipe.horizontal_decimation,
658 z_order, flags, decimation, color_primary, range);
    [all...]
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/
resource_default.h 137 DisplayError CalculateDecimation(float downscale, uint8_t *decimation);
display_base.cpp 615 char decimation[16] = { 0 }; local
632 snprintf(decimation, sizeof(decimation), "%3d x %3d", pipe.horizontal_decimation,
643 z_order, flags, decimation, color_primary, range);
    [all...]
resource_default.cpp 770 // MDP H/W cannot apply decimation on UBWC tiled framebuffer
907 DisplayError ResourceDefault::CalculateDecimation(float downscale, uint8_t *decimation) {
911 *decimation = 0;
914 DLOGE("Downscaling exceeds the maximum MDP downscale limit but decimation not enabled");
918 // Decimation is the remaining downscale factor after doing max SDE downscale.
919 // In SDE, decimation is supported in powers of 2.
921 // So decimation = powf(2.0, ceilf(log2f(8 / 4))) = powf(2.0, 1.0) = 2
922 *decimation = UINT8(ceilf(log2f(downscale / max_down_scale)));
  /hardware/qcom/display/msm8996/sdm/libs/core/
resource_default.h 130 DisplayError CalculateDecimation(float downscale, uint8_t *decimation);
display_base.cpp 625 char decimation[16] = { 0 }; local
641 snprintf(decimation, sizeof(decimation), "%3d x %3d", pipe.horizontal_decimation,
650 z_order, flags, decimation, csc);
    [all...]
resource_default.cpp 732 // MDP H/W cannot apply decimation on UBWC tiled framebuffer
870 DisplayError ResourceDefault::CalculateDecimation(float downscale, uint8_t *decimation) {
874 *decimation = 0;
877 DLOGE("Downscaling exceeds the maximum MDP downscale limit but decimation not enabled");
881 // Decimation is the remaining downscale factor after doing max SDE downscale.
882 // In SDE, decimation is supported in powers of 2.
884 // So decimation = powf(2.0, ceilf(log2f(8 / 4))) = powf(2.0, 1.0) = 2
885 *decimation = UINT8(ceilf(log2f(downscale / max_down_scale)));
  /hardware/qcom/display/msm8998/sdm/libs/core/
resource_default.h 136 DisplayError CalculateDecimation(float downscale, uint8_t *decimation);
resource_default.cpp 770 // MDP H/W cannot apply decimation on UBWC tiled framebuffer
907 DisplayError ResourceDefault::CalculateDecimation(float downscale, uint8_t *decimation) {
911 *decimation = 0;
914 DLOGE("Downscaling exceeds the maximum MDP downscale limit but decimation not enabled");
918 // Decimation is the remaining downscale factor after doing max SDE downscale.
919 // In SDE, decimation is supported in powers of 2.
921 // So decimation = powf(2.0, ceilf(log2f(8 / 4))) = powf(2.0, 1.0) = 2
922 *decimation = UINT8(ceilf(log2f(downscale / max_down_scale)));
display_base.cpp 631 char decimation[16] = { 0 }; local
648 snprintf(decimation, sizeof(decimation), "%3d x %3d", pipe.horizontal_decimation,
659 z_order, flags, decimation, color_primary, range);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 786 int decimation = 1; local
789 // roughly determine if decimation is necessary
791 decimation = (int)(meta.fps / DECIMATION_FPS_TARGET);
792 meta.fps /=decimation;
796 new File(mPath, "video.mp4"), decimation);
    [all...]

Completed in 1014 milliseconds