/ohos5.0/drivers/peripheral/usb/cfg/ |
H A D | init.usb.configfs.cfg | 12 "write /config/usb_gadget/g1/UDC none", 18 "rm /config/usb_gadget/g1/configs/b.1/f1", 41 "write /config/usb_gadget/g1/UDC none", 54 … "symlink /config/usb_gadget/g1/functions/ffs.hdc /config/usb_gadget/g1/configs/b.1/f1", 82 … "symlink /config/usb_gadget/g1/functions/ffs.hdc /config/usb_gadget/g1/configs/b.1/f1", 92 … "symlink /config/usb_gadget/g1/functions/rndis.rn0 /config/usb_gadget/g1/configs/b.1/rndis.rn0", 101 … "symlink /config/usb_gadget/g1/functions/rndis.rn0 /config/usb_gadget/g1/configs/b.1/rndis.rn0", 109 … "symlink /config/usb_gadget/g1/functions/ffs.hdc /config/usb_gadget/g1/configs/b.1/f1", 123 …"symlink /config/usb_gadget/g1/functions/mass_storage.usb /config/usb_gadget/g1/configs/b.1/mass_s… 133 …"symlink /config/usb_gadget/g1/functions/mass_storage.usb /config/usb_gadget/g1/configs/b.1/mass_s… [all …]
|
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/innerkits/ |
H A D | graphic_neon_pipeline.h | 121 uint8x8_t gs = NeonLerp(g0, g1, a1); in NeonPreLerpARGB8888() 136 uint8x8_t g1 = vdup_n_u8(green); in NeonPrelerpARGB8888() local 178 uint8x8_t g1 = vSrcBuf.val[NEON_G]; in NeonPrelerpARGB8888() local 183 g1 = Multipling(g1, vdup_n_u8(cover)); in NeonPrelerpARGB8888() 232 uint8x8_t gs = NeonLerp(g0, g1, a1); in NeonLerpARGB8888() 247 uint8x8_t g1 = vdup_n_u8(g); in NeonLerpARGB8888() local 252 uint8x8_t gs = NeonLerp(g0, g1, a1); in NeonLerpARGB8888() 273 uint8x8_t gs = NeonLerp(g0, g1, a1); in NeonLerpARGB8888() 289 uint8x8_t g1 = vSrcBuf.val[NEON_G]; in NeonLerpARGB8888() local 294 g1 = Multipling(g1, vdup_n_u8(cover)); in NeonLerpARGB8888() [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()
|
/ohos5.0/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) … argument 62 …(g1) = static_cast<uint8_t>(((a2) * (g2) * OPA_OPAQUE + (OPA_OPAQUE - (a2)) * (a1) * (g1)) / Alpha… 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) \ argument 79 (g1) = (((g2) * (a2)) / OPA_OPAQUE) + (((g1) * (OPA_OPAQUE - (a2))) / OPA_OPAQUE); \ 83 #define COLOR_BLEND_RGB(r1, g1, b1, r2, g2, b2, a2) \ argument 85 (g1) = (((g2) * (a2)) / OPA_OPAQUE) + (((g1) * (OPA_OPAQUE - (a2))) / OPA_OPAQUE); \
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/foldsplitcontainer/interfaces/ |
H A D | foldsplitcontainer.js | 481 let g1; variable 483 g1 = this.getFoldedRegionLayouts(); 497 g1 = this.getFoldedRegionLayouts(); 503 this.primaryLayout = g1.primary; 504 this.secondaryLayout = g1.secondary; 505 this.extraLayout = g1.extra; 508 this.primaryLayout = g1.primary; 509 this.secondaryLayout = g1.secondary; 510 this.extraLayout = g1.extra; 514 this.primaryLayout = g1.primary; [all …]
|
/ohos5.0/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) \ argument 36 (g1) = (A2 * (g2) + (1 - A2) * A1 * (g1)) / a; \ 40 #define COLOR_BLEND_RGB(r1, g1, b1, r2, g2, b2, a2) \ argument 42 (g1) = (((g2) * (a2)) / OPA_OPAQUE) + (((g1) * (OPA_OPAQUE - (a2))) / OPA_OPAQUE); \
|
/ohos5.0/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()
|
/ohos5.0/drivers/peripheral/display/test/unittest/lite/ |
H A D | loadbmp_test.c | 44 uint8_t g1; in OsdMakeColorU16() local 49 r1 = g1 = b1 = 0; in OsdMakeColorU16() 51 g1 = g >> (EIGHT_BITS_PER_PIXEL - compinfo.gLen); in OsdMakeColorU16() 59 pixel |= (r1 | (g1 << compinfo.bLen) | (b1 << (compinfo.bLen + compinfo.gLen))); in OsdMakeColorU16()
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/innerfullscreenlaunchcomponent/interfaces/ |
H A D | innerfullscreenlaunchcomponent.js | 30 constructor(d1, e1, f1, g1 = -1, h1 = undefined, i1) { argument 31 super(d1, f1, g1, i1);
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/atomicservicetabs/interfaces/ |
H A D | atomicservicetabs.js | 107 set barBackgroundColor(g1) { 108 this.__barBackgroundColor.set(g1);
|
/ohos5.0/base/useriam/user_auth_framework/frameworks/js/napi/user_auth_icon/ |
H A D | user_auth_icon.js | 30 constructor(b1, c1, d1, e1 = -1, f1 = undefined, g1) { argument 31 super(b1, d1, e1, g1);
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/progressbutton/interfaces/ |
H A D | progressbutton.js | 126 set progress(g1) { 127 this.__progress.set(g1);
|
/ohos5.0/foundation/window/window_manager/resources/abc/pip/interface/ |
H A D | PiPContent.js | 156 buildCustomUI(g1 = null) { argument
|
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/build/ |
H A D | preview_common.gni | 62 "-g1",
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/ |
H A D | chip.js | 99 g1: { class in b1.label 1082 labelMargin.left = this.theme.label.g1.left; 1099 labelMargin.right = this.theme.label.g1.right; 1557 this.mdListener.on('change', (g1) => { 1558 if (g1.matches) {
|
/ohos5.0/base/inputmethod/imf/frameworks/js/napi/inputmethodlist/ |
H A D | inputmethodlist.js | 413 let g1 = await settings.getValue(e1, settings.input.ACTIVATED_INPUT_METHOD_SUB_MODE); variable 414 let h1 = JSON.parse(g1);
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 166 (l ? l : this).observeComponentCreation2((g1, h1, i1 = m) => {
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/multinavigation/interfaces/ |
H A D | multinavigation.js | 1432 let g1 = this.multiOperates.findIndex((h1) => { return h1 === f1; }); 1433 if (g1 !== -1) { 1434 this.multiOperates.splice(g1, 1);
|
/ohos5.0/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);
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/splitlayout/interfaces/ |
H A D | splitlayout.js | 303 this.observeComponentCreation2((g1, h1) => {
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.js | 1217 constructor(f1, g1) { argument 1219 this.response = g1;
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/editabletitlebar/interfaces/ |
H A D | editabletitlebar.js | 1246 set windowStandardHeight(g1) { 1247 this.__windowStandardHeight.set(g1);
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/ |
H A D | subheader.js | 2078 static getStringByResource(g1, h1) { argument 2080 let l1 = getContext().resourceManager.getStringSync(g1);
|
/ohos5.0/build/config/compiler/ |
H A D | BUILD.gn | 1532 # -gline-tables-only is the same as -g1, but clang-cl only exposes the 1542 cflags += [ "-g1" ] 1547 # DW_AT_linkage_name in -g1 builds. -fdebug-info-for-profiling enables
|
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/toolbar/interfaces/ |
H A D | toolbar.js | 1092 this.observeComponentCreation2((g1, h1) => {
|