Home
last modified time | relevance | path

Searched refs:sf (Results 1 – 17 of 17) sorted by relevance

/hardware/qcom/sm7250/display/config/
Ddisplay-product.mk29 persist.sys.sf.color_saturation=1.0 \
30 persist.sys.sf.color_mode=9 \
31 debug.sf.hw=0 \
66 debug.sf.enable_gl_backpressure=1
/hardware/qcom/sm8150/display/config/
Dtrinket.mk41 persist.sys.sf.color_saturation=1.0 \
42 debug.sf.hw=0 \
44 debug.sf.latch_unsignaled=1 \
Dtalos.mk57 persist.sys.sf.color_saturation=1.0 \
58 debug.sf.hw=0 \
60 debug.sf.latch_unsignaled=1 \
Ddisplay-product.mk93 persist.sys.sf.color_saturation=1.0 \
94 persist.sys.sf.color_mode=9 \
95 debug.sf.hw=0 \
/hardware/qcom/sm7250/display/sde-drm/
Ddrm_crtc.cpp741 const DRMSolidfillStage &sf = solid_fills->at(i); in SetSolidfillStages() local
742 float plane_alpha = (sf.plane_alpha / 255.0f); in SetSolidfillStages()
743 drm_dim_layer_v1_.layer_cfg[i].stage = sf.z_order; in SetSolidfillStages()
744 drm_dim_layer_v1_.layer_cfg[i].rect.x1 = (uint16_t)sf.bounding_rect.left; in SetSolidfillStages()
745 drm_dim_layer_v1_.layer_cfg[i].rect.y1 = (uint16_t)sf.bounding_rect.top; in SetSolidfillStages()
746 drm_dim_layer_v1_.layer_cfg[i].rect.x2 = (uint16_t)sf.bounding_rect.right; in SetSolidfillStages()
747 drm_dim_layer_v1_.layer_cfg[i].rect.y2 = (uint16_t)sf.bounding_rect.bottom; in SetSolidfillStages()
749 sf.is_exclusion_rect ? SDE_DRM_DIM_LAYER_EXCLUSIVE : SDE_DRM_DIM_LAYER_INCLUSIVE; in SetSolidfillStages()
753 shift = kSolidFillHwBitDepth - sf.color_bit_depth; in SetSolidfillStages()
754 drm_dim_layer_v1_.layer_cfg[i].color_fill.color_0 = (sf.green & 0x3FF) << shift; in SetSolidfillStages()
[all …]
/hardware/google/pixel/power-libperfmgr/aidl/
Ddevice.mk13 debug.sf.enable_adpf_cpu_hint=true \
/hardware/google/gfxstream/guest/mesa/include/CL/
Dcl_platform.h613 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
688 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
763 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
838 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
913 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
987 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
1062 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
1136 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
1211 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
1287 … z, w, __spacer4, __spacer5, __spacer6, __spacer7, __spacer8, __spacer9, sa, sb, sc, sd, se, sf; }; member
[all …]
/hardware/qcom/sm8150/gps/utils/
Dloc_misc_utils.cpp304 float sf = 1.0f / (1.0f - A6DOF_WGS_E2 * sl* sl); in loc_convert_lla_gnss_to_vrp() local
305 float sfr = sqrtf(sf); in loc_convert_lla_gnss_to_vrp()
307 float rn = A6DOF_WGS_B * sf * sfr + lla[2]; in loc_convert_lla_gnss_to_vrp()
/hardware/qcom/sm7250/gps/utils/
Dloc_misc_utils.cpp304 float sf = 1.0f / (1.0f - A6DOF_WGS_E2 * sl* sl); in loc_convert_lla_gnss_to_vrp() local
305 float sfr = sqrtf(sf); in loc_convert_lla_gnss_to_vrp()
307 float rn = A6DOF_WGS_B * sf * sfr + lla[2]; in loc_convert_lla_gnss_to_vrp()
/hardware/qcom/sm8150/display/sdm/libs/core/drm/
Dhw_device_drm.cpp1249 void HWDeviceDRM::AddSolidfillStage(const HWSolidfillStage &sf, uint32_t plane_alpha) { in AddSolidfillStage() argument
1251 solidfill.bounding_rect.left = UINT32(sf.roi.left); in AddSolidfillStage()
1252 solidfill.bounding_rect.top = UINT32(sf.roi.top); in AddSolidfillStage()
1253 solidfill.bounding_rect.right = UINT32(sf.roi.right); in AddSolidfillStage()
1254 solidfill.bounding_rect.bottom = UINT32(sf.roi.bottom); in AddSolidfillStage()
1255 solidfill.is_exclusion_rect = sf.is_exclusion_rect; in AddSolidfillStage()
1257 solidfill.z_order = sf.z_order; in AddSolidfillStage()
1258 if (!sf.solid_fill_info.bit_depth) { in AddSolidfillStage()
1260 solidfill.alpha = (0xff000000 & sf.color) >> 24; in AddSolidfillStage()
1261 solidfill.red = (0xff0000 & sf.color) >> 16; in AddSolidfillStage()
[all …]
Dhw_device_drm.h153 void AddSolidfillStage(const HWSolidfillStage &sf, uint32_t plane_alpha);
/hardware/qcom/sm7250/display/sdm/libs/core/drm/
Dhw_device_drm.cpp1472 void HWDeviceDRM::AddSolidfillStage(const HWSolidfillStage &sf, uint32_t plane_alpha) { in AddSolidfillStage() argument
1474 solidfill.bounding_rect.left = UINT32(sf.roi.left); in AddSolidfillStage()
1475 solidfill.bounding_rect.top = UINT32(sf.roi.top); in AddSolidfillStage()
1476 solidfill.bounding_rect.right = UINT32(sf.roi.right); in AddSolidfillStage()
1477 solidfill.bounding_rect.bottom = UINT32(sf.roi.bottom); in AddSolidfillStage()
1478 solidfill.is_exclusion_rect = sf.is_exclusion_rect; in AddSolidfillStage()
1480 solidfill.z_order = sf.z_order; in AddSolidfillStage()
1481 if (!sf.solid_fill_info.bit_depth) { in AddSolidfillStage()
1483 solidfill.alpha = (0xff000000 & sf.color) >> 24; in AddSolidfillStage()
1484 solidfill.red = (0xff0000 & sf.color) >> 16; in AddSolidfillStage()
[all …]
Dhw_device_drm.h197 void AddSolidfillStage(const HWSolidfillStage &sf, uint32_t plane_alpha);
/hardware/google/gfxstream/guest/mesa/
D.mailmap160 Claudio Ciccani <klan@directfb.org> <klan@users.sf.net>
/hardware/interfaces/tv/tuner/assets/
Dtuner_frontend_input.ts1200 …���T��w��P��K�����WZ�%ǖvG�q�O�����iqXў!p��J��������.�3�]C�_�faC����sf'�p��(k���W��!S��`…
5302 …%�"����T����تg�l\ &54��� R.��6��<Ak �����XA��ʟ�5��ؤa��U\܊3aIG�w“sf��U �Eɲ7����l��̜p��-…
Dtuner_frontend_input.es1387 …�枳o����T��w��P��K�����WZ�%ǖvq�O�����iqXў!p��J��������.�3�]C�_�faC����sf'�p��(k���W��!S��`…
5010 …���Γ%�"����T����تg�l\ &54��� R.��6��<Ak �����XA��ʟ�5��ؤa��U\܊3aIw“sf��U �Eɲ7����l��̜p��-…
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/katex/
Dkatex.mjs10590 names: ["\\rm", "\\sf", "\\tt", "\\bf", "\\it"],
14075 // \check@mathfonts\fontsize\sf@size\z@\math@fontsfalse\selectfont R}}
14399 // \fontsize\sf@size\z@