Home
last modified time | relevance | path

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

12345678910>>...38

/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...]
/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...]
H A Dsecurec.h77 /* The src buffer is not correct and destination buffer can't not be reset */
128 SECUREC_API errno_t wmemcpy_s(wchar_t *dest, size_t destMax, const wchar_t *src, size_t count);
130 SECUREC_API errno_t memmove_s(void *dest, size_t destMax, const void *src, size_t count);
132 SECUREC_API errno_t wmemmove_s(wchar_t *dest, size_t destMax, const wchar_t *src, size_t count);
196 SECUREC_API errno_t memcpy_s(void *dest, size_t destMax, const void *src, size_t count);
216 extern errno_t memcpy_sOptAsm(void *dest, size_t destMax, const void *src, size_t count);
217 extern errno_t memcpy_sOptTc(void *dest, size_t destMax, const void *src, size_t count);
220 #define strcpy_sp(dest, destMax, src) ((__builtin_constant_p((destMax)) && \
221 __builtin_constant_p((src))) ? \
222 SECUREC_STRCPY_SM((dest), (destMax), (src))
[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...]
/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/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/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...]
/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/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...]
/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...]
H A Dgatt_data.cpp51 Descriptor::Descriptor(const Descriptor& src) in Descriptor() argument
52 : handle_(src.handle_), permissions_(src.permissions_), value_(nullptr), length_(src.length_), uuid_(src.uuid_) in Descriptor()
54 if (src.value_ != nullptr && src.length_ != 0) { in Descriptor()
56 (void)memcpy_s(value_.get(), length_, src.value_.get(), length_); in Descriptor()
91 Characteristic::Characteristic(const Characteristic& src) in Characteristic() argument
92 : handle_(src in Characteristic()
[all...]
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/jpeg_yuv_decoder/
H A Djpeg_yuvdata_converter.h41 int I444ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
42 int I444ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
43 int I422ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
44 int I422ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
45 int I420ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
46 int I420ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
47 int I440ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
48 int I440ToNV21_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
49 int I411ToI420_wrapper(const YuvPlaneInfo &src, const YuvPlaneInfo &dest);
50 int I411ToNV21_wrapper(const YuvPlaneInfo &src, cons
[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...]
/foundation/multimedia/image_effect/frameworks/native/utils/common/
H A Dmemcpy_helper.cpp25 void MemcpyHelper::CopyData(CopyInfo &src, CopyInfo &dst) in CopyData() argument
27 uint8_t *srcBuffet = src.data; in CopyData()
36 BufferInfo &srcInfo = src.bufferInfo; in CopyData()
40 "dstLen=%{public}d", src.data, srcInfo.height_, srcInfo.formatType_, srcInfo.rowStride_, srcInfo.len_, in CopyData()
90 void MemcpyHelper::CopyData(EffectBuffer *src, EffectBuffer *dst) in CopyData() argument
92 CHECK_AND_RETURN_LOG(src != nullptr && dst != nullptr, in CopyData()
93 "Input effect buffer is null! src=%{public}p, dst=%{public}p", src, dst); in CopyData()
95 if (src == dst) { in CopyData()
101 CreateCopyInfoByEffectBuffer(src, srcCopyInf in CopyData()
109 CopyData(EffectBuffer *src, CopyInfo &dst) CopyData() argument
118 CopyData(CopyInfo &src, EffectBuffer *dst) CopyData() argument
145 CopyData(MemoryData *src, MemoryData *dst) CopyData() argument
[all...]
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/src/
H A Dext_pixel_convert.cpp48 void PixelCopy(RGBPixel* src, RGBxPixel* dst) in PixelCopy() argument
50 dst->r = src->r; in PixelCopy()
51 dst->g = src->g; in PixelCopy()
52 dst->b = src->b; in PixelCopy()
56 void PixelCopy(RGBxPixel* src, RGBPixel* dst) in PixelCopy() argument
58 dst->r = src->r; in PixelCopy()
59 dst->g = src->g; in PixelCopy()
60 dst->b = src->b; in PixelCopy()
63 uint32_t ExtPixelConvert::RGBxToRGB(const ExtPixels &src, ExtPixels &dst) in RGBxToRGB() argument
65 if (src in RGBxToRGB()
80 RGBToRGBx(const ExtPixels &src, ExtPixels &dst) RGBToRGBx() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/shared_overlay/
H A Dshared_transition_effect.cpp92 auto src = src_.Upgrade(); in Allow() local
93 if (!dest || !src) { in Allow()
101 auto src = src_.Upgrade(); in CreateAnimation() local
103 if (!dest || !src) { in CreateAnimation()
108 if (!CreateTranslateAnimation(src, dest)) { in CreateAnimation()
111 if (!CreateSizeAnimation(src, dest)) { in CreateAnimation()
114 if (!CreateOpacityAnimation(src, dest)) { in CreateAnimation()
120 bool SharedTransitionExchange::CreateTranslateAnimation(const RefPtr<FrameNode>& src, const RefPtr<FrameNode>& dest) in CreateTranslateAnimation() argument
123 auto srcOffset = src->GetPaintRectOffsetToPage(); in CreateTranslateAnimation()
125 "Translate animation get Offset, share id: %{public}s. src in CreateTranslateAnimation()
171 CreateSizeAnimation(const RefPtr<FrameNode>& src, const RefPtr<FrameNode>& dest) CreateSizeAnimation() argument
226 CreateOpacityAnimation(const RefPtr<FrameNode>& src, const RefPtr<FrameNode>& dest) CreateOpacityAnimation() argument
[all...]
/foundation/arkui/ui_lite/frameworks/common/
H A Dimage.cpp58 OHOS::Image::ImageType Image::CheckImgType(const char* src) in CheckImgType() argument
62 int32_t fd = open(src, O_RDONLY | O_BINARY); in CheckImgType()
64 int32_t fd = open(src, O_RDONLY); in CheckImgType()
67 GRAPHIC_LOGE("can't open %s\n", src); in CheckImgType()
94 bool Image::SetStandardSrc(const char* src) in SetStandardSrc() argument
96 if (src == nullptr) { in SetStandardSrc()
101 const char* ptr = strrchr(src, '.'); in SetStandardSrc()
107 ImageType imageType = CheckImgType(src); in SetStandardSrc()
110 return SetPNGSrc(src); in SetStandardSrc()
115 return SetJPEGSrc(src); in SetStandardSrc()
136 SetLiteSrc(const char* src) SetLiteSrc() argument
190 SetSrc(const char* src) SetSrc() argument
209 SetSrc(const ImageInfo* src) SetSrc() argument
231 PreParse(const char *src) PreParse() argument
315 SetPNGSrc(const char* src) SetPNGSrc() argument
412 SetJPEGSrc(const char* src) SetJPEGSrc() argument
[all...]
/foundation/multimedia/audio_framework/services/audio_service/common/src/
H A Daudio_common_converter.cpp44 const int16_t *src = reinterpret_cast<const int16_t *>(buffer); in ConvertBufferTo32Bit() local
46 src += count; in ConvertBufferTo32Bit()
48 *--dst = (int32_t)((*--src << AUDIO_SAMPLE_16BIT_LENGTH) * volume); in ConvertBufferTo32Bit()
63 const int32_t *src = reinterpret_cast<const int32_t *>(buffer); in ConvertBufferTo32Bit() local
65 src += count; in ConvertBufferTo32Bit()
67 *--dst = (*--src * volume); in ConvertBufferTo32Bit()
72 const float *src = reinterpret_cast<const float *>(buffer); in ConvertBufferTo32Bit() local
74 *dst++ = *src++ * volume * AUDIO_SAMPLE_32BIT_VALUE; in ConvertBufferTo32Bit()
95 const int16_t *src = reinterpret_cast<const int16_t *>(buffer); in ConvertBufferTo16Bit() local
97 src in ConvertBufferTo16Bit()
112 const int32_t *src = reinterpret_cast<const int32_t *>(buffer); ConvertBufferTo16Bit() local
121 const float *src = reinterpret_cast<const float *>(buffer); ConvertBufferTo16Bit() local
[all...]
/foundation/filemanagement/app_file_service/tests/mock/parameter/src/
H A Dparameter.c43 char src[] = "true"; in GetParameterValue() local
44 ret = strncpy_s(value, len, src, strlen(src)); in GetParameterValue()
46 char src[] = "false"; in GetParameterValue() local
47 ret = strncpy_s(value, len, src, strlen(src)); in GetParameterValue()

Completed in 20 milliseconds

12345678910>>...38