Home
last modified time | relevance | path

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

12345678910>>...25

/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...]
/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...]
/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...]
/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...]
/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...]
H A Dsecurec.h55 /* The src buffer is not correct and destination buffer cant not be reset */
131 * Description: The memmove_s function copies n characters from the object pointed to by src
135 * Parameter: src - source address
136 * Parameter: count - copies count bytes from the src
139 SECUREC_API errno_t memmove_s(void *dest, size_t destMax, const void *src, size_t count);
145 * by src into the object pointed to by dest.
148 * Parameter: src - source address
149 * Parameter: count - copies count bytes from the src
152 SECUREC_API errno_t memcpy_s(void *dest, size_t destMax, const void *src, size_t count);
174 * Parameter: count - copies count characters from the src
[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...]
/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...]
/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...]
H A Dip6_addr.h108 void ip6_addr_set_fun(ip6_addr_t *dest, ip6_addr_t* src);
112 #define ip6_addr_copy(dest, src) do { (dest).addr[0] = (src).addr[0]; \
113 (dest).addr[1] = (src).addr[1]; \
114 (dest).addr[2] = (src).addr[2]; \
115 (dest).addr[3] = (src).addr[3]; \
116 ip6_addr_copy_zone((dest), (src)); }while(0)
117 #define ip6_addr_copy_ptr(dest, src) do { (dest)->addr[0] = (src)->addr[0]; \
118 (dest)->addr[1] = (src)
[all...]
H A Dip_addr.h132 #define ip_addr_copy(dest, src) ((dest) = (src))
134 #define ip_addr_copy_from_ip6(dest, src) do { \
135 ip6_addr_copy(*ip_2_ip6(&(dest)), src); IP_SET_TYPE_VAL(dest, IPADDR_TYPE_V6); } while (0)
137 #define ip_addr_copy_from_ip6_packed(dest, src) do{ \
138 ip6_addr_copy_from_packed(*ip_2_ip6(&(dest)), src); IP_SET_TYPE_VAL(dest, IPADDR_TYPE_V6); } while (0)
140 #define ip_addr_copy_from_ip4(dest, src) do { \
141 ip4_addr_copy(*ip_2_ip4(&(dest)), src); IP_SET_TYPE_VAL(dest, IPADDR_TYPE_V4); } while (0)
155 #define ip_addr_set(dest, src) ((*dest) = (*src))
[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...]
/device/soc/rockchip/common/hardware/rga/include/
H A Dim2d.h367 * @param src
375 #define imcheck(src, dst, src_rect, dst_rect, ...) \
391 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \
393 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \
400 #define imcheck_composite(src, dst, pat, src_rect, dst_rect, pat_rect, ...) \
406 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \
408 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \
415 IM_API IM_STATUS imcheck_t(const rga_buffer_t src, const rga_buffer_t dst, const rga_buffer_t pat,
422 * @param src
432 #define imresize(src, ds
[all...]
/device/soc/rockchip/rk3399/hardware/rga/include/
H A Dim2d.h377 * @param src
385 #define imcheck(src, dst, src_rect, dst_rect, ...) \
401 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \
403 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \
410 #define imcheck_composite(src, dst, pat, src_rect, dst_rect, pat_rect, ...) \
416 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \
418 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \
425 IM_API IM_STATUS imcheck_t(const rga_buffer_t src, const rga_buffer_t dst, const rga_buffer_t pat,
432 * @param src
442 #define imresize(src, ds
[all...]
/device/soc/rockchip/rk3568/hardware/rga/include/
H A Dim2d.h377 * @param src
385 #define imcheck(src, dst, src_rect, dst_rect, ...) \
401 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \
403 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \
410 #define imcheck_composite(src, dst, pat, src_rect, dst_rect, pat_rect, ...) \
416 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, 0); \
418 ret = imcheck_t(src, dst, pat, src_rect, dst_rect, pat_rect, args[0]); \
425 IM_API IM_STATUS imcheck_t(const rga_buffer_t src, const rga_buffer_t dst, const rga_buffer_t pat,
432 * @param src
442 #define imresize(src, ds
[all...]
/base/security/device_auth/common_lib/interfaces/
H A Dhc_parcel.h43 HcBool ParcelWrite(HcParcel *parcel, const void *src, uint32_t dataSize);
45 HcBool ParcelWriteRevert(HcParcel *parcel, const void *src, uint32_t dataSize);
58 HcBool ParcelWriteInt32(HcParcel *parcel, int src);
59 HcBool ParcelWriteUint32(HcParcel *parcel, uint32_t src);
60 HcBool ParcelWriteInt16(HcParcel *parcel, short src);
61 HcBool ParcelWriteUint16(HcParcel *parcel, uint16_t src);
62 HcBool ParcelWriteInt8(HcParcel *parcel, char src);
63 HcBool ParcelWriteUint8(HcParcel *parcel, uint8_t src);
64 HcBool ParcelWriteUint64(HcParcel *parcel, uint64_t src);
65 HcBool ParcelWriteInt64(HcParcel *parcel, int64_t src);
[all...]
/test/xts/acts/kernel_lite/io_posix/src/
H A DIoTestString.cpp79 const char src[] = "ABCDEF"; in HWTEST_F() local
80 int ret = strncmp(dest, src, 1); in HWTEST_F()
129 const char *src = "hello world !"; in HWTEST_F() local
131 char *ret = stpcpy(dest, src); in HWTEST_F()
133 EXPECT_STREQ(dest, src); in HWTEST_F()
149 char src[] = "hello world !"; in HWTEST_F() local
151 char *ret = stpncpy(dest, src, 5); in HWTEST_F()
170 const char *src = "123456789abc"; in HWTEST_F() local
171 size_t ret = strlcpy(dest, src, sizeof(dest)); in HWTEST_F()
173 EXPECT_STREQ(dest, src); in HWTEST_F()
189 char src[] = "hello world !"; HWTEST_F() local
207 char src[] = "hello world !"; HWTEST_F() local
240 char src[] = "ABCDE"; HWTEST_F() local
292 char src[] = "hello !! world"; HWTEST_F() local
307 char src[] = "hello world & HEELO & WORLD"; HWTEST_F() local
322 char src[] = "hello world !"; HWTEST_F() local
340 char src[] = "hello world & This is-String1"; HWTEST_F() local
391 char src[] = "123===ABC"; HWTEST_F() local
415 char src[] = "hello world !"; HWTEST_F() local
432 char src[] = "hello world !"; HWTEST_F() local
450 const char src[] = "!!"; HWTEST_F() local
467 const char src[] = "!"; HWTEST_F() local
484 const char src[] = "heAlo"; HWTEST_F() local
507 const char src[] = "heAlo"; HWTEST_F() local
[all...]
/base/print/print_fwk/test/unittest/service_test/
H A Dprint_service_converter_test.cpp89 const char* src = nullptr; in HWTEST_F() local
91 EXPECT_EQ(ConvertColorModeCode(src, dst), false); in HWTEST_F()
103 const char* src = "color"; in HWTEST_F() local
105 bool re = ConvertColorModeCode(src, dst); in HWTEST_F()
112 const char* src = "monochrome"; in HWTEST_F() local
114 bool re = ConvertColorModeCode(src, dst); in HWTEST_F()
121 const char* src = "auto"; in HWTEST_F() local
123 bool re = ConvertColorModeCode(src, dst); in HWTEST_F()
130 const char* src = "sss"; in HWTEST_F() local
132 EXPECT_EQ(ConvertColorModeCode(src, ds in HWTEST_F()
151 const char* src = nullptr; HWTEST_F() local
158 const char* src = "iso_a4_210x297mm"; HWTEST_F() local
165 const char* src = nullptr; HWTEST_F() local
172 const char* src = "iso_a4_210x297mm"; HWTEST_F() local
[all...]
/base/telephony/sms_mms/utils/
H A Dtext_coder.h30 void Base64Encode(const std::string &src, std::string &dest);
31 void Base64Decode(const std::string &src, std::string &dest);
34 int Utf8ToGsm7bit(uint8_t *dest, int maxLength, const uint8_t *src, int srcLength, MSG_LANGUAGE_ID_T &langId);
35 int Utf8ToUcs2(uint8_t *dest, int maxLength, const uint8_t *src, int srcLength);
36 int CdmaUtf8ToAuto(uint8_t *dest, int maxLength, const uint8_t *src, int srcLength, DataCodingScheme &scheme);
37 int GsmUtf8ToAuto(uint8_t *dest, int maxLength, const uint8_t *src, int srcLength, DataCodingScheme &scheme,
39 int Gsm7bitToUtf8(uint8_t *dest, int maxLength, const uint8_t *src, int srcLength, const MsgLangInfo &langInfo);
40 int Ucs2ToUtf8(uint8_t *dest, int maxLength, const uint8_t *src, int srcLength);
41 int EuckrToUtf8(uint8_t *dest, int maxLength, const uint8_t *src, int srcLength);
42 int ShiftjisToUtf8(uint8_t *dest, int maxLength, const uint8_t *src, in
[all...]
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/textinput/
H A Dtextinput_backgroundimage_test.cpp28 const char *src = FIRST_MIDDLE_VALUE; in TestTextInputBackgroundImage001() local
32 valueItem.string = src; in TestTextInputBackgroundImage001()
35 ASSERT_STREQ(nodeAPI->getAttribute(textInput, NODE_BACKGROUND_IMAGE)->string, src); in TestTextInputBackgroundImage001()
43 const char *src = FIRST_MIDDLE_VALUE; in TestTextInputBackgroundImage002() local
47 valueItem.string = src; in TestTextInputBackgroundImage002()
50 ASSERT_STREQ(nodeAPI->getAttribute(textInput, NODE_BACKGROUND_IMAGE)->string, src); in TestTextInputBackgroundImage002()
58 const char *src = FIRST_MIDDLE_VALUE; in TestTextInputBackgroundImage003() local
62 valueItem.string = src; in TestTextInputBackgroundImage003()
65 ASSERT_STREQ(nodeAPI->getAttribute(textInput, NODE_BACKGROUND_IMAGE)->string, src); in TestTextInputBackgroundImage003()
73 const char *src in TestTextInputBackgroundImage004() local
88 const char *src = SECOND_MIDDLE_VALUE; TestTextInputBackgroundImage005() local
103 const char *src = FIRST_MIDDLE_VALUE; TestTextInputBackgroundImage006() local
[all...]
/base/print/print_fwk/services/print_service/src/
H A Dprint_service_converter.cpp26 bool ConvertColorModeCode(const char *src, ColorModeCode &dst) in ConvertColorModeCode() argument
28 if (src == nullptr) { in ConvertColorModeCode()
31 if (strcasestr(src, "color")) { in ConvertColorModeCode()
33 } else if (strcasestr(src, "monochrome")) { in ConvertColorModeCode()
35 } else if (strcasestr(src, "auto")) { in ConvertColorModeCode()
55 bool ConvertPageSizeId(const char *src, std::string &id) in ConvertPageSizeId() argument
57 if (src == nullptr) { in ConvertPageSizeId()
60 std::string pageString(src); in ConvertPageSizeId()
65 bool ConvertPrintPageSize(const char *src, PrintPageSize &dst) in ConvertPrintPageSize() argument
68 if (ConvertPageSizeId(src, i in ConvertPrintPageSize()
[all...]
/device/board/hihope/rk3568/audio_drivers/
H A DMakefile20 codec/rk809_codec/src/rk809_codec_adapter.o \
21 codec/rk809_codec/src/rk809_codec_impl.o \
22 codec/rk809_codec/src/rk809_codec_linux_driver.o \
23 dsp/src/rk3568_dsp_adapter.o \
24 dsp/src/rk3568_dsp_ops.o \
25 dai/src/rk3568_dai_adapter.o \
26 dai/src/rk3568_dai_ops.o \
27 dai/src/rk3568_dai_linux_driver.o \
28 soc/src/rk3568_dma_adapter.o \
29 soc/src/rk3568_dma_op
[all...]
/test/xts/acts/graphic/acts_drawing_native/
H A DDrawingNativePathTestPart2.cpp160 OH_Drawing_Path *src = OH_Drawing_PathCreate(); in HWTEST_F() local
162 OH_Drawing_PathMoveTo(src, 0, 0); in HWTEST_F()
164 // path src). in HWTEST_F()
165 OH_Drawing_PathLineTo(src, 100, 100); in HWTEST_F()
167 OH_Drawing_PathAddPath(path, src, nullptr); in HWTEST_F()
170 OH_Drawing_PathDestroy(src); in HWTEST_F()
185 OH_Drawing_Path *src = OH_Drawing_PathCreate(); in HWTEST_F() local
190 OH_Drawing_PathAddPath(nullptr, src, matrix); in HWTEST_F()
197 OH_Drawing_PathAddPath(path, src, nullptr); in HWTEST_F()
200 OH_Drawing_PathDestroy(src); in HWTEST_F()
216 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
249 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
281 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
309 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
335 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
365 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
397 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
426 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
962 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
990 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
1017 OH_Drawing_Path *src = OH_Drawing_PathCreate(); HWTEST_F() local
[all...]
/device/soc/rockchip/common/vendor/drivers/video/rockchip/rga2/
H A Drga2_drv.c137 return "105 src + (1-src.a)*dst"; in rga2_get_blend_mode_str()
139 return "405 src.a * src + (1-src.a) * dst"; in rga2_get_blend_mode_str()
334 INFO("src : y=%lx uv=%lx v=%lx aw=%d ah=%d vw=%d vh=%d xoff=%d yoff=%d format=%s\n", req->src.yrgb_addr, in print_debug_info()
335 req->src.uv_addr, req->src.v_addr, req->src in print_debug_info()
2048 unsigned int *src, *dst; rga2_test_0() local
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/include/
H A Dhi_stdlib.h57 * @param src [IN] type #const #char *, Source buffer.CNcomment:源缓冲区。CNend
66 extern errno_t strcpy_s(char *dest, size_t dest_max, const char *src);
79 * @param src [IN] type #const #char *, Source buffer.CNcomment:源缓冲区。CNend
90 extern errno_t strncpy_s(char *dest, size_t dest_max, const char *src, size_t count);
103 * @param src [IN] type #const #char *, Source buffer.CNcomment:源缓冲区。CNend
112 extern errno_t strcat_s(char *dest, size_t dest_max, const char *src);
125 * @param src [IN] type #const #char *, Source buffer.CNcomment:源缓冲区。CNend
136 extern errno_t strncat_s(char *dest, size_t dest_max, const char *src, size_t count);
149 * @param src [IN] type #const #char *, Source buffer.CNcomment:源缓冲区。CNend
160 extern errno_t memcpy_s(void *dest, size_t dest_max, const void *src, size_
[all...]

Completed in 16 milliseconds

12345678910>>...25