Home
last modified time | relevance | path

Searched full:param (Results 7376 - 7400 of 21372) sorted by relevance

1...<<291292293294295296297298299300>>...855

/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dcanvas_rendering_context_2d_modifier.cpp85 ArcParam param; in SetCanvasArc() local
86 param.x = Dimension(options->x, DimensionUnit::VP).ConvertToPx(); in SetCanvasArc()
87 param.y = Dimension(options->y, DimensionUnit::VP).ConvertToPx(); in SetCanvasArc()
88 param.radius = Dimension(options->radius, DimensionUnit::VP).ConvertToPx(); in SetCanvasArc()
89 param.startAngle = options->startAngle; in SetCanvasArc()
90 param.endAngle = options->endAngle; in SetCanvasArc()
91 param.anticlockwise = static_cast<bool>(options->counterclockwise); in SetCanvasArc()
92 canvasPattern->Arc(param); in SetCanvasArc()
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/pipeline/
H A Drs_base_render_engine_unit_test.cpp132 BufferDrawParam param; in HWTEST() local
136 param.buffer = surfaceNode->GetRSSurfaceHandler()->GetBuffer(); in HWTEST()
144 renderEngine->DrawDisplayNodeWithParams(*recordingCanvas, *node, param); in HWTEST()
146 param.useCPU = true; in HWTEST()
147 renderEngine->DrawDisplayNodeWithParams(*recordingCanvas, *node, param); in HWTEST()
153 renderEngine->DrawDisplayNodeWithParams(*canvas, *node, param); in HWTEST()
155 param.useCPU = true; in HWTEST()
156 renderEngine->DrawDisplayNodeWithParams(*canvas, *node, param); in HWTEST()
/foundation/multimedia/audio_framework/test/fuzztest/audiostream_fuzzer/
H A Daudio_stream_fuzzer.cpp323 int32_t param = 0; in CallStreamFuncs() local
324 ipcStream->SetRate(param); in CallStreamFuncs()
325 ipcStream->GetRate(param); in CallStreamFuncs()
329 ipcStream->SetAudioEffectMode(param); in CallStreamFuncs()
330 ipcStream->GetAudioEffectMode(param); in CallStreamFuncs()
331 ipcStream->SetPrivacyType(param); in CallStreamFuncs()
332 ipcStream->GetPrivacyType(param); in CallStreamFuncs()
333 ipcStream->SetOffloadMode(param, false); in CallStreamFuncs()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/
H A Drs_base_render_engine_test.cpp132 BufferDrawParam param; in HWTEST() local
136 param.buffer = surfaceNode->GetRSSurfaceHandler()->GetBuffer(); in HWTEST()
144 renderEngine->DrawDisplayNodeWithParams(*recordingCanvas, *node, param); in HWTEST()
146 param.useCPU = true; in HWTEST()
147 renderEngine->DrawDisplayNodeWithParams(*recordingCanvas, *node, param); in HWTEST()
153 renderEngine->DrawDisplayNodeWithParams(*canvas, *node, param); in HWTEST()
155 param.useCPU = true; in HWTEST()
156 renderEngine->DrawDisplayNodeWithParams(*canvas, *node, param); in HWTEST()
/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/src/
H A Dconfigure_test.cpp87 * @tc.name : OH_AVCapability_GetVideoWidthRangeForHeight param correct
117 * @tc.name : OH_AVCapability_GetVideoWidthRangeForHeight param correct
150 * @tc.name : OH_AVCapability_GetVideoHeightRangeForWidth param correct
183 * @tc.name : OH_AVCapability_GetVideoHeightRangeForWidth param correct
216 * @tc.name : OH_AVCapability_GetVideoWidthRange param correct
249 * @tc.name : OH_AVCapability_GetVideoWidthRange param correct
282 * @tc.name : OH_AVCapability_GetVideoHeightRange param correct
314 * @tc.name : OH_AVCapability_GetVideoHeightRange param correct
/foundation/multimedia/player_framework/services/services/avmetadatahelper/ipc/
H A Davmetadatahelper_service_proxy.cpp228 const OutputConfiguration &param) in FetchFrameYuv()
239 (void)data.WriteInt32(param.dstWidth); in FetchFrameYuv()
240 (void)data.WriteInt32(param.dstHeight); in FetchFrameYuv()
241 (void)data.WriteInt32(static_cast<int32_t>(param.colorFormat)); in FetchFrameYuv()
253 int32_t option, const OutputConfiguration &param) in FetchFrameAtTime()
264 (void)data.WriteInt32(param.dstWidth); in FetchFrameAtTime()
265 (void)data.WriteInt32(param.dstHeight); in FetchFrameAtTime()
266 (void)data.WriteInt32(static_cast<int32_t>(param.colorFormat)); in FetchFrameAtTime()
227 FetchFrameYuv(int64_t timeUs, int32_t option, const OutputConfiguration &param) FetchFrameYuv() argument
252 FetchFrameAtTime(int64_t timeUs, int32_t option, const OutputConfiguration &param) FetchFrameAtTime() argument
/foundation/communication/dsoftbus/core/adapter/huks/src/
H A Dsoftbus_rsa_encrypt.c121 COMM_LOGE(COMM_UTILS, "invalid param."); in SoftBusGetPublicKey()
161 COMM_LOGE(COMM_UTILS, "invalid param."); in GetRsaBigNum()
203 COMM_LOGE(COMM_UTILS, "invalid param."); in EncryptByPublicKey()
217 COMM_LOGE(COMM_UTILS, "invalid param rsa."); in EncryptByPublicKey()
230 COMM_LOGE(COMM_UTILS, "RSA_padding_add_PKCS1_OAEP_mgf1 failed or invalid BIGNUM param ."); in EncryptByPublicKey()
256 COMM_LOGE(COMM_UTILS, "invalid param."); in DataToPublicKey()
285 COMM_LOGE(COMM_UTILS, "invalid param."); in SoftBusRsaEncrypt()
333 COMM_LOGE(COMM_UTILS, "invalid param."); in SoftBusRsaDecrypt()
/foundation/communication/dsoftbus/tests/sdk/transmission/session/
H A Dclient_trans_session_service_test.cpp133 static SessionInfo *TestGenerateSession(const SessionParam *param) in TestGenerateSession() argument
140 if (strcpy_s(session->info.peerSessionName, SESSION_NAME_SIZE_MAX, param->peerSessionName) != EOK || in TestGenerateSession()
141 strcpy_s(session->info.peerDeviceId, DEVICE_ID_SIZE_MAX, param->peerDeviceId) != EOK || in TestGenerateSession()
142 strcpy_s(session->info.groupId, GROUP_ID_SIZE_MAX, param->groupId) != EOK) { in TestGenerateSession()
211 static SessionInfo *GenerateSession(const SessionParam *param) in GenerateSession() argument
217 int32_t ret = strcpy_s(session->info.peerSessionName, SESSION_NAME_SIZE_MAX, param->peerSessionName); in GenerateSession()
220 ret = strcpy_s(session->info.peerDeviceId, DEVICE_ID_SIZE_MAX, param->peerDeviceId); in GenerateSession()
223 ret = strcpy_s(session->info.groupId, GROUP_ID_SIZE_MAX, param->groupId); in GenerateSession()
/foundation/communication/dsoftbus/core/common/dfx/statistics/
H A Dtrans_network_statistics.c55 COMM_LOGE(COMM_DFX, "invalid param"); in AddChannelStatisticsInfo()
96 COMM_LOGE(COMM_DFX, "invalid param"); in AddNetworkResource()
144 COMM_LOGE(COMM_DFX, "invalid param"); in IsChannelDfxInfoValid()
171 COMM_LOGE(COMM_DFX, "invalid param"); in RemoveChannelDfxInfo()
199 COMM_LOGE(COMM_DFX, "invalid param, channelId=%{public}d", channelId); in ChannelStatisticsInfoInit()
222 COMM_LOGE(COMM_DFX, "invalid param, channelId=%{public}d", channelId); in UpdateNetworkResourceByLaneId()
271 COMM_LOGE(COMM_DFX, "invalid param"); in PackNetworkStatistics()
307 COMM_LOGE(COMM_DFX, "invalid param"); in DfxRecordTransChannelStatistics()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/syncer/
H A Ddistributeddb_communicator_proxy_test.cpp230 * @tc.steps: step1. Call GetCommunicatorMtuSize from CommProxy with no param. in HWTEST_F()
237 * @tc.steps: step2. Call GetCommunicatorMtuSize from CommProxy with param DEVICE_C. in HWTEST_F()
279 * @tc.steps: step2. Call GetRemoteCommunicatorVersion from CommProxy with param DEVICE_B. in HWTEST_F()
293 * @tc.steps: step4. Call GetRemoteCommunicatorVersion from CommProxy with param DEVICE_C. in HWTEST_F()
310 * @tc.steps: step1. Call SendMessage from CommProxy with param DEVICE_B. in HWTEST_F()
318 * @tc.steps: step1. Call SendMessage from CommProxy with param DEVICE_C. in HWTEST_F()
335 * @tc.steps: step1. Call GetTimeout from CommProxy with no param. in HWTEST_F()
342 * @tc.steps: step2. Call GetTimeout from CommProxy with param DEVICE_C. in HWTEST_F()
/third_party/ffmpeg/libavcodec/
H A Dfitsdec.c51 * @param ptr8 pointer to the data
52 * @param header pointer to the header
53 * @param end pointer to end of packet
99 * @param avctx AVCodec context
100 * @param ptr pointer to pointer to the data
101 * @param header pointer to the FITSHeader
102 * @param end pointer to end of packet
103 * @param metadata pointer to pointer to AVDictionary to store metadata
H A Dlibxavs2.c36 err = cae->api->opt_set2(cae->param, name, opt_str); \
57 xavs2_param_t *param; member
77 cae->param = cae->api->opt_alloc(); in xavs2_init()
78 if (!cae->param) { in xavs2_init()
118 cae->encoder = cae->api->encoder_create(cae->param); in xavs2_init()
189 const int shift_in = atoi(cae->api->opt_get(cae->param, "SampleShift")); in xavs2_encode_frame()
253 if (cae->param) { in xavs2_close()
254 cae->api->opt_destroy(cae->param); in xavs2_close()
/third_party/ffmpeg/libavutil/
H A Davutil.h288 * @param[in] pict_type the picture type @return a single character
317 * @param elsize size in bytes of each list element (only 1, 2, 4 or 8)
318 * @param term list terminator (usually 0 or -1)
319 * @param list pointer to the list
328 * @param term list terminator (usually 0 or -1)
329 * @param list pointer to the list
361 * @param buf a buffer with size in bytes of at least AV_FOURCC_MAX_STRING_SIZE
362 * @param fourcc the fourcc to represent
/third_party/glslang/Test/baseResults/
H A Dhlsl.struct.split.trivial.vert.out123 Name 39 "param"
124 Name 41 "param"
149 39(param): 9(ptr) Variable Function
150 41(param): 10(ptr) Variable Function
157 Store 39(param) 40
159 Store 41(param) 42
160 43:11(VS_OUTPUT) FunctionCall 15(@main(struct-VS_INPUT-vf41;vf4;) 39(param) 41(param)
H A Dhlsl.staticMemberFunction.frag.out137 Name 37 "param"
138 Name 42 "param"
183 37(param): 8(ptr) Variable Function
184 42(param): 14(ptr) Variable Function
186 Store 37(param) 36
187 38: 7(fvec4) FunctionCall 11(Test::staticMemFun(vf4;) 37(param)
191 Store 42(param) 41
192 43: 13(int) FunctionCall 17(Test::staticMemFun(i1;) 42(param)
H A Dhlsl.staticFuncInit.frag.out150 Name 44 "param"
151 Name 47 "param"
202 44(param): 10(ptr) Variable Function
203 47(param): 10(ptr) Variable Function
209 Store 44(param) 43
210 45: 6(float) FunctionCall 13(f2(f1;) 44(param)
213 Store 47(param) 48
214 49: 6(float) FunctionCall 13(f2(f1;) 47(param)
/third_party/cmsis/CMSIS/Core/Include/m-profile/
H A Darmv7m_cachel1.h110 \param[in] addr address
111 \param[in] isize size of memory block (in number of bytes)
353 \param[in] addr address
354 \param[in] dsize size of memory block (in number of bytes)
383 \param[in] addr address
384 \param[in] dsize size of memory block (in number of bytes)
413 \param[in] addr address (aligned to 32-byte boundary)
414 \param[in] dsize size of memory block (in number of bytes)
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRelativeDateFormat.java54 * @param timeStyle The time style for the date and time.
55 * @param dateStyle The date style for the date and time.
56 * @param locale The locale for the date.
57 * @param cal The calendar to be used
232 * @param day day offset ( -1, 0, 1, etc.. ). Does not require sorting by offset.
319 * @param zone Zone to be adopted, or NULL for TimeZone::createDefault().
320 * @param locale Locale of the calendar
321 * @param status Error code
H A DTextTrieMap.java36 * @param ignoreCase true to use simple case insensitive match
45 * @param text The text.
46 * @param val The value object associated with the text.
58 * @param text The text to be matched with prefixes.
72 * @param text The text to be matched with prefixes.
73 * @param start The start index of of the text
205 * @param matchLength Matched key's length
206 * @param values An iterator of the objects associated with the matched key
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DNumberingSystem.java62 * @param radix_in The radix for this numbering system. ICU currently
64 * @param isAlgorithmic_in Specifies whether the numbering system is algorithmic
66 * @param desc_in String used to describe the characteristics of the numbering
80 * @param name_in The string representing the name of the numbering system.
81 * @param radix_in The radix for this numbering system. ICU currently
83 * @param isAlgorithmic_in Specifies whether the numbering system is algorithmic
85 * @param desc_in String used to describe the characteristics of the numbering
223 * @param name The name of the desired numbering system. Numbering system
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DBreakTransliterator.java176 * @param text The String to be iterated over
177 * @param pos Initial iterator position
188 * @param text The String to be iterated over
189 * @param begin Index of the first character
190 * @param end Index of the character following the last character
191 * @param pos Initial iterator position
218 * @param text The String to be iterated over
350 * @param obj the ReplaceableCharacterIterator object to be compared with.
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUCharacterCompare.java124 * @param uchartype
126 * @param jchartype
200 * @param f
202 * @param ch
204 * @param method
206 * @param ucharval
208 * @param charval
243 * @param f
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
H A DUnicodeNormalizerConformanceTest.java147 * @param field the 5 columns
148 * @param line the source line from the test suite file
181 * @param op name of normalization form, e.g., "KC"
182 * @param s string being normalized
183 * @param got value received
184 * @param exp expected value
185 * @param msg description of this test
207 * @param buf scratch buffer
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DBreakTransliterator.java177 * @param text The String to be iterated over
178 * @param pos Initial iterator position
189 * @param text The String to be iterated over
190 * @param begin Index of the first character
191 * @param end Index of the character following the last character
192 * @param pos Initial iterator position
219 * @param text The String to be iterated over
351 * @param obj the ReplaceableCharacterIterator object to be compared with.
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUCharacterCompare.java121 * @param uchartype
123 * @param jchartype
197 * @param f
199 * @param ch
201 * @param method
203 * @param ucharval
205 * @param charval
240 * @param f

Completed in 23 milliseconds

1...<<291292293294295296297298299300>>...855