Home
last modified time | relevance | path

Searched refs:g1 (Results 1 – 25 of 90) sorted by relevance

1234

/ohos5.0/drivers/peripheral/usb/cfg/
H A Dinit.usb.configfs.cfg12 "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 Dgraphic_neon_pipeline.h121 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 Dgraphic_neon_utils.h120 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 Dcolor_fill.h57 #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 Dfoldsplitcontainer.js481 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 Dlite_win.cpp31 #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 Dtest_common.cpp102 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 Dloadbmp_test.c44 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 Dinnerfullscreenlaunchcomponent.js30 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 Datomicservicetabs.js107 set barBackgroundColor(g1) {
108 this.__barBackgroundColor.set(g1);
/ohos5.0/base/useriam/user_auth_framework/frameworks/js/napi/user_auth_icon/
H A Duser_auth_icon.js30 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 Dprogressbutton.js126 set progress(g1) {
127 this.__progress.set(g1);
/ohos5.0/foundation/window/window_manager/resources/abc/pip/interface/
H A DPiPContent.js156 buildCustomUI(g1 = null) { argument
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/build/
H A Dpreview_common.gni62 "-g1",
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/
H A Dchip.js99 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 Dinputmethodlist.js413 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 Dinterstitialdialogaction.js166 (l ? l : this).observeComponentCreation2((g1, h1, i1 = m) => {
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/multinavigation/interfaces/
H A Dmultinavigation.js1432 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 Dcloud_extension_stub.js127 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 Dsplitlayout.js303 this.observeComponentCreation2((g1, h1) => {
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/
H A Datomicserviceweb.js1217 constructor(f1, g1) { argument
1219 this.response = g1;
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/editabletitlebar/interfaces/
H A Deditabletitlebar.js1246 set windowStandardHeight(g1) {
1247 this.__windowStandardHeight.set(g1);
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/
H A Dsubheader.js2078 static getStringByResource(g1, h1) { argument
2080 let l1 = getContext().resourceManager.getStringSync(g1);
/ohos5.0/build/config/compiler/
H A DBUILD.gn1532 # -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 Dtoolbar.js1092 this.observeComponentCreation2((g1, h1) => {

1234