Home
last modified time | relevance | path

Searched refs:data (Results 10326 - 10350 of 34643) sorted by relevance

1...<<411412413414415416417418419420>>...1386

/foundation/multimedia/audio_framework/frameworks/native/audioeffect/src/
H A Daudio_enhance_chain.cpp181 cmdInfo.data = static_cast<void *>(&setParam); in SetEnhanceParamToHandle()
195 replyInfo.data = &maxSampleRate; in AddEnhanceHandle()
212 cmdInfo.data = static_cast<void *>(&algoSupportedConfig_); in AddEnhanceHandle()
309 ret = DeinterleaverData(enhanceBuffer->ecBuffer.data(), deviceAttr_.ecChannels, in GetOneFrameInputData()
316 ret = DeinterleaverData(enhanceBuffer->micBufferIn.data(), deviceAttr_.micChannels, in GetOneFrameInputData()
323 ret = DeinterleaverData(enhanceBuffer->micRefBuffer.data(), deviceAttr_.micRefChannels, in GetOneFrameInputData()
334 DumpFileUtil::WriteDumpFile(dumpFileIn_, enhanceBuffer->micBufferIn.data(), static_cast<uint64_t>(length)); in ApplyEnhanceChain()
336 DumpFileUtil::WriteDumpFile(dumpFileEc_, enhanceBuffer->ecBuffer.data(), enhanceBuffer->ecBuffer.size()); in ApplyEnhanceChain()
339 DumpFileUtil::WriteDumpFile(dumpFileMicRef_, enhanceBuffer->micRefBuffer.data(), in ApplyEnhanceChain()
352 CHECK_AND_RETURN_RET_LOG(memcpy_s(enhanceBuffer->micBufferOut.data(), enhanceBuffe in ApplyEnhanceChain()
[all...]
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/
H A Dfixed_string.h60 initialize({ a.data(), a.size() });
89 struct HasData<T, void_t<decltype(declval<T>().data())>> : true_type {};
134 initialize({ a.data(), a.size() });
141 initialize({ a.data(), a.size() });
189 constexpr CharT const* data() const in data() function in basic_fixed_string
194 constexpr CharT* data() in data() function in basic_fixed_string
287 CloneData(data() + first, replace, str.data(), add); in replace()
288 MoveData(data() + first + add, len_ - first - add, data() in replace()
[all...]
/foundation/multimedia/av_session/services/session/server/migrate/
H A Dmigrate_avsession_server.cpp156 void MigrateAVSessionServer::OnBytesReceived(const std::string &deviceId, const std::string &data) in OnBytesReceived() argument
158 SLOGI("OnBytesReceived: %{public}s", data.c_str()); in OnBytesReceived()
159 if (data.length() < MSG_HEAD_LENGTH) { in OnBytesReceived()
160 SLOGW("OnBytesReceived: invalid data"); in OnBytesReceived()
163 if (data[1] == SYNC_COMMAND) { in OnBytesReceived()
164 ProcControlCommand(data); in OnBytesReceived()
165 } else if (data[1] == COLD_START) { in OnBytesReceived()
171 void MigrateAVSessionServer::ProcControlCommand(const std::string &data) in ProcControlCommand() argument
173 std::string jsonStr = data.substr(MSG_HEAD_LENGTH); in ProcControlCommand()
366 AVMetaData data; in ConvertControllerToJson() local
611 OnMetaDataChange(const std::string & playerId, const AVMetaData &data) OnMetaDataChange() argument
647 OnMetaDataChange(const AVMetaData &data) OnMetaDataChange() argument
[all...]
/foundation/distributeddatamgr/pasteboard/services/core/include/
H A Dpasteboard_service.h75 std::shared_ptr<PasteData> data; member
106 virtual int32_t GetPasteData(PasteData &data, int32_t &syncTime) override;
131 size_t GetDataSize(PasteData &data) const;
187 void Notify(const Event &event, std::shared_ptr<PasteDateTime> data);
227 int32_t GetData(uint32_t tokenId, PasteData &data, int32_t &syncTime);
230 int32_t GetLocalData(const AppInfo &appInfo, PasteData &data);
231 int32_t GetRemoteData(int32_t userId, const Event &event, PasteData &data, int32_t &syncTime);
232 int32_t GetRemotePasteData(int32_t userId, const Event &event, PasteData &data, int32_t &syncTime);
233 int64_t GetFileSize(PasteData &data);
234 bool GetDelayPasteRecord(const AppInfo &appInfo, PasteData &data);
[all...]
/third_party/ffmpeg/libavcodec/
H A Dencode.c43 av_assert0(!avpkt->data); in ff_alloc_packet()
47 avpkt->data = avctx->internal->byte_buffer; in ff_alloc_packet()
48 if (!avpkt->data) { in ff_alloc_packet()
64 if (avpkt->data || avpkt->buf) { in avcodec_default_get_encode_buffer()
65 av_log(avctx, AV_LOG_ERROR, "avpkt->{data,buf} != NULL in avcodec_default_get_encode_buffer()\n"); in avcodec_default_get_encode_buffer()
74 avpkt->data = avpkt->buf->data; in avcodec_default_get_encode_buffer()
86 av_assert0(!avpkt->data && !avpkt->buf); in ff_get_encode_buffer()
93 if (!avpkt->data || !avpkt->buf) { in ff_get_encode_buffer()
98 memset(avpkt->data in ff_get_encode_buffer()
[all...]
H A Dargo.c73 uint8_t *dst = frame->data[0]; in decode_avcf()
103 uint8_t *dst = frame->data[0]; in decode_alcd()
162 dst = frame->data[0]; in decode_mad1()
214 dst = frame->data[0] + mvx + l * mvy; in decode_mad1()
215 src = frame->data[0] + mx + l * my; in decode_mad1()
241 dst = frame->data[0]; in decode_mad1()
250 dst = frame->data[0]; in decode_mad1()
282 dst = frame->data[0]; in decode_mad1()
373 dst = (uint32_t *)frame->data[0]; in decode_mad1_24()
427 dst = (uint32_t *)frame->data[ in decode_mad1_24()
[all...]
/third_party/node/test/fixtures/wpt/common/security-features/resources/
H A Dcommon.sub.js392 return event.data;
405 // crossOrigin attribute is added to read the pixel data of the response.
417 const rgba = imgData.data;
453 // Remove trailing nulls from data.
481 return `data:text/javascript,
494 return `data:text/javascript,import '${url}';`;
514 .then(event => wrapResult(event.data));
525 .then(event => wrapResult(event.data));
582 return event.data;
630 .then(event => wrapResult(event.data));
[all...]
/third_party/mesa3d/src/gallium/auxiliary/rbug/
H A Drbug_context.c32 * rbug_demarshal_* demarshal data in the wire protocol.
494 uint8_t *data = NULL; in rbug_demarshal_context_info() local
504 data = (uint8_t*)&header[1]; in rbug_demarshal_context_info()
521 uint8_t *data = NULL; in rbug_demarshal_context_draw_block() local
531 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_block()
549 uint8_t *data = NULL; in rbug_demarshal_context_draw_step() local
559 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_step()
577 uint8_t *data = NULL; in rbug_demarshal_context_draw_unblock() local
587 data = (uint8_t*)&header[1]; in rbug_demarshal_context_draw_unblock()
605 uint8_t *data in rbug_demarshal_context_draw_rule() local
637 uint8_t *data = NULL; rbug_demarshal_context_flush() local
664 uint8_t *data = NULL; rbug_demarshal_context_list_reply() local
692 uint8_t *data = NULL; rbug_demarshal_context_info_reply() local
726 uint8_t *data = NULL; rbug_demarshal_context_draw_blocked() local
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_buffer_common.c283 void *data, struct r600_resource *staging, in r600_buffer_get_transfer()
300 return data; in r600_buffer_get_transfer()
324 uint8_t *data; in r600_buffer_transfer_map() local
327 if ((data = r600_compute_global_transfer_map(ctx, resource, level, usage, box, ptransfer))) in r600_buffer_transfer_map()
328 return data; in r600_buffer_transfer_map()
398 (void**)&data); in r600_buffer_transfer_map()
401 data += box->x % R600_MAP_BUFFER_ALIGNMENT; in r600_buffer_transfer_map()
403 ptransfer, data, staging, offset); in r600_buffer_transfer_map()
431 data = r600_buffer_map_sync_with_rings(rctx, staging, in r600_buffer_transfer_map()
433 if (!data) { in r600_buffer_transfer_map()
278 r600_buffer_get_transfer(struct pipe_context *ctx, struct pipe_resource *resource, unsigned usage, const struct pipe_box *box, struct pipe_transfer **ptransfer, void *data, struct r600_resource *staging, unsigned offset) r600_buffer_get_transfer() argument
525 r600_buffer_subdata(struct pipe_context *ctx, struct pipe_resource *buffer, unsigned usage, unsigned offset, unsigned size, const void *data) r600_buffer_subdata() argument
[all...]
/third_party/skia/src/ports/
H A DSkFontMgr_android.cpp79 sk_sp<SkData> data(SkData::MakeFromFILE(fFile)); in makeStream()
80 return data ? std::make_unique<SkMemoryStream>(std::move(data)) : nullptr; in makeStream()
101 std::unique_ptr<SkFontData> data = this->cloneFontData(args); variable
102 if (!data) {
108 data->getAxis(),
109 data->getAxisCount(),
129 SkTypeface_AndroidStream(std::unique_ptr<SkFontData> data, in SkTypeface_AndroidStream() argument
134 , fData(std::move(data)) in SkTypeface_AndroidStream()
154 std::unique_ptr<SkFontData> data variable
451 auto data = std::make_unique<SkFontData>(std::move(stream), ttcIndex, nullptr, 0); global() variable
473 auto data = std::make_unique<SkFontData>(std::move(stream), args.getCollectionIndex(), global() variable
[all...]
/third_party/skia/third_party/externals/d3d12allocator/src/
H A DCommon.h195 mat4(const float* data) : in mat4()
196 _11(data[ 0]), _12(data[ 1]), _13(data[ 2]), _14(data[ 3]), in mat4()
197 _21(data[ 4]), _22(data[ 5]), _23(data[ 6]), _24(data[ 7]), in mat4()
198 _31(data[ in mat4()
[all...]
/third_party/pulseaudio/src/modules/
H A Dmodule-pipe-sink.c109 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in sink_process_msg() argument
117 *((int64_t*) data) = (int64_t)u->timestamp - (int64_t)now; in sink_process_msg()
130 *((int64_t*) data) = pa_bytes_to_usec(n, &u->sink->sample_spec); in sink_process_msg()
135 return pa_sink_process_msg(o, code, data, offset, chunk); in sink_process_msg()
153 /* Continuously dropping data (clear counter on entering suspended state. */ in sink_set_state_in_io_thread_cb()
155 pa_log_debug("Pipe-sink continuously dropping data - clear statistics (%zu -> 0 bytes dropped)", u->bytes_dropped); in sink_set_state_in_io_thread_cb()
204 pa_log("Failed to write data to FIFO: %s", pa_cstrerror(errno)); in pipe_sink_write()
293 pa_log("Failed to write data to FIFO: %s", pa_cstrerror(errno)); in process_render()
333 /* Render some data and write it to the fifo */ in thread_func_use_timing()
378 /* Render some data an in thread_func()
422 pa_sink_new_data data; pa__init() local
[all...]
/third_party/mbedtls/library/
H A Dssl_msg.c68 const unsigned char *data, in mbedtls_ct_hmac()
131 PSA_CHK(psa_hash_update(&operation, data, min_data_len)); in mbedtls_ct_hmac()
149 PSA_CHK(psa_hash_update(&operation, data + offset, 1)); in mbedtls_ct_hmac()
188 const unsigned char *data, in mbedtls_ct_hmac()
235 MD_CHK(mbedtls_md_update(ctx, data, min_data_len)); in mbedtls_ct_hmac()
252 MD_CHK(mbedtls_md_update(ctx, data + offset, 1)); in mbedtls_ct_hmac()
355 * sure we don't leak any plaintext data. */ in mbedtls_ssl_check_record()
642 * size of the additional data structure is calculated as:
691 * Moreover, the additional data involves the length of the TLS in ssl_extract_add_data_from_record()
706 * RFC 9146 uses a common pattern when constructing the data in ssl_extract_add_data_from_record()
64 mbedtls_ct_hmac(mbedtls_svc_key_id_t key, psa_algorithm_t mac_alg, const unsigned char *add_data, size_t add_data_len, const unsigned char *data, size_t data_len_secret, size_t min_data_len, size_t max_data_len, unsigned char *output) mbedtls_ct_hmac() argument
185 mbedtls_ct_hmac(mbedtls_md_context_t *ctx, const unsigned char *add_data, size_t add_data_len, const unsigned char *data, size_t data_len_secret, size_t min_data_len, size_t max_data_len, unsigned char *output) mbedtls_ct_hmac() argument
909 unsigned char *data; mbedtls_ssl_encrypt_buf() local
1494 unsigned char *data; mbedtls_ssl_decrypt_buf() local
[all...]
/base/security/device_auth/services/data_manager/src/
H A Ddata_manager.c301 if (!StringSet(&entry->name, group->name.data)) { in GenerateGroupEntryFromTlv()
305 if (!StringSet(&entry->id, group->id.data)) { in GenerateGroupEntryFromTlv()
309 if (!StringSet(&entry->userId, group->userId.data)) { in GenerateGroupEntryFromTlv()
313 if (!StringSet(&entry->sharedUserId, group->sharedUserId.data)) { in GenerateGroupEntryFromTlv()
317 if (!LoadStringVectorFromParcel(&entry->managers, &group->managers.data)) { in GenerateGroupEntryFromTlv()
321 if (!LoadStringVectorFromParcel(&entry->friends, &group->friends.data)) { in GenerateGroupEntryFromTlv()
325 entry->type = group->type.data; in GenerateGroupEntryFromTlv()
326 entry->visibility = group->visibility.data; in GenerateGroupEntryFromTlv()
327 entry->upgradeFlag = group->upgradeFlag.data; in GenerateGroupEntryFromTlv()
328 entry->expireTime = group->expireTime.data; in GenerateGroupEntryFromTlv()
[all...]
/third_party/alsa-lib/src/pcm/
H A Dpcm_ladspa.c77 LADSPA_Data **data; member
344 free(instance->input.data); in snd_pcm_ladspa_free_instances()
345 free(instance->output.data); in snd_pcm_ladspa_free_instances()
736 assert(instance->input.data == NULL); in snd_pcm_ladspa_allocate_memory()
738 assert(instance->output.data == NULL); in snd_pcm_ladspa_allocate_memory()
740 instance->input.data = calloc(instance->input.channels.size, sizeof(void *)); in snd_pcm_ladspa_allocate_memory()
742 instance->output.data = calloc(instance->output.channels.size, sizeof(void *)); in snd_pcm_ladspa_allocate_memory()
744 if (instance->input.data == NULL || in snd_pcm_ladspa_allocate_memory()
746 instance->output.data == NULL || in snd_pcm_ladspa_allocate_memory()
754 instance->input.data[id in snd_pcm_ladspa_allocate_memory()
862 LADSPA_Data *data; snd_pcm_ladspa_write_areas() local
923 LADSPA_Data *data; snd_pcm_ladspa_read_areas() local
[all...]
/third_party/node/tools/gyp/pylib/gyp/
H A Dinput.py50 # These per-process dictionaries are used to cache build file data when loading
223 def LoadOneBuildFile(build_file_path, data, aux_data, includes, is_target, check):
224 if build_file_path in data:
225 return data[build_file_path]
248 data[build_file_path] = build_file_data
256 build_file_data, build_file_path, data, aux_data, includes, check
260 build_file_data, build_file_path, data, aux_data, None, check
272 subdict, subdict_path, data, aux_data, includes, check
299 LoadOneBuildFile(include, data, aux_data, None, False, check),
307 LoadBuildFileIncludesIntoDict(v, subdict_path, data, aux_dat
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dinput.py50 # These per-process dictionaries are used to cache build file data when loading
223 def LoadOneBuildFile(build_file_path, data, aux_data, includes, is_target, check):
224 if build_file_path in data:
225 return data[build_file_path]
248 data[build_file_path] = build_file_data
256 build_file_data, build_file_path, data, aux_data, includes, check
260 build_file_data, build_file_path, data, aux_data, None, check
272 subdict, subdict_path, data, aux_data, includes, check
299 LoadOneBuildFile(include, data, aux_data, None, False, check),
307 LoadBuildFileIncludesIntoDict(v, subdict_path, data, aux_dat
[all...]
/third_party/skia/src/core/
H A DSkAAClip.cpp119 Iter(int y, const uint8_t* data, const YOffset* start, const YOffset* end) in Iter() argument
122 , fData(data + start->fOffset) in Iter()
130 const uint8_t* data() const { return fData; } in data() function in __anon18671::Iter
176 uint8_t* data() { in data() function
179 const uint8_t* data() const { in data() function
211 uint8_t* row = head->data(); in AllocRect()
229 return Iter(clip.getBounds().fTop, head->data(), head->yoffsets(), in Iterate()
299 SkTDArray<uint8_t>& data = *row->fData; in addRun() local
303 AppendRun(data, 0, gap); in addRun()
308 AppendRun(data, alph in addRun()
400 uint8_t* data = head->data(); finish() local
433 const SkTDArray<uint8_t>& data = *row.fData; dump() local
513 AppendRun(SkTDArray<uint8_t>& data, U8CPU alpha, int count) AppendRun() argument
[all...]
/foundation/arkui/ui_lite/frameworks/dock/
H A Dinput_device.cpp21 DeviceData data; in ProcessEvent() local
24 moreToRead = Read(data); in ProcessEvent()
25 DispatchEvent(data); in ProcessEvent()
/test/xts/acts/commonlibrary/ets_utils/worker_lib_standard/entry/src/ohosTest/ets/workers/
H A Dworker_0101.js20 let data = e.data; // 12
21 parentPort.postMessage(data * 2 + 1); // 25
H A Dworker_0131.js20 let data = e.data; // hello world
21 parentPort.postMessage(data + " worker"); // hello world worker
H A Dworker_0152.js20 let data = e.data;
21 parentPort.postMessage(data + 3); // 16
/test/xts/acts/commonlibrary/ets_utils/threadWorker_lib_standard/entry/src/ohosTest/ets/workers/
H A Dnewworker_0101.js20 let data = e.data; // 12
21 parentPort.postMessage(data * 2 + 1); // 25
H A Dnewworker_0131.js20 let data = e.data; // hello world
21 parentPort.postMessage(data + " worker"); // hello world worker
H A Dnewworker_0152.js20 let data = e.data;
21 parentPort.postMessage(data + 3); // 16

Completed in 30 milliseconds

1...<<411412413414415416417418419420>>...1386