/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/qos/ |
H A D | trans_qos_stat_client_test.cpp | 127 StreamData d1 = { in HWTEST_F() local 137 ret = SendStream(sessionId, &d1, &d2, &tmpf); in HWTEST_F() 174 StreamData d1 = { in HWTEST_F() local 184 ret = SendStream(sessionId, &d1, &d2, &tmpf); in HWTEST_F() 225 StreamData d1 = { sendStringData, STR_LEN }; in HWTEST_F() local 232 ret = SendStream(iter->first, &d1, &d2, &tmpf); in HWTEST_F() 278 StreamData d1 = { in HWTEST_F() local 288 ret = SendStream(sessionId, &d1, &d2, &tmpf); in HWTEST_F() 296 d1.bufLen = 1000; in HWTEST_F() 298 ret = SendStream(sessionId, &d1, in HWTEST_F() 339 StreamData d1 = { HWTEST_F() local [all...] |
/foundation/graphic/graphic_3d/lume/metaobject/src/curves/ |
H A D | easing_curve.cpp | 222 constexpr float d1 = 2.75f; in EaseOutBounce() local 223 if (t < 1.f / d1) { in EaseOutBounce() 226 if (t < (2.f / d1)) { in EaseOutBounce() 227 return n1 * Pow2(t - (1.5f / d1)) + 0.75f; in EaseOutBounce() 229 if (t < (2.5f / d1)) { in EaseOutBounce() 230 return n1 * Pow2(t - (2.25f / d1)) + 0.9375f; in EaseOutBounce() 232 return n1 * Pow2(t - (2.625f / d1)) + 0.984375f; in EaseOutBounce()
|
/foundation/arkui/ace_engine/frameworks/base/utils/ |
H A D | utf.cpp | 65 uint8_t d1 = *(data + 1); in ConvertMUtf8ToUtf16Pair() local 67 return { ((d0 & MASK_5BIT) << DATA_WIDTH) | (d1 & MASK_6BIT), 2 }; in ConvertMUtf8ToUtf16Pair() 75 return { ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_2)) | ((d1 & MASK_6BIT) << DATA_WIDTH) | (d2 & MASK_6BIT), in ConvertMUtf8ToUtf16Pair() 83 uint32_t codePoint = ((d0 & MASK_4BIT) << (DATA_WIDTH * CONST_3)) | ((d1 & MASK_6BIT) << (DATA_WIDTH * CONST_2)) | in ConvertMUtf8ToUtf16Pair()
|
/foundation/arkui/ui_lite/frameworks/animator/ |
H A D | interpolation.cpp | 61 float d1 = u2 - u1; in GetBezierDerivative() local 66 ret += BESSEL_SQUARE_COEFFICIENT * d1 * invT * t; in GetBezierDerivative()
|
/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/graphic/graphic_2d/rosen/modules/render_service_base/include/common/ |
H A D | rs_obj_abs_geometry.h | 68 static Vector2f GetDataRange(float d0, float d1, float d2, float d3);
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/common/ |
H A D | rs_obj_abs_geometry.cpp | 361 Vector2f RSObjAbsGeometry::GetDataRange(float d0, float d1, float d2, float d3) in GetDataRange() argument 365 if (d0 > d1) { in GetDataRange() 366 min = d1; in GetDataRange() 368 max = d1; in GetDataRange()
|
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/ |
H A D | matrix.h | 170 inline constexpr Mat4X4(float d0, float d1, float d2, float d3, float d4, float d5, float d6, float d7, float d8, in Mat4X4() argument 172 : data { d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10, d11, d12, d13, d14, d15 } in Mat4X4() 292 inline constexpr Mat4X3(float d0, float d1, float d2, float d3, float d4, float d5, float d6, float d7, float d8, in Mat4X3() argument 294 : data { d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10, d11 } in Mat4X3()
|
/foundation/arkui/ace_engine/frameworks/core/components/transform/ |
H A D | transform_component.cpp | 153 void TransformComponent::Matrix3d(float a1, float b1, float c1, float d1, float a2, float b2, float c2, float d2, in Matrix3d() argument 159 operation.matrix4_ = Matrix4(a1, a2, a3, a4, b1, b2, b3, b4, c1, c2, c3, c4, d1, d2, d3, d4); in Matrix3d()
|
H A D | transform_component.h | 81 void Matrix3d(float a1, float b1, float c1, float d1, float a2, float b2, float c2, float d2, float a3, float b3,
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/ |
H A D | distributeddb_relational_multi_user_test.cpp | 701 DataValue d1; in HWTEST_F() local 702 d1 = (int64_t)1; in HWTEST_F() 703 virtualRowData.objectData.PutDataValue("id", d1); in HWTEST_F() 1292 DataValue d1; in HWTEST_F() local 1293 d1 = (int64_t)1; in HWTEST_F() 1294 virtualRowData.objectData.PutDataValue("id", d1); in HWTEST_F()
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_extension/ |
H A D | cloud_extension_stub.js | 115 let d1 = await this.cloudService.subscribe(c1, b1); 116 u.writeInt(d1.code); 117 if (d1.code === a.ErrorCode.SUCCESS) { 118 this.marshallingSubscribeInfo(u, d1.value);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_item_drag_manager.cpp | 252 float d1 = c2.GetDistance(c1); in ScaleDiagonalItem() local 254 float sharped = Curves::SHARP->MoveInternal(std::abs(1 - d1 / d0)); in ScaleDiagonalItem()
|
/foundation/arkui/ace_engine/advanced_ui_component/foldsplitcontainer/interfaces/ |
H A D | foldsplitcontainer.js | 505 const d1 = getSplitRatio( 514 a1.size.height = y / (d1 + 1);
|
/foundation/arkui/ace_engine/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 179 (l ? l : this).observeComponentCreation2((d1, e1, f1 = m) => {
|
/foundation/arkui/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 179 (l ? l : this).observeComponentCreation2((d1, e1, f1 = m) => {
|
/foundation/arkui/ace_engine/advanced_ui_component/composetitlebar/interfaces/ |
H A D | composetitlebar.js | 1242 set mainWindow(d1) { 1243 this.__mainWindow.set(d1);
|
/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.js | 1223 constructor(d1) { 1224 this.url = d1;
|
/foundation/arkui/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.js | 1223 constructor(d1) { 1224 this.url = d1;
|
/foundation/arkui/ace_engine/advanced_ui_component/tabtitlebar/interfaces/ |
H A D | tabtitlebar.js | 1294 constructor(z, a1, b1, c1 = -1, d1 = undefined, e1) { 1296 if (typeof d1 === 'function') { 1297 this.paramsGenerator_ = d1;
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/interfaces/ |
H A D | distributeddb_interfaces_relational_test.cpp | 1604 DataValue d1; in ProcessSync() local 1605 d1 = static_cast<int64_t>(2); // 2: test data in ProcessSync() 1606 virtualRowData.objectData.PutDataValue("create", d1); in ProcessSync()
|
H A D | distributeddb_interfaces_relational_sync_test.cpp | 747 DataValue d1; in operator ()() local 748 d1 = (int64_t)id_; in operator ()() 749 virtualRowData.objectData.PutDataValue("id", d1); in operator ()()
|
/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/ |
H A D | chip.js | 258 let componentCall = new d1( 381 export class d1 extends ViewPU {
|
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/ |
H A D | subheader.js | 2113 static symbolFontSize(d1) { 2114 return Util.numberToSize(d1) + 'vp';
|