Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 1064) sorted by relevance

12345678910>>...43

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/platform/include/
H A Dbt_endian.h20 #define H2BE_16(x) (x) argument
21 #define H2LE_16(x) (x) argument
22 #define BE2H_16(x) (x) argument
23 #define LE2H_16(x) (x) argument
25 #define H2BE_32(x) (x) argument
26 #define H2LE_32(x) (x) argument
27 #define BE2H_32(x) (x) argument
28 #define LE2H_32(x) (x) argument
30 #define H2BE_64(x) (x) argument
31 #define H2LE_64(x) (x) argument
[all …]
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/hci/
H A Dhci_def_feature.h30 #define HCI_SUPPORT_HOLD_MODE(x) !!GET_FEATURE_FLAG(x, 0, 6) argument
31 #define HCI_SUPPORT_SNIFF_MODE(x) !!GET_FEATURE_FLAG(x, 0, 7) argument
32 #define HCI_SUPPORT_SCO(x) !!GET_FEATURE_FLAG(x, 1, 3) argument
33 #define HCI_SUPPORT_HV2_PACKET(x) !!GET_FEATURE_FLAG(x, 1, 4) argument
34 #define HCI_SUPPORT_HV3_PACKET(x) !!GET_FEATURE_FLAG(x, 1, 5) argument
38 #define HCI_SUPPORT_ESCO_EV3(x) !!GET_FEATURE_FLAG(x, 3, 7) argument
39 #define HCI_SUPPORT_ESCO_EV4(x) !!GET_FEATURE_FLAG(x, 4, 0) argument
40 #define HCI_SUPPORT_ESCO_EV5(x) !!GET_FEATURE_FLAG(x, 4, 1) argument
41 #define HCI_SUPPORT_BREDR(x) !GET_FEATURE_FLAG(x, 4, 5) argument
42 #define HCI_SUPPORT_LE(x) !!GET_FEATURE_FLAG(x, 4, 6) argument
[all …]
H A Dhci_def_le_feature.h27 #define HCI_SUPPORT_CONNECTION_PARAMETERS_REQUEST_PROCEDURE(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 1) argument
28 #define HCI_SUPPORT_LE_PING(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 4) argument
29 #define HCI_SUPPORT_LE_DATA_PACKET_LENGTH_EXTENSION(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 5) argument
30 #define HCI_SUPPORT_LL_PRIVACY(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 6) argument
31 #define HCI_SUPPORT_LE_2M_PHY(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 8) argument
32 #define HCI_SUPPORT_LE_CODED_PHY(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 11) argument
33 #define HCI_SUPPORT_LE_EXTENDED_ADVERTISING(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 12) argument
34 #define HCI_SUPPORT_LE_PERIODIC_ADVERTISING(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 13) argument
35 #define HCI_SUPPURT_CHANNEL_SELECTION_ALGORITHM_2(x) !!GET_LINK_LAYER_FEATURE_FLAG(x, 14) argument
H A Dhci_def_supported_cmds.h27 #define HCI_SUPPORT_ENHANCED_SETUP_SYNCHRONOUS_CONNECTION(x) !!GET_COMMAND_FLAG(x, 29, 3) argument
28 #define HCI_SUPPORT_ENHANCED_ACCEPT_SYNCHRONOUS_CONNECTION(x) !!GET_COMMAND_FLAG(x, 29, 4) argument
29 #define HCI_SUPPORT_READ_LOCAL_SUPPORTED_CODECS(x) !!GET_COMMAND_FLAG(x, 29, 5) argument
30 #define HCI_SUPPORT_LE_READ_LOCAL_P_256_PUBLIC_KEY(x) !!GET_COMMAND_FLAG(x, 34, 1) argument
31 #define HCI_SUPPORT_LE_GENERATE_DH_KEY(x) !!GET_COMMAND_FLAG(x, 34, 2) argument
32 #define HCI_SUPPORT_LE_SET_PRIVACY_MODE(x) !!GET_COMMAND_FLAG(x, 39, 2) argument
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/hardware/imagecodec/
H A Dimage_codec_log.h40 #define LOGE(x, ...) \ argument
42 #define LOGW(x, ...) \ argument
44 #define LOGI(x, ...) \ argument
46 #define LOGD(x, ...) \ argument
53 #define HLOGW(x, ...) HILOG_WARN(LOG_CORE, HLOG_FMT x, compUniqueStr_.c_str(), \ argument
55 #define HLOGI(x, ...) HILOG_INFO(LOG_CORE, HLOG_FMT x, compUniqueStr_.c_str(), \ argument
57 #define HLOGD(x, ...) \ argument
66 #define SLOGE(x, ...) HILOG_ERROR(LOG_CORE, HLOG_FMT x, \ argument
68 #define SLOGW(x, ...) HILOG_WARN(LOG_CORE, HLOG_FMT x, \ argument
70 #define SLOGI(x, ...) HILOG_INFO(LOG_CORE, HLOG_FMT x, \ argument
[all …]
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/
H A Dfillp_os.h34 #define FILLP_NTOHL(x) \ argument
37 #define FILLP_NTOHS(x) (FILLP_UINT16)((((x)&0x00ff) << 8) | (((x)&0xff00) >> 8)) argument
39 #define FILLP_NTOHLL(x) … argument
45 #define FILLP_HTONL(x) FILLP_NTOHL(x) argument
46 #define FILLP_HTONS(x) FILLP_NTOHS(x) argument
47 #define FILLP_HTONLL(x) FILLP_NTOHLL(x) argument
65 #define unlikely(x) __builtin_expect((x), 0) argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/utils/
H A Dpoint.h73 inline PointF::PointF(scalar x, scalar y) noexcept : x_(x), y_(y) {} in PointF()
85 inline void PointF::SetX(scalar x) in SetX()
95 inline void PointF::Set(scalar x, scalar y) in Set()
106 inline void PointF::Offset(scalar x, scalar y) in Offset()
230 inline PointI::PointI(int x, int y) noexcept : x_(x), y_(y) {} in PointI()
242 inline void PointI::SetX(int x) in SetX()
252 inline void PointI::Set(int x, int y) in Set()
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
H A Drb_tree.c22 static void FillpRbRotateLeft(struct RbNode *x, struct RbRoot *root) in FillpRbRotateLeft()
53 static void FillpRbRotateRight(struct RbNode *x, struct RbRoot *root) in FillpRbRotateRight()
83 static struct RbNode *EqualRight(struct RbNode *x, struct RbRoot *root) in EqualRight()
93 static struct RbNode *EqualLeft(struct RbNode *x, struct RbRoot *root) in EqualLeft()
103 void FillpRbInsertColor(struct RbNode *x, struct RbRoot *root) in FillpRbInsertColor()
149 static int FillpRbEraseColorAtLeft(struct RbNode **x, struct RbNode **parent, struct RbRoot *root) in FillpRbEraseColorAtLeft()
184 static int FillpRbEraseColorAtRight(struct RbNode **x, struct RbNode **parent, struct RbRoot *root) in FillpRbEraseColorAtRight()
219 static void FillpRbEraseColor(struct RbNode *x, struct RbNode *parent, struct RbRoot *root) in FillpRbEraseColor()
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/
H A Dpoint.h30 Point(double x, double y) : x_(x), y_(y) {} in Point()
31 Point(double x, double y, SourceType sourceType) : x_(x), y_(y), sourceType_(sourceType) {} in Point()
32 …Point(double x, double y, double screenX, double screenY) : x_(x), y_(y), screenX_(screenX), scree… in Point()
33 Point(double x, double y, double screenX, double screenY, SourceType sourceType) in Point()
47 void SetX(double x) in SetX()
67 void SetScreenX(double x) in SetScreenX()
89 …double x = (x_ - center.GetX()) * std::cos(angle) - (y_ - center.GetY()) * std::sin(angle) + cente… in Rotate() local
/ohos5.0/commonlibrary/ets_utils/js_concurrent_module/common/helper/
H A Dconcurrent_helper.h34 #define LIKELY(x) __builtin_expect(!!(x), 1) argument
35 #define UNLIKELY(x) __builtin_expect(!!(x), 0) argument
37 #define LIKELY(x) (!!(x)) argument
38 #define UNLIKELY(x) (!!(x)) argument
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Ddb_common.h162 #define VEC_TO_STR(x) DBCommon::VectorToHexString(x).c_str() argument
163 #define STR_MASK(x) DBCommon::StringMasking(x).c_str() argument
164 #define STR_TO_HEX(x) DBCommon::TransferStringToHex(x).c_str() argument
H A Dmacro_utils.h36 #define BYTE_8_ALIGN(x) (((x) + (8 - 1)) & ~(8 - 1)) argument
38 #define BITX(x) (1U << (x)) argument
40 #define ULL(x) (static_cast<unsigned long long>(x)) argument
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_no_destructor.h34 explicit BluetoothNoDestructor(const T& x) { new (buff_) T(x); } in BluetoothNoDestructor()
35 explicit BluetoothNoDestructor(T&& x) { new (buff_) T(std::move(x)); } in BluetoothNoDestructor()
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/ui_effect/include/
H A Dui_effect_napi_utils.h22 #define UIEFFECT_IS_OK(x) ((x) == napi_ok) argument
24 #define UIEFFECT_IS_READY(x, p) (UIEFFECT_IS_OK(x) && UIEFFECT_NOT_NULL(p)) argument
26 #define UIEFFECT_NAPI_CHECK_RET_VOID_D(x, msg) \ argument
36 #define UIEFFECT_NAPI_CHECK_RET_D(x, res, msg) \ argument
46 #define UIEFFECT_NAPI_CHECK_RET_DELETE_POINTER(x, res, pointer, msg) \ argument
/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/rasterizer/
H A Drasterizer_scanline_antialias.cpp46 int32_t x = curCell->x; in SweepScanline() local
136 void RasterizerScanlineAntialias::MoveTo(int32_t x, int32_t y) in MoveTo()
149 void RasterizerScanlineAntialias::LineTo(int32_t x, int32_t y) in LineTo()
155 void RasterizerScanlineAntialias::MoveToByfloat(float x, float y) in MoveToByfloat()
168 void RasterizerScanlineAntialias::LineToByfloat(float x, float y) in LineToByfloat()
174 void RasterizerScanlineAntialias::AddVertex(float x, float y, uint32_t cmd) in AddVertex()
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_path_storage.h49 float x; variable
107 void AddVertex(float x, float y, uint32_t cmd) in AddVertex()
136 uint32_t LastVertex(float* x, float* y) const in LastVertex()
162 uint32_t GenerateVertex(uint32_t idx, float* x, float* y) const in GenerateVertex()
267 void MoveTo(float x, float y) in MoveTo()
278 void LineTo(float x, float y) in LineTo()
308 float x, float y) in ArcTo()
374 uint32_t LastVertex(float* x, float* y) const in LastVertex()
408 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex()
425 float x; variable
[all …]
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/engine/control/
H A DXButton.js19 constructor(x, y, w, h, name) { argument
31 move(x, y, w, h) { argument
67 isTouchInButton(x, y) { argument
82 procTouch(msg, x, y) { argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/
H A Drs_obj_geometry.h55 void SetX(float x) in SetX()
75 void SetPosition(float x, float y) in SetPosition()
85 void SetRect(float x, float y, float w, float h) in SetRect()
90 void SetPivotX(float x) in SetPivotX()
111 void SetPivot(float x, float y) in SetPivot()
116 void SetScaleX(float x) in SetScaleX()
130 void SetScale(float x, float y) in SetScale()
135 void SetSkewX(float x) in SetSkewX()
149 void SetSkew(float x, float y) in SetSkew()
154 void SetPerspX(float x) in SetPerspX()
[all …]
/ohos5.0/foundation/communication/dsoftbus/components/nstackx/nstackx_util/platform/liteos/
H A Dsys_util.h26 #define PP_HTON64(x) ((((x) & (uint64_t)0x00000000000000ffULL) << 56) | \ argument
35 #define htobe64(x) (x) argument
36 #define htole64(x) PP_HTON64(x) argument
37 #define be64toh(x) (x) argument
38 #define le64toh(x) PP_HTON64(x) argument
/ohos5.0/foundation/ability/ability_base/interfaces/inner_api/base/include/
H A Dbase_def.h42 #define INTERFACE(id, x) \ argument
46 #define INTERFACE2(id, pid, x) \ argument
52 #define CLASS(id, x) \ argument
58 #define INTERFACE_ID(x) argument
59 #define CLASS_ID(x) argument
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/
H A Dcanvas_path.cpp51 void NativeCanvasPath::MoveTo(double x, double y) in MoveTo()
56 void NativeCanvasPath::LineTo(double x, double y) in LineTo()
61 void NativeCanvasPath::Arc(double x, double y, double radius, double startAngle, double endAngle, b… in Arc()
71 void NativeCanvasPath::QuadraticCurveTo(double cpx, double cpy, double x, double y) in QuadraticCurveTo()
76 void NativeCanvasPath::BezierCurveTo(double cp1x, double cp1y, double cp2x, double cp2y, double x, … in BezierCurveTo()
81 void NativeCanvasPath::Ellipse(double x, double y, double radiusX, double radiusY, double rotation,… in Ellipse()
87 void NativeCanvasPath::Rect(double x, double y, double width, double height) in Rect()
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A DCanvasInput.js20 static SetSafeArea(x, y, w, h) { argument
23 static Reset(x, y, w, h, value, cb, cb2) { argument
54 static Hide(x, y) { argument
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/hardware/
H A Djpeg_hw_decoder.h41 #define JPEG_HW_LOGE(x, ...) \ argument
43 #define JPEG_HW_LOGW(x, ...) \ argument
45 #define JPEG_HW_LOGI(x, ...) \ argument
47 #define JPEG_HW_LOGD(x, ...) \ argument
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/include/
H A Dsbc_tables.h153 static int16_t FProto4(double x) { in FProto4()
157 static int16_t FProto4N(double x) { in FProto4N()
191 static int16_t FCos4(double x) { in FCos4()
195 static int16_t FCos4N(double x) { in FCos4N()
216 static int16_t FProto8(double x) { in FProto8()
220 static int16_t FProto8N(double x) { in FProto8N()
274 static int16_t FCos8(double x) { in FCos8()
278 static int16_t FCos8N(double x) { in FCos8N()
/ohos5.0/foundation/communication/dsoftbus/core/common/include/
H A Dsoftbus_bitmap.h30 #define SOFTBUS_BITGET(x, bit) ((x) & (DATA_ONE(x) << (bit))) argument
32 #define SOFTBUS_BITSGET(x, high, low) ((x) & (((DATA_ONE(x) << ((high) + 1)) - 1) & ~((DATA_ONE(x) … argument
33 #define SOFTBUS_BITSSHIFT(x, high, low) (((x) >> (low)) & ((DATA_ONE(x) << ((high) - (low) + 1)) - … argument

12345678910>>...43