Home
last modified time | relevance | path

Searched refs:src (Results 1 - 25 of 1555) sorted by relevance

12345678910>>...63

/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/jpeg_yuv_decoder/
H A Djpeg_yuvdata_converter.cpp90 static bool CopyLineData(uint8_t *dest, uint32_t destStride, const uint8_t *src, uint32_t srcStride) in CopyLineData() argument
95 errno_t ret = memcpy_s(dest, destStride, src, std::min(srcStride, destStride)); in CopyLineData()
101 uint8_t lastValueinCurrentSrcLine = *(src + srcStride - 1); in CopyLineData()
125 static bool VerifyParameter(const YuvPlaneInfo &src, const YuvPlaneInfo &dest, in VerifyParameter() argument
128 uint32_t width = src.imageWidth; in VerifyParameter()
129 uint32_t height = src.imageHeight; in VerifyParameter()
130 if (!IsValidYuvData(src) || !IsValidSize(width, height) || in VerifyParameter()
142 static bool CopyYData(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) in CopyYData() argument
144 uint32_t height = src.imageHeight; in CopyYData()
147 srcY = src in CopyYData()
164 I4xxToI420_c(const YuvPlaneInfo &src, const YuvPlaneInfo &dest, uint8_t srcXScale, uint8_t srcYScale, bool outfmtIsYU12) I4xxToI420_c() argument
216 I444ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I444ToI420_wrapper() argument
232 I444ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I444ToNV21_wrapper() argument
248 I422ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I422ToI420_wrapper() argument
264 I422ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I422ToNV21_wrapper() argument
280 I420ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I420ToI420_wrapper() argument
285 I420ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I420ToNV21_wrapper() argument
301 I440ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I440ToI420_wrapper() argument
306 I440ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I440ToNV21_wrapper() argument
311 I411ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I411ToI420_wrapper() argument
316 I411ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I411ToNV21_wrapper() argument
321 I400ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest) I400ToI420_wrapper() argument
[all...]
/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_manual_test/src/main/js/default/common/js/
H A Dgeneral.js30 { src: "/common/A094_051.png" },
31 { src: "/common/A094_052.png" },
32 { src: "/common/A094_053.png" },
33 { src: "/common/A094_054.png" },
34 { src: "/common/A094_055.png" },
35 { src: "/common/A094_056.png" },
36 { src: "/common/A094_057.png" },
37 { src: "/common/A094_058.png" },
38 { src: "/common/A094_059.png" },
39 { src
[all...]
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Djpeg_utils.cpp58 if ((dinfo == nullptr) || (dinfo->src == nullptr)) { in InitSrcStream()
62 JpegSrcMgr *src = static_cast<JpegSrcMgr *>(dinfo->src); in InitSrcStream() local
63 src->next_input_byte = src->streamData.inputStreamBuffer; in InitSrcStream()
64 src->bytes_in_buffer = 0; in InitSrcStream()
74 JpegSrcMgr *src = static_cast<JpegSrcMgr *>(dinfo->src); in FillInputBuffer() local
75 if ((src == nullptr) || (src in FillInputBuffer()
109 JpegSrcMgr *src = static_cast<JpegSrcMgr *>(dinfo->src); SkipInputData() local
[all...]
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_gatt_characteristic.cpp52 GattCharacteristic::GattCharacteristic(const GattCharacteristic &src) in GattCharacteristic() argument
53 : writeType_(src.writeType_), in GattCharacteristic()
54 handle_(src.handle_), in GattCharacteristic()
55 permissions_(src.permissions_), in GattCharacteristic()
56 properties_(src.properties_), in GattCharacteristic()
57 service_(src.service_), in GattCharacteristic()
59 length_(src.length_), in GattCharacteristic()
61 uuid_(src.uuid_) in GattCharacteristic()
63 if (nullptr != src.value_ && 0 != length_) { in GattCharacteristic()
65 (void)memcpy_s(value_.get(), length_, src in GattCharacteristic()
76 operator =(const GattCharacteristic &src) operator =() argument
100 GattCharacteristic(GattCharacteristic &&src) GattCharacteristic() argument
[all...]
H A Dbluetooth_gatt_service.cpp39 GattService::GattService(const GattService &src) in GattService() argument
40 : handle_(src.handle_), in GattService()
41 endHandle_(src.endHandle_), in GattService()
42 serviceType_(src.serviceType_), in GattService()
45 uuid_(src.uuid_) in GattService()
47 includeServices_ = src.includeServices_; in GattService()
48 for (auto &characteristic : src.characteristics_) { in GattService()
53 GattService::GattService(GattService &&src) in GattService() argument
54 : handle_(src.handle_), in GattService()
55 endHandle_(src in GattService()
[all...]
H A Dbluetooth_gatt_descriptor.cpp34 GattDescriptor::GattDescriptor(const GattDescriptor &src) in GattDescriptor() argument
35 : handle_(src.handle_), in GattDescriptor()
36 permissions_(src.permissions_), in GattDescriptor()
37 characteristic_(src.characteristic_), in GattDescriptor()
39 length_(src.length_), in GattDescriptor()
40 uuid_(src.uuid_) in GattDescriptor()
42 if (length_ != 0 && src.value_ != nullptr) { in GattDescriptor()
44 (void)memcpy_s(value_.get(), length_, src.value_.get(), length_); in GattDescriptor()
51 GattDescriptor &GattDescriptor::operator=(const GattDescriptor &src) in operator =() argument
53 if (this != &src) { in operator =()
[all...]
/device/soc/rockchip/rk3568/hardware/omx_il/osal/
H A DRockchip_OSAL_RGA_Process.c111 Rga_Request.src.yrgb_addr = plane->fd; in rga_copy()
113 Rga_Request.src.uv_addr = 0; in rga_copy()
114 Rga_Request.src.v_addr = 0; in rga_copy()
115 Rga_Request.src.vir_w = plane->stride; in rga_copy()
116 Rga_Request.src.vir_h = Height; in rga_copy()
118 Rga_Request.src.format = format; in rga_copy()
120 Rga_Request.src.act_w = Width; in rga_copy()
121 Rga_Request.src.act_h = Height; in rga_copy()
122 Rga_Request.src.x_offset = 0; in rga_copy()
123 Rga_Request.src in rga_copy()
303 rga_convert(rga_info_t *src, rga_info_t *dst, int rga_fd) rga_convert() argument
441 rga_info_t src; rga_rgb2nv12() local
458 rga_info_t src; rga_rgb2nv12() local
480 rga_info_t src; rga_nv122rgb() local
[all...]
/test/xts/acts/validator_lite/acts_validator/entry/src/main/js/MainAbility/common/js/
H A Dgeneral.js33 { src: '/common/A094_051.png' },
34 { src: '/common/A094_052.png' },
35 { src: '/common/A094_053.png' },
36 { src: '/common/A094_054.png' },
37 { src: '/common/A094_055.png' },
38 { src: '/common/A094_056.png' },
39 { src: '/common/A094_057.png' },
40 { src: '/common/A094_058.png' },
41 { src: '/common/A094_059.png' },
42 { src
[all...]
/foundation/distributeddatamgr/kv_store/kvstoremock/interfaces/mock/base/
H A Dsecurectype.h173 #define SECUREC_STRNCPY_SM(dest, destMax, src, count) \
174 (((void *)dest != NULL && (void *)src != NULL && (size_t)destMax >0 && \
176 (SECUREC_TWO_MIN(count, strlen(src)) + 1) <= (size_t)destMax ) ? \
177 ((count < strlen(src))? (memcpy(dest, src, count), *((char *)dest + count) = '\0', EOK): \
178 (memcpy(dest, src, strlen(src) + 1), EOK)) : (strncpy_error(dest, destMax, src, count)))
180 #define SECUREC_STRCPY_SM(dest, destMax, src) \
181 (((void *)dest != NULL && (void *)src !
[all...]
/base/print/print_fwk/frameworks/ohprint/src/
H A Dprint_converter.cpp53 bool ConvertStringToInt(const char *src, int &dst) in ConvertStringToInt() argument
55 if (src == nullptr) { in ConvertStringToInt()
58 dst = atoi(src); in ConvertStringToInt()
60 PRINT_HILOGW("ConvertStringToInt fail: %{public}s", src); in ConvertStringToInt()
66 bool ConvertOrientationMode(const uint32_t &src, Print_OrientationMode &dst) in ConvertOrientationMode() argument
68 if (src >= ORIENTATION_OFFSET && src - ORIENTATION_OFFSET <= static_cast<uint32_t>(ORIENTATION_MODE_NONE)) { in ConvertOrientationMode()
69 dst = static_cast<Print_OrientationMode>(src - ORIENTATION_OFFSET); in ConvertOrientationMode()
76 bool ConvertColorMode(const uint32_t &src, Print_ColorMode &dst) in ConvertColorMode() argument
78 if (src > in ConvertColorMode()
86 ConvertDuplexMode(const uint32_t &src, Print_DuplexMode &dst) ConvertDuplexMode() argument
96 ConvertQuality(const uint32_t &src, Print_Quality &dst) ConvertQuality() argument
[all...]
/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/
H A Dbundle_info_utils.cpp45 void BundleInfoUtils::CopyBundleInfo(int32_t flags, BundleInfo *des, BundleInfo src) in CopyBundleInfo() argument
51 SetBundleInfoBundleName(des, src.bundleName); in CopyBundleInfo()
52 SetBundleInfoLabel(des, src.label); in CopyBundleInfo()
53 SetBundleInfoVersionName(des, src.versionName); in CopyBundleInfo()
54 SetBundleInfoBigIconPath(des, src.bigIconPath); in CopyBundleInfo()
55 SetBundleInfoCodePath(des, src.codePath); in CopyBundleInfo()
56 SetBundleInfoDataPath(des, src.dataPath); in CopyBundleInfo()
57 SetBundleInfoVendor(des, src.vendor); in CopyBundleInfo()
58 SetBundleInfoModuleInfos(des, src.moduleInfos, src in CopyBundleInfo()
87 CopyBundleInfoNoReplication(int32_t flags, BundleInfo *des, BundleInfo src) CopyBundleInfoNoReplication() argument
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/pan/
H A Dpan_message.h31 PanMessage(const PanMessage &src) : utility::Message(src.what_, src.arg1_, src.arg2_), in PanMessage() argument
32 dev_(src.dev_), in PanMessage()
33 ethernetHeader_(src.ethernetHeader_), in PanMessage()
34 l2capInfo_(src.l2capInfo_), in PanMessage()
35 data_(src.data_), in PanMessage()
36 dataLength_(src.dataLength_) in PanMessage()
46 PanMessage operator=(const PanMessage &src) in operator =() argument
[all...]
/base/security/device_auth/common_lib/impl/src/
H A Dhc_parcel.c172 HcBool ParcelWriteRevert(HcParcel *parcel, const void *src, uint32_t dataSize) in ParcelWriteRevert() argument
179 rc = memmove_s(srcCopy, dataSize, src, dataSize); in ParcelWriteRevert()
300 HcBool ParcelWrite(HcParcel *parcel, const void *src, uint32_t dataSize) in ParcelWrite() argument
303 if (parcel == NULL || src == NULL || dataSize == 0) { in ParcelWrite()
318 rc = memmove_s(parcel->data + parcel->endPos, dataSize, src, dataSize); in ParcelWrite()
326 HcBool ParcelWriteInt32(HcParcel *parcel, int src) in ParcelWriteInt32() argument
328 return ParcelWrite(parcel, &src, sizeof(src)); in ParcelWriteInt32()
331 HcBool ParcelWriteUint32(HcParcel *parcel, uint32_t src) in ParcelWriteUint32() argument
333 return ParcelWrite(parcel, &src, sizeo in ParcelWriteUint32()
336 ParcelWriteInt16(HcParcel *parcel, short src) ParcelWriteInt16() argument
341 ParcelWriteUint16(HcParcel *parcel, uint16_t src) ParcelWriteUint16() argument
346 ParcelWriteInt8(HcParcel *parcel, char src) ParcelWriteInt8() argument
351 ParcelWriteUint8(HcParcel *parcel, uint8_t src) ParcelWriteUint8() argument
356 ParcelWriteUint64(HcParcel *parcel, uint64_t src) ParcelWriteUint64() argument
361 ParcelWriteInt64(HcParcel *parcel, int64_t src) ParcelWriteInt64() argument
366 ParcelReadParcel(HcParcel *src, HcParcel *dst, uint32_t size, HcBool copy) ParcelReadParcel() argument
384 ParcelCopy(HcParcel *src, HcParcel *dst) ParcelCopy() argument
476 ParcelWriteInt32Revert(HcParcel *parcel, int src) ParcelWriteInt32Revert() argument
482 ParcelWriteUint32Revert(HcParcel *parcel, uint32_t src) ParcelWriteUint32Revert() argument
488 ParcelWriteInt16Revert(HcParcel *parcel, short src) ParcelWriteInt16Revert() argument
494 ParcelWriteUint16Revert(HcParcel *parcel, uint16_t src) ParcelWriteUint16Revert() argument
500 ParcelWriteInt8Revert(HcParcel *parcel, char src) ParcelWriteInt8Revert() argument
505 ParcelWriteUint8Revert(HcParcel *parcel, uint8_t src) ParcelWriteUint8Revert() argument
510 ParcelWriteUint64Revert(HcParcel *parcel, uint64_t src) ParcelWriteUint64Revert() argument
516 ParcelWriteInt64Revert(HcParcel *parcel, int64_t src) ParcelWriteInt64Revert() argument
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hid_host/
H A Dhid_host_message.h31 HidHostMessage(const HidHostMessage &src) : utility::Message(src.what_, src.arg1_, src.arg2_), in HidHostMessage() argument
32 dev_(src.dev_), in HidHostMessage()
33 sendData_(src.sendData_), in HidHostMessage()
34 l2capInfo_(src.l2capInfo_), in HidHostMessage()
36 dataLength_(src.dataLength_) in HidHostMessage()
38 if ((dataLength_ > 0) && (src.data_ != nullptr)) { in HidHostMessage()
40 if (memcpy_s(data_.get(), dataLength_, src in HidHostMessage()
56 operator =(const HidHostMessage &src) operator =() argument
[all...]
/foundation/communication/nfc/interfaces/inner_api/common/
H A Dnfc_sdk_common.cpp44 std::string NfcSdkCommon::BytesVecToHexString(const unsigned char* src, uint32_t length) in BytesVecToHexString() argument
52 result.push_back(hexKeys[(src[i] & 0xF0) >> HALF_BYTE_BITS]); in BytesVecToHexString()
53 result.push_back(hexKeys[src[i] & 0x0F]); in BytesVecToHexString()
58 std::string NfcSdkCommon::UnsignedCharToHexString(const unsigned char src) in UnsignedCharToHexString() argument
62 result.push_back(hexKeys[(src & 0xF0) >> HALF_BYTE_BITS]); in UnsignedCharToHexString()
63 result.push_back(hexKeys[src & 0x0F]); in UnsignedCharToHexString()
67 void NfcSdkCommon::HexStringToBytes(const std::string &src, std::vector<unsigned char> &bytes) in HexStringToBytes() argument
69 if (src.empty()) { in HexStringToBytes()
73 uint32_t bytesLen = src.length() / HEX_BYTE_LEN; in HexStringToBytes()
77 strByte = src in HexStringToBytes()
87 GetHexStrBytesLen(const std::string src) GetHexStrBytesLen() argument
101 GetByteFromHexStr(const std::string src, uint32_t index) GetByteFromHexStr() argument
117 StringToInt(std::string src, bool bLittleEndian) StringToInt() argument
144 StringToAsciiBytes(const std::string &src, std::vector<unsigned char> &bytes) StringToAsciiBytes() argument
156 StringToHexString(const std::string &src) StringToHexString() argument
165 HexStringToAsciiString(const std::string &src) HexStringToAsciiString() argument
188 HexArrayToStringWithoutChecking(const std::string &src) HexArrayToStringWithoutChecking() argument
222 CodeMiddlePart(const std::string &src) CodeMiddlePart() argument
[all...]
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/base64/
H A Dbase64_utils.cpp47 * @param src data to be decoded
54 bool Base64Utils::Base64Decode(const uint8_t *src, uint32_t srcSize, uint8_t *dest, uint32_t *destSize) in Base64Decode() argument
56 if ((src == nullptr) || (srcSize == 0) || (dest == nullptr) || (destSize == nullptr) || (srcSize > *destSize)) { in Base64Decode()
69 if (src[srcSize - 1] == '=') { // 1:last one in Base64Decode()
72 if (src[srcSize - 2] == '=') { // 2:second to last in Base64Decode()
78 if (src[i] >= MAX_BASE64_DECODE_NUM || src[i + 1] >= MAX_BASE64_DECODE_NUM || in Base64Decode()
79 src[i + 2] >= MAX_BASE64_DECODE_NUM || src[i + 3] >= MAX_BASE64_DECODE_NUM) { // 2&3 src inde in Base64Decode()
[all...]
/base/global/resource_management/frameworks/resmgr/src/utils/
H A Dpsue_manager.cpp93 std::string PsueManager::Convert(const std::string &src, std::string &dest) in Convert() argument
95 if (isDigit(src)) { in Convert()
99 std::string wsStr = ToWstring(ws, src); in Convert()
109 unsigned int len = src.length(); in Convert()
131 bool PsueManager::isDigit(const std::string src) in isDigit() argument
133 for (unsigned int i = 0 ; i < src.size() ; i++) { in isDigit()
134 if (!isdigit(src[i])) { in isDigit()
168 std::string PsueManager::ToWstring(std::wstring &dest, const std::string &src) in ToWstring() argument
171 size_t destSize = mbstowcs(NULL, src.c_str(), 0); in ToWstring()
177 if (mbstowcs(&buf[0], src in ToWstring()
185 ToString(std::string &dest, const std::wstring &src) ToString() argument
207 IsAsciiString(const std::string &src) IsAsciiString() argument
219 BidirectionConvert(std::string &src) BidirectionConvert() argument
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/components/lib/libsec/include/
H A Dsecurectype.h468 #define SECUREC_STRNCPY_SM(dest, destMax, src, count) \
469 (((void *)(dest) != NULL && (void *)(src) != NULL && (size_t)(destMax) > 0 && \
471 (SECUREC_TWO_MIN((size_t)(count), strlen(src)) + 1) <= (size_t)(destMax)) ? \
472 (((size_t)(count) < strlen(src)) ? (memcpy((dest), (src), (count)), *((char *)(dest) + (count)) = '\0', EOK) : \
473 (memcpy((dest), (src), strlen(src) + 1), EOK)) : (strncpy_error((dest), (destMax), (src), (count))))
475 #define SECUREC_STRCPY_SM(dest, destMax, src) \
476 (((void *)(dest) != NULL && (void *)(src) !
[all...]
/foundation/communication/bluetooth/frameworks/inner/ipc/common/
H A Dgatt_data.h46 Descriptor(const Descriptor &src);
48 Descriptor(Descriptor&& src) in Descriptor()
49 : handle_(src.handle_), permissions_(src.permissions_), value_(std::move(src.value_)), length_(src.length_), in Descriptor()
50 uuid_(src.uuid_) in Descriptor()
52 src.value_ = nullptr; in Descriptor()
53 src.length_ = 0; in Descriptor()
62 Descriptor &operator=(const Descriptor &src) member
63 Descriptor &operator=(Descriptor &&src) = delete; global() member
113 Characteristic &operator=(const Characteristic &src) = delete; global() member
114 Characteristic &operator=(Characteristic &&src) = delete; global() member
154 Service &operator=(const Service &src) = delete; global() member
155 Service &operator=(Service &&src) = delete; global() member
[all...]
/base/useriam/user_auth_framework/frameworks/native/common/attributes/src/
H A Dattributes.cpp74 static bool EncodeUint32Value(uint32_t src, std::vector<uint8_t> &dst);
75 static bool DecodeUint32Value(const std::vector<uint8_t> &src, uint32_t &dst);
80 static bool EncodeBoolValue(bool src, std::vector<uint8_t> &dst);
81 static bool EncodeUint64Value(uint64_t src, std::vector<uint8_t> &dst);
82 static bool EncodeUint16Value(uint16_t src, std::vector<uint8_t> &dst);
83 static bool EncodeUint8Value(uint8_t src, std::vector<uint8_t> &dst);
84 static bool EncodeInt32Value(int32_t src, std::vector<uint8_t> &dst);
85 static bool EncodeInt64Value(int64_t src, std::vector<uint8_t> &dst);
86 static bool EncodeStringValue(const std::string &src, std::vector<uint8_t> &dst);
87 static bool EncodeUint64ArrayValue(const std::vector<uint64_t> &src, st
675 EncodeBoolValue(bool src, std::vector<uint8_t> &dst) EncodeBoolValue() argument
684 EncodeUint64Value(uint64_t src, std::vector<uint8_t> &dst) EncodeUint64Value() argument
694 EncodeUint32Value(uint32_t src, std::vector<uint8_t> &dst) EncodeUint32Value() argument
704 EncodeUint16Value(uint16_t src, std::vector<uint8_t> &dst) EncodeUint16Value() argument
714 EncodeUint8Value(uint8_t src, std::vector<uint8_t> &dst) EncodeUint8Value() argument
722 EncodeInt32Value(int32_t src, std::vector<uint8_t> &dst) EncodeInt32Value() argument
732 EncodeInt64Value(int64_t src, std::vector<uint8_t> &dst) EncodeInt64Value() argument
742 EncodeStringValue(const std::string &src, std::vector<uint8_t> &dst) EncodeStringValue() argument
754 EncodeUint64ArrayValue(const std::vector<uint64_t> &src, std::vector<uint8_t> &dst) EncodeUint64ArrayValue() argument
772 EncodeUint32ArrayValue(const std::vector<uint32_t> &src, std::vector<uint8_t> &dst) EncodeUint32ArrayValue() argument
789 EncodeUint16ArrayValue(const std::vector<uint16_t> &src, std::vector<uint8_t> &dst) EncodeUint16ArrayValue() argument
806 EncodeInt32ArrayValue(const std::vector<int32_t> &src, std::vector<uint8_t> &dst) EncodeInt32ArrayValue() argument
823 EncodeUint8ArrayValue(const std::vector<uint8_t> &src, std::vector<uint8_t> &dst) EncodeUint8ArrayValue() argument
834 DecodeBoolValue(const std::vector<uint8_t> &src, bool &dst) DecodeBoolValue() argument
843 DecodeUint64Value(const std::vector<uint8_t> &src, uint64_t &dst) DecodeUint64Value() argument
855 DecodeUint32Value(const std::vector<uint8_t> &src, uint32_t &dst) DecodeUint32Value() argument
866 DecodeUint16Value(const std::vector<uint8_t> &src, uint16_t &dst) DecodeUint16Value() argument
877 DecodeUint8Value(const std::vector<uint8_t> &src, uint8_t &dst) DecodeUint8Value() argument
886 DecodeInt32Value(const std::vector<uint8_t> &src, int32_t &dst) DecodeInt32Value() argument
897 DecodeInt64Value(const std::vector<uint8_t> &src, int64_t &dst) DecodeInt64Value() argument
908 DecodeStringValue(const std::vector<uint8_t> &src, std::string &dst) DecodeStringValue() argument
924 DecodeUint64ArrayValue(const std::vector<uint8_t> &src, std::vector<uint64_t> &dst) DecodeUint64ArrayValue() argument
941 DecodeUint32ArrayValue(const std::vector<uint8_t> &src, std::vector<uint32_t> &dst) DecodeUint32ArrayValue() argument
958 DecodeUint16ArrayValue(const std::vector<uint8_t> &src, std::vector<uint16_t> &dst) DecodeUint16ArrayValue() argument
975 DecodeUint8ArrayValue(const std::vector<uint8_t> &src, std::vector<uint8_t> &dst) DecodeUint8ArrayValue() argument
982 DecodeInt32ArrayValue(const std::vector<uint8_t> &src, std::vector<int32_t> &dst) DecodeInt32ArrayValue() argument
[all...]
/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_auto_test/src/main/js/default/pages/image-animator/01/
H A Dindex.js20 src: 'common/asserts/numbers/0.png'
22 src: 'common/asserts/numbers/2.png'
24 src: 'common/asserts/numbers/3.png'
26 src: 'common/asserts/numbers/4.png'
28 src: 'common/asserts/numbers/5.png'
30 src: 'common/asserts/numbers/6.png'
32 src: 'common/asserts/numbers/7.png'
34 src: 'common/asserts/numbers/8.png'
36 src: 'common/asserts/numbers/9.png'
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/ylong_cloud_extension/include/
H A Dbasic_rust_types.h70 OhCloudExtRustType OhCloudExtVectorGetValueTyp(OhCloudExtVector *src);
78 OhCloudExtVector *src,
89 const OhCloudExtVector *src,
98 int OhCloudExtVectorGetLength(const OhCloudExtVector *src, unsigned int *len);
103 void OhCloudExtVectorFree(OhCloudExtVector *src);
124 OhCloudExtRustType OhCloudExtHashMapGetKeyTyp(const OhCloudExtHashMap *src);
129 OhCloudExtRustType OhCloudExtHashMapGetValueTyp(const OhCloudExtHashMap *src);
134 int OhCloudExtHashMapGetLength(const OhCloudExtHashMap *src, unsigned int *len);
142 OhCloudExtHashMap *src,
151 * @param src [I
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Dip.h275 #define ip_output(p, src, dest, ttl, tos, proto, pcb) \
277 ip6_output(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, pcb) : \
278 ip4_output(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, pcb))
284 #define ip_output_if(p, src, dest, ttl, tos, proto, netif) \
286 ip6_output_if(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, netif) : \
287 ip4_output_if(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, netif))
292 #define ip_output_if_src(p, src, dest, ttl, tos, proto, netif) \
294 ip6_output_if_src(p, ip_2_ip6(src), ip_2_ip6(dest), ttl, tos, proto, netif) : \
295 ip4_output_if_src(p, ip_2_ip4(src), ip_2_ip4(dest), ttl, tos, proto, netif))
297 #define ip_output_if_hdrincl(p, src, des
[all...]
/device/soc/rockchip/rk3588/hardware/rga/include/
H A Dim2d.h183 * @param src
191 #define imcheck(src, dst, src_rect, dst_rect, ...) \
201 rga_check_perpare((rga_buffer_t *)(&src), (rga_buffer_t *)(&dst), (rga_buffer_t *)(&__pat), \
203 __ret = imcheck_t(src, dst, __pat, src_rect, dst_rect, __pat_rect, 0); \
205 rga_check_perpare((rga_buffer_t *)(&src), (rga_buffer_t *)(&dst), (rga_buffer_t *)(&__pat), \
207 __ret = imcheck_t(src, dst, __pat, src_rect, dst_rect, __pat_rect, __args[0]); \
214 #define imcheck_composite(src, dst, pat, src_rect, dst_rect, pat_rect, ...) \
220 rga_check_perpare((rga_buffer_t *)(&src), (rga_buffer_t *)(&dst), (rga_buffer_t *)(&pat), \
222 __ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \
224 rga_check_perpare((rga_buffer_t *)(&src), (rga_buffer_
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gatt/
H A Dgatt_database.h48 AttributeValue(const AttributeValue &src) = delete; member
50 AttributeValue &operator=(const AttributeValue &src) in operator =()
52 if (this != &src) { in operator =()
53 auto tmp = std::make_unique<uint8_t[]>(src.length_); in operator =()
55 length_ = src.length_; in operator =()
57 (void)memcpy_s(value_.get(), length_, src.value_.get(), length_); in operator =()
63 AttributeValue(AttributeValue &&src) noexcept : value_(std::move(src.value_)), length_(src.length_) in length_()
65 src in length_()
[all...]

Completed in 12 milliseconds

12345678910>>...63