Home
last modified time | relevance | path

Searched defs:a (Results 1 – 25 of 173) sorted by relevance

1234567

/foundation/bundlemanager/bundle_framework_lite/utils/bundle_lite/
Dadapter.h32 #define AdapterMalloc(a) malloc(a) argument
33 #define AdapterFree(a) \ argument
42 #define MutexDelete(a) pthread_mutex_destroy(a) argument
43 #define MutexAcquire(a, b) pthread_mutex_lock(a) argument
44 #define MutexRelease(a) pthread_mutex_unlock(a) argument
52 #define AdapterMalloc(a) OhosMalloc(MEM_TYPE_APPFMK_LSRAM, a) argument
53 #define AdapterFree(a) \ argument
61 #define UI_Malloc(a) OhosMalloc(MEM_TYPE_APPFMK, a) argument
62 #define UI_Free(a) \ argument
70 #define Malloc(a) malloc(a) argument
[all …]
/foundation/graphic/graphic_2d/rosen/modules/texgine/src/
Dtypography_types.cpp28 TextAlign operator&(TextAlign a, TextAlign b) in operator &()
33 TextAlign operator|(TextAlign a, TextAlign b) in operator |()
38 TextAlign operator^(TextAlign a, TextAlign b) in operator ^()
43 TextAlign operator~(TextAlign a) in operator ~()
48 void operator&=(TextAlign &a, const TextAlign &b) in operator &=()
53 void operator|=(TextAlign &a, const TextAlign &b) in operator |=()
58 void operator^=(TextAlign &a, const TextAlign &b) in operator ^=()
63 TextDecoration operator&(const TextDecoration &a, const TextDecoration &b) in operator &()
68 TextDecoration operator|(const TextDecoration &a, const TextDecoration &b) in operator |()
73 TextDecoration operator^(const TextDecoration &a, const TextDecoration &b) in operator ^()
[all …]
/foundation/graphic/graphic_utils_lite/interfaces/innerkits/
Dgraphic_neon_utils.h37 static inline uint8x8_t Multipling(uint8x8_t a, uint8x8_t b) in Multipling()
44 static inline uint8x8_t NeonPreLerp(uint8x8_t p, uint8x8_t q, uint8x8_t a) in NeonPreLerp()
65 static inline uint8x8_t NeonMulDiv255(uint8x8_t a, uint8x8_t b) in NeonMulDiv255()
72 static inline float32x4_t NeonDiv(float32x4_t a, float32x4_t b) in NeonDiv()
82 static inline uint8x8_t NeonDivInt(uint16x8_t a, uint8x8_t b) in NeonDivInt()
155 … inline void LoadBuf_ARGB8888(uint8_t* buf, uint8x8_t& r, uint8x8_t& g, uint8x8_t& b, uint8x8_t& a) in LoadBuf_ARGB8888()
164 … inline void LoadBuf_XRGB8888(uint8_t* buf, uint8x8_t& r, uint8x8_t& g, uint8x8_t& b, uint8x8_t& a) in LoadBuf_XRGB8888()
173 …ic inline void LoadBuf_RGB888(uint8_t* buf, uint8x8_t& r, uint8x8_t& g, uint8x8_t& b, uint8x8_t& a) in LoadBuf_RGB888()
181 …ic inline void LoadBuf_RGB565(uint8_t* buf, uint8x8_t& r, uint8x8_t& g, uint8x8_t& b, uint8x8_t& a) in LoadBuf_RGB565()
196 uint8x8_t& a, in LoadBufA_ARGB8888()
[all …]
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_ap/Mock/
Doperator_overload.cpp20 bool operator==(const StationInfo &a, const StationInfo &b) in operator ==()
34 bool operator==(const HotspotConfig &a, const HotspotConfig &b) in operator ==()
/foundation/multimedia/av_codec/test/moduletest/audio_encoder/NativeAPI/
DNativeParamCheckTest.cpp137 uint8_t a[100]; variable
196 uint8_t a[100]; variable
255 uint8_t a[100]; variable
317 uint8_t a[100]; variable
378 uint8_t a[100]; variable
439 uint8_t a[100]; variable
748 uint8_t a[100]; variable
807 uint8_t a[100]; variable
865 uint8_t a[100]; variable
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_hal/hdi/inc/
Dwifi_hdi_common.h68 #define HDI_GET_RSN_ID(a) HdiGetBe32((const uint8_t *) (a)) argument
70 #define HDI_BIT_MULTI(a, b, c, d) \ argument
87 static inline uint32_t HdiGetBe24(const uint8_t *a) in HdiGetBe24()
92 static inline uint32_t HdiGetBe32(const uint8_t *a) in HdiGetBe32()
98 static inline uint16_t HdiGetBe16(const uint8_t *a) in HdiGetBe16()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/include/
Dutils.h37 #define UTILS_MIN(a, b) ((a) < (b) ? (a) : (b)) argument
38 #define UTILS_MAX(a, b) ((a) > (b) ? (a) : (b)) argument
82 __inline static FILLP_BOOL UtilsIpv6AddrMatch(FILLP_CONST struct sockaddr_in6 *a, FILLP_CONST struc… in UtilsIpv6AddrMatch()
93 #define UTILS_ADDR_FAMILY_MATCH(a, b) (((struct sockaddr_in *)(void *)(a))->sin_family == \ argument
96 #define UTILS_ADDR_PORT_MATCH(a, b) (((struct sockaddr_in *)(void *)(a))->sin_port == \ argument
99 #define UTILS_IPV4_ADDR_MATCH(a, b) ((a)->sin_addr.s_addr == (b)->sin_addr.s_addr && \ argument
102 #define UTILS_IPV6_ADDR_MATCH(a, b) (UTILS_ADDR_PORT_MATCH((a), (b)) && \ argument
/foundation/multimedia/histreamer/tests/ut/
DTestAny.cpp53 explicit NonTrivialCopyable(uint8_t a) : a_(a) in NonTrivialCopyable()
56 NonTrivialCopyable(const NonTrivialCopyable& a) : a_(a.a_) in NonTrivialCopyable()
71 explicit NonTrivialNonThrowMove(uint8_t a) : a_(a) in NonTrivialNonThrowMove()
74 explicit NonTrivialNonThrowMove(const NonTrivialNonThrowMove& a) : a_(a.a_) in NonTrivialNonThrowMove()
137 auto a = Any(number); variable
226 Any a; variable
/foundation/multimedia/av_codec/test/moduletest/muxer/InnerAPI/
DInnerAVMuxerParamCheckTest.cpp159 uint8_t a[100]; variable
225 uint8_t a[100]; variable
282 uint8_t a[100]; variable
338 uint8_t a[100]; variable
407 uint8_t a[100]; variable
464 uint8_t a[100]; variable
548 uint8_t a[100]; variable
604 uint8_t a[100]; variable
657 uint8_t a[100]; variable
708 uint8_t a[100]; variable
[all …]
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/modifier/
Drs_render_property.cpp252const std::shared_ptr<RSRenderPropertyBase>& a, const std::shared_ptr<const RSRenderPropertyBase>&… in operator +=()
262const std::shared_ptr<RSRenderPropertyBase>& a, const std::shared_ptr<const RSRenderPropertyBase>&… in operator -=()
281const std::shared_ptr<const RSRenderPropertyBase>& a, const std::shared_ptr<const RSRenderProperty… in operator +()
291const std::shared_ptr<const RSRenderPropertyBase>& a, const std::shared_ptr<const RSRenderProperty… in operator -()
311const std::shared_ptr<const RSRenderPropertyBase>& a, const std::shared_ptr<const RSRenderProperty… in operator ==()
321const std::shared_ptr<const RSRenderPropertyBase>& a, const std::shared_ptr<const RSRenderProperty… in operator !=()
/foundation/multimedia/av_codec/test/moduletest/muxer/NativeAPI/
DNativeAVMuxerParamCheckTest.cpp171 uint8_t a[CODEC_CONFIG]; variable
235 uint8_t a[CODEC_CONFIG]; variable
295 uint8_t a[CODEC_CONFIG]; variable
355 uint8_t a[CODEC_CONFIG]; variable
416 uint8_t a[CODEC_CONFIG]; variable
477 uint8_t a[CODEC_CONFIG]; variable
565 uint8_t a[CODEC_CONFIG]; variable
618 uint8_t a[CODEC_CONFIG]; variable
671 uint8_t a[CODEC_CONFIG]; variable
724 uint8_t a[CODEC_CONFIG]; variable
[all …]
DNativeAVMuxerNullCheckTest.cpp86 uint8_t a[100]; variable
118 uint8_t a[100]; variable
175 uint8_t a[100]; variable
212 uint8_t a[100]; variable
261 uint8_t a[100]; variable
307 uint8_t a[100]; variable
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/
Dcolor.cpp27 Color::Color(uint32_t r, uint32_t g, uint32_t b, uint32_t a) noexcept : alpha_(a), red_(r), green_(… in Color()
73 void Color::SetAlpha(uint32_t a) in SetAlpha()
122 void Color::SetAlphaF(scalar a) in SetAlphaF()
127 void Color::SetRgb(uint32_t r, uint32_t g, uint32_t b, uint32_t a) in SetRgb()
135 void Color::SetRgbF(scalar r, scalar g, scalar b, scalar a) in SetRgbF()
Dbrush.cpp67 void Brush::SetARGB(int r, int g, int b, int a) in SetARGB()
93 void Brush::SetAlpha(uint32_t a) in SetAlpha()
98 void Brush::SetAlphaF(scalar a) in SetAlphaF()
/foundation/multimedia/av_codec/test/moduletest/audio_decoder/NativeAPI/
DNativeParamCheckTest.cpp141 uint8_t a[100]; variable
196 uint8_t a[100]; variable
251 uint8_t a[100]; variable
309 uint8_t a[100]; variable
366 uint8_t a[100]; variable
423 uint8_t a[100]; variable
/foundation/communication/dsoftbus/components/nstackx/nstackx_congestion/platform/unix/
Dnstackx_nlmsg.h42 static inline int32_t NlMax(int32_t a, int32_t b) in NlMax()
47 static inline int32_t NlMin(int32_t a, int32_t b) in NlMin()
/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_manual_test/src/main/js/default/pages/base/JSHeapOverFlow001/
Dindex.js18 var a = "1"; variable
/foundation/communication/ipc/ipc/test/rpc/server/
Drpc_server.c46 int32_t a; in RemoteRequestOne() local
55 int32_t a; in RemoteRequestOne() local
64 int32_t a; in RemoteRequestOne() local
/foundation/ability/dmsfwk_lite/include/
Ddmslite_utils.h47 uint16_t a; in IsBigEndian() member
56 #define DMS_FREE(a) \ argument
65 #define DMS_FREE(a) \ argument
/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/include/
Dtrans_tcp_direct_message.h29 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument
/foundation/communication/dsoftbus/core/transmission/trans_channel/auth/include/
Dtrans_auth_manager.h29 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/include/
Dsbc_math.h54 static inline int32_t MUL(int32_t a, int32_t b) in MUL()
59 static inline int32_t MULA(int32_t a, int32_t b, int32_t res) in MULA()
/foundation/ability/ability_runtime/test/moduletest/ability_record_test/
Dability_record_module_test.cpp49 bool operator==(const AbilityInfo& a, const AbilityInfo& b) in operator ==()
62 bool operator!=(const AbilityInfo& a, const AbilityInfo& b) in operator !=()
67 bool operator==(const ApplicationInfo& a, const ApplicationInfo& b) in operator ==()
77 bool operator!=(const ApplicationInfo& a, const ApplicationInfo& b) in operator !=()
84 bool operator==(const Want& a, const Want& b) in operator ==()
93 bool operator!=(const Want& a, const Want& b) in operator !=()
/foundation/communication/dsoftbus/core/transmission/trans_channel/proxy/include/
Dsoftbus_proxychannel_manager.h31 #define MIN(a, b) ((a) < (b) ? (a) : (b)) argument
/foundation/ability/form_fwk/test/unittest/fms_form_supply_callback_test/
Dmock_ability_connection.cpp23 int64_t a = 2; in GetFormId() local

1234567