/foundation/arkui/ui_lite/frameworks/draw/ |
H A D | color_fill.h | 57 #define COLOR_BLEND_RGBA(r1, g1, b1, a1, r2, g2, b2, a2) \ 62 (g1) = static_cast<uint8_t>(((a2) * (g2) * OPA_OPAQUE + (OPA_OPAQUE - (a2)) * (a1) * (g1)) / Alpha3); \ 67 #define COLOR_BLEND_RGBA(r1, g1, b1, a1, r2, g2, b2, a2) \ 72 (g1) = static_cast<uint8_t>((Alpha2 * (g2) + (1 - Alpha2) * Alpha1 * (g1)) / Alpha3); \ 77 #define COLOR_BLEND_XRGB(r1, g1, b1, a1, r2, g2, b2, a2) \ 79 (g1) = (((g2) * (a2)) / OPA_OPAQUE) + (((g1) * (OPA_OPAQUE - (a2))) / OPA_OPAQUE); \ 83 #define COLOR_BLEND_RGB(r1, g1, b [all...] |
/foundation/graphic/graphic_utils_lite/interfaces/innerkits/ |
H A D | graphic_neon_pipeline.h | 29 using NeonBlend = void (*)(uint8x8_t& r1, uint8x8_t& g1, uint8x8_t& b1, uint8x8_t& a1, 116 uint8x8_t g1 = Multipling(vdup_n_u8(g), vld1_u8(covers)); in NeonPreLerpARGB8888() local 121 uint8x8_t gs = NeonLerp(g0, g1, a1); in NeonPreLerpARGB8888() 136 uint8x8_t g1 = vdup_n_u8(green); in NeonPrelerpARGB8888() local 141 uint8x8_t gs = NeonPreLerp(g0, g1, a1); in NeonPrelerpARGB8888() 157 uint8x8_t g1 = Multipling(vdup_n_u8(green), vdup_n_u8(cover)); in NeonPrelerpARGB8888() local 162 uint8x8_t gs = NeonPreLerp(g0, g1, a1); in NeonPrelerpARGB8888() 178 uint8x8_t g1 = vSrcBuf.val[NEON_G]; in NeonPrelerpARGB8888() local 183 g1 = Multipling(g1, vdup_n_u in NeonPrelerpARGB8888() 206 uint8x8_t g1 = Multipling(vSrcBuf.val[NEON_G], vld1_u8(covers)); NeonPrelerpARGB8888() local 227 uint8x8_t g1 = Multipling(vdup_n_u8(g), vld1_u8(covers)); NeonLerpARGB8888() local 247 uint8x8_t g1 = vdup_n_u8(g); NeonLerpARGB8888() local 268 uint8x8_t g1 = Multipling(vdup_n_u8(g), vdup_n_u8(cover)); NeonLerpARGB8888() local 289 uint8x8_t g1 = vSrcBuf.val[NEON_G]; NeonLerpARGB8888() local 317 uint8x8_t g1 = Multipling(vSrcBuf.val[NEON_G], vld1_u8(covers)); NeonLerpARGB8888() local [all...] |
H A D | graphic_neon_utils.h | 120 static inline void NeonBlendRGBA(uint8x8_t& r1, uint8x8_t& g1, uint8x8_t& b1, uint8x8_t& a1, in NeonBlendRGBA() argument 126 uint16x8_t g = vmull_u8(g2, a2) + vmull_u8(g1, da); in NeonBlendRGBA() 129 g1 = NeonDivInt(g, a1); in NeonBlendRGBA() 133 static inline void NeonBlendXRGB(uint8x8_t& r1, uint8x8_t& g1, uint8x8_t& b1, uint8x8_t& a1, in NeonBlendXRGB() argument 139 uint16x8_t g = vmull_u8(g2, a2) + vmull_u8(g1, da); in NeonBlendXRGB() 142 g1 = NeonDivInt(g, a1); in NeonBlendXRGB() 146 static inline void NeonBlendRGB(uint8x8_t& r1, uint8x8_t& g1, uint8x8_t& b1, uint8x8_t& a1, in NeonBlendRGB() argument 151 g1 = NeonMulDiv255(g2, a2) + NeonMulDiv255(g1, da); in NeonBlendRGB()
|
/foundation/arkui/ace_engine/advanced_ui_component/foldsplitcontainer/interfaces/ |
H A D | foldsplitcontainer.js | 447 let g1; 449 g1 = this.getFoldedRegionLayouts(); 452 g1 = this.getExpandedRegionLayouts(); 457 g1 = this.getExpandedRegionLayouts(); 459 g1 = this.getHoverModeRegionLayouts(); 463 g1 = this.getFoldedRegionLayouts(); 465 g1 = this.getExpandedRegionLayouts(); 469 this.primaryLayout = g1.primary; 470 this.secondaryLayout = g1.secondary; 471 this.extraLayout = g1 [all...] |
/foundation/window/window_manager_lite/services/wms/ |
H A D | lite_win.cpp | 31 #define COLOR_BLEND_RGBA(r1, g1, b1, a1, r2, g2, b2, a2) \ 36 (g1) = (A2 * (g2) + (1 - A2) * A1 * (g1)) / a; \ 40 #define COLOR_BLEND_RGB(r1, g1, b1, r2, g2, b2, a2) \ 42 (g1) = (((g2) * (a2)) / OPA_OPAQUE) + (((g1) * (OPA_OPAQUE - (a2))) / OPA_OPAQUE); \
|
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/drawing_ndk/cpp/ |
H A D | test_common.cpp | 102 unsigned g1 = ((unsigned)rgb565 >> 5) & 0x3F;
in color_to_565() local 106 unsigned g2 = (g1 << 2) | (g1 >> 4);
in color_to_565()
|
/foundation/arkui/ace_engine/advanced_ui_component/innerfullscreenlaunchcomponent/interfaces/ |
H A D | innerfullscreenlaunchcomponent.js | 30 constructor(d1, e1, f1, g1 = -1, h1 = undefined, i1) { 31 super(d1, f1, g1, i1);
|
/foundation/arkui/advanced_ui_component/innerfullscreenlaunchcomponent/interfaces/ |
H A D | innerfullscreenlaunchcomponent.js | 30 constructor(d1, e1, f1, g1 = -1, h1 = undefined, i1) { 31 super(d1, f1, g1, i1);
|
/foundation/arkui/ace_engine/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 166 (l ? l : this).observeComponentCreation2((g1, h1, i1 = m) => {
|
/foundation/arkui/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 166 (l ? l : this).observeComponentCreation2((g1, h1, i1 = m) => {
|
/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/ |
H A D | chip.js | 99 g1: { 1096 labelMargin.left = this.theme.label.g1.left; 1113 labelMargin.right = this.theme.label.g1.right; 1573 this.mdListener.on('change', (g1) => { 1574 if (g1.matches) {
|
/foundation/arkui/ace_engine/advanced_ui_component/editabletitlebar/interfaces/ |
H A D | editabletitlebar.js | 1246 set windowStandardHeight(g1) { 1247 this.__windowStandardHeight.set(g1);
|
/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.js | 1210 constructor(f1, g1) { 1212 this.response = g1;
|
/foundation/arkui/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.js | 1210 constructor(f1, g1) { 1212 this.response = g1;
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_extension/ |
H A D | cloud_extension_stub.js | 127 let g1 = t.readString(); 129 let i1 = await this.cloudService.connectDB(g1, h1);
|
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/ |
H A D | subheader.js | 2086 static getStringByResource(g1, h1) { 2088 let l1 = getContext().resourceManager.getStringSync(g1);
|
/foundation/arkui/ace_engine/advanced_ui_component/segmentbutton/interfaces/ |
H A D | segmentbutton.js | 439 class g1 extends ViewPU { 2513 let componentCall = new g1(this, {
|
/foundation/arkui/ace_engine/advanced_ui_component/toolbar/interfaces/ |
H A D | toolbar.js | 1092 this.observeComponentCreation2((g1, h1) => {
|
/foundation/arkui/ace_engine/advanced_ui_component/composetitlebar/interfaces/ |
H A D | composetitlebar.js | 1220 updateStateVars(g1) {
|
/foundation/arkui/ace_engine/advanced_ui_component/composelistitem/interfaces/ |
H A D | composelistitem.js | 1740 this.observeComponentCreation2((g1, h1) => {
|
/foundation/arkui/ace_engine/advanced_ui_component/tabtitlebar/interfaces/ |
H A D | tabtitlebar.js | 1273 this.observeComponentCreation2((f1, g1) => {
|
/foundation/arkui/ace_engine/advanced_ui_component/treeview/interfaces/ |
H A D | treeview.js | 46 const g1 = 48; 309 this.z4 = g1;
|
/foundation/arkui/ace_engine/advanced_ui_component/gridobjectsortcomponent/interfaces/ |
H A D | gridobjectsortcomponent.js | 2014 this.observeComponentCreation2((f1, g1) => {
|