Home
last modified time | relevance | path

Searched refs:data (Results 3401 - 3425 of 26312) sorted by relevance

1...<<131132133134135136137138139140>>...1053

/foundation/multimedia/av_session/services/session/server/softbus/
H A Dsoftbus_distributed_data_manager.cpp62 void SoftbusDistributedDataManager::MessageReceived(int32_t socket, const std::string &data) in MessageReceived() argument
69 OnMessageHandleReceived(socket, data); in MessageReceived()
73 void SoftbusDistributedDataManager::BytesReceived(int32_t socket, const std::string &data) in BytesReceived() argument
80 OnBytesServerReceived(data); in BytesReceived()
145 void SoftbusDistributedDataManager::OnMessageHandleReceived(int32_t socket, const std::string &data) in OnMessageHandleReceived() argument
150 if (data.length() > 1 && data[0] == MESSAGE_CODE_CONNECT_SERVER) { in OnMessageHandleReceived()
152 auto iter = serverMap_.find(data[1]); in OnMessageHandleReceived()
161 void SoftbusDistributedDataManager::OnBytesServerReceived(const std::string &data) in OnBytesServerReceived() argument
166 if (data in OnBytesServerReceived()
[all...]
/foundation/communication/bluetooth_service/services/bluetooth/service/src/pan/
H A Dpan_bnep.h70 * @brief This function used to send data to remote device.
72 * @param length The data length.
73 * @param pkt The send data.
209 * @param pkt message data
231 void BnepRecvDataCallbackTask(uint16_t lcid, uint8_t *data, int dataLength);
235 int ProcessBnepControlData(uint8_t *data, int dataLength, bool isExtension);
236 int ProcessBnepExtensionData(uint8_t *data, int dataLength);
237 int ProcessBnepControlCommandNotUnderstood(uint8_t *data, int dataLength);
238 int ProcessBnepSetupConnectionRequest(uint8_t *data, int dataLength);
239 int ProcessBnepSetupConnectionResponse(uint8_t *data, in
[all...]
/third_party/backends/backend/
H A Dhp-option.h206 hp_bool_t (*enable)(HpChoice this, HpOptSet optset, HpData data,
269 HpData data, const HpDeviceInfo *info);
272 SANE_Status sanei_hp_optset_download (HpOptSet this, HpData data, HpScsi scsi);
273 SANE_Status sanei_hp_optset_control (HpOptSet this, HpData data,
277 SANE_Status sanei_hp_optset_guessParameters (HpOptSet this, HpData data,
279 enum hp_scanmode_e sanei_hp_optset_scanmode (HpOptSet this, HpData data);
280 hp_bool_t sanei_hp_optset_output_8bit (HpOptSet this, HpData data);
281 int sanei_hp_optset_data_width (HpOptSet this, HpData data);
283 hp_bool_t sanei_hp_optset_mirror_vert (HpOptSet this, HpData data, HpScsi scsi);
284 hp_bool_t sanei_hp_optset_start_wait(HpOptSet this, HpData data);
[all...]
/third_party/mbedtls/scripts/
H A Dgenerate_psa_constants.py314 data = {}
315 data['status_cases'] = self._make_status_cases()
316 data['ecc_curve_cases'] = self._make_ecc_curve_cases()
317 data['dh_group_cases'] = self._make_dh_group_cases()
318 data['key_type_cases'] = self._make_key_type_cases()
319 data['key_type_code'] = (self._make_ecc_key_type_code() +
321 data['hash_algorithm_cases'] = self._make_hash_algorithm_cases()
322 data['ka_algorithm_cases'] = self._make_ka_algorithm_cases()
323 data['algorithm_cases'] = self._make_algorithm_cases()
324 data['algorithm_cod
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dshader_cache.cpp36 * such as SSO, attribute bindings, frag data bindings, etc.
100 static const char zero[sizeof(prog->data->sha1)] = {0}; in shader_cache_write_program_metadata()
101 if (memcmp(prog->data->sha1, zero, sizeof(prog->data->sha1)) == 0) in shader_cache_write_program_metadata()
131 disk_cache_put(cache, prog->data->sha1, metadata.data, metadata.size, in shader_cache_write_program_metadata()
136 _mesa_sha1_format(sha1_buf, prog->data->sha1); in shader_cache_write_program_metadata()
152 if (prog->Name == 0 || prog->data->spirv) in shader_cache_read_program_metadata()
211 disk_cache_compute_key(cache, buf, strlen(buf), prog->data->sha1); in shader_cache_read_program_metadata()
215 uint8_t *buffer = (uint8_t *) disk_cache_get(cache, prog->data in shader_cache_read_program_metadata()
[all...]
/third_party/node/src/inspector/
H A Dnode_string.cc20 simdutf::utf16_length_from_utf8(string.data(), string.length()); in builderAppendQuotedString()
24 string.data(), string.length(), buffer.out()); in builderAppendQuotedString()
41 simdutf::utf16_length_from_utf8(string.data(), string.length()); in parseJSON()
45 string.data(), string.length(), buffer.out()); in parseJSON()
105 reinterpret_cast<const uint8_t*>(message.data()), in parseMessage()
116 return std::string(reinterpret_cast<const char*>(message.data()), in binaryToMessage()
120 String fromUTF8(const uint8_t* data, size_t length) { in fromUTF8() argument
121 return std::string(reinterpret_cast<const char*>(data), length); in fromUTF8()
124 String fromUTF16(const uint16_t* data, size_t length) { in fromUTF16() argument
125 auto casted_data = reinterpret_cast<const char16_t*>(data); in fromUTF16()
[all...]
/third_party/node/test/parallel/
H A Dtest-http-generic-streams.js23 res.on('data', common.mustCall((data) => {
24 assert.strictEqual(data, testData);
49 res.on('data', common.mustCall((data) => {
50 assert.strictEqual(data, testData);
69 req.on('data', common.mustCall(function test3_req_data(data) {
70 assert.strictEqual(data, testData);
91 res.on('data', commo
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dhash_composite_inc.h59 size_t input_size, const uint8_t* BROTLI_RESTRICT data) { in Prepare()
68 FN_A(Prepare)(&self->ha, one_shot, input_size, data); in Prepare()
69 FN_B(Prepare)(&self->hb, one_shot, input_size, data); in Prepare()
80 const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) { in Store()
81 FN_A(Store)(&self->ha, data, mask, ix); in Store()
82 FN_B(Store)(&self->hb, data, mask, ix); in Store()
86 HashComposite* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, in StoreRange()
89 FN_A(StoreRange)(&self->ha, data, mask, ix_start, ix_end); in StoreRange()
90 FN_B(StoreRange)(&self->hb, data, mask, ix_start, ix_end); in StoreRange()
112 const uint8_t* BROTLI_RESTRICT data, cons in FindLongestMatch()
57 Prepare( HashComposite* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, size_t input_size, const uint8_t* BROTLI_RESTRICT data) Prepare() argument
79 Store(HashComposite* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) Store() argument
85 StoreRange( HashComposite* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix_start, const size_t ix_end) StoreRange() argument
109 FindLongestMatch( HashComposite* BROTLI_RESTRICT self, const BrotliEncoderDictionary* dictionary, const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask, const int* BROTLI_RESTRICT distance_cache, const size_t cur_ix, const size_t max_length, const size_t max_backward, const size_t dictionary_distance, const size_t max_distance, HasherSearchResult* BROTLI_RESTRICT out) FindLongestMatch() argument
[all...]
/third_party/node/deps/openssl/openssl/include/crypto/
H A Dmd32_common.h33 * HASH_LONG data[HASH_LBLOCK];
34 * unsigned char data[HASH_CBLOCK];
39 * data[] vector is expected to be zeroed upon first call to
49 * message in original (data) byte order, implemented externally.
130 const unsigned char *data = data_; in HASH_UPDATE() local
147 p = (unsigned char *)c->data; in HASH_UPDATE()
150 memcpy(p + n, data, HASH_CBLOCK - n); in HASH_UPDATE()
153 data += n; in HASH_UPDATE()
164 memcpy(p + n, data, len); in HASH_UPDATE()
172 HASH_BLOCK_DATA_ORDER(c, data, in HASH_UPDATE()
186 HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data) HASH_TRANSFORM() argument
[all...]
/third_party/node/deps/undici/src/node_modules/@fastify/busboy/lib/types/
H A Durlencoded.js44 UrlEncoded.prototype.write = function (data, cb) {
53 let idxeq; let idxamp; let i; let p = 0; const len = data.length
60 if (data[i] === 0x3D/* = */) {
63 } else if (data[i] === 0x26/* & */) {
75 if (idxeq > p) { this._key += this.decoder.write(data.toString('binary', p, idxeq)) }
90 if (idxamp > p) { key = (this._key += this.decoder.write(data.toString('binary', p, idxamp))) } else { key = this._key }
110 if (i > p) { this._key += this.decoder.write(data.toString('binary', p, i)) }
118 if (p < len) { this._key += this.decoder.write(data.toString('binary', p)) }
125 if (data[i] === 0x26/* & */) {
137 if (idxamp > p) { this._val += this.decoder.write(data
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DBlobCache.cpp51 int zResult = zlib_internal::GzipCompressHelper(compressedData->data(), &expectedCompressedSize, in CompressBlobCacheData()
56 ERR() << "Failed to compress cache data: " << zResult; in CompressBlobCacheData()
86 uncompressedData->data(), &destLen, compressedData, static_cast<uLong>(compressedSize)); in DecompressBlobCacheData()
90 ERR() << "Failed to decompress data: " << zResult << "\n"; in DecompressBlobCacheData()
114 mSetBlobFunc(key.data(), key.size(), value.data(), value.size()); in put()
127 mSetBlobFunc(key.data(), key.size(), value.data(), value.size()); in putApplication()
149 EGLsizeiANDROID valueSize = mGetBlobFunc(key.data(), key.size(), nullptr, 0); in get()
164 valueSize = mGetBlobFunc(key.data(), ke in get()
[all...]
/third_party/openssl/include/crypto/
H A Dmd32_common.h33 * HASH_LONG data[HASH_LBLOCK];
34 * unsigned char data[HASH_CBLOCK];
39 * data[] vector is expected to be zeroed upon first call to
49 * message in original (data) byte order, implemented externally.
130 const unsigned char *data = data_; in HASH_UPDATE() local
147 p = (unsigned char *)c->data; in HASH_UPDATE()
150 memcpy(p + n, data, HASH_CBLOCK - n); in HASH_UPDATE()
153 data += n; in HASH_UPDATE()
164 memcpy(p + n, data, len); in HASH_UPDATE()
172 HASH_BLOCK_DATA_ORDER(c, data, in HASH_UPDATE()
186 HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data) HASH_TRANSFORM() argument
[all...]
/third_party/openssl/ohos_lite/include/crypto/
H A Dmd32_common.h33 * HASH_LONG data[HASH_LBLOCK];
34 * unsigned char data[HASH_CBLOCK];
39 * data[] vector is expected to be zeroed upon first call to
49 * message in original (data) byte order, implemented externally.
130 const unsigned char *data = data_; in HASH_UPDATE() local
147 p = (unsigned char *)c->data; in HASH_UPDATE()
150 memcpy(p + n, data, HASH_CBLOCK - n); in HASH_UPDATE()
153 data += n; in HASH_UPDATE()
164 memcpy(p + n, data, len); in HASH_UPDATE()
172 HASH_BLOCK_DATA_ORDER(c, data, in HASH_UPDATE()
186 HASH_TRANSFORM(HASH_CTX *c, const unsigned char *data) HASH_TRANSFORM() argument
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dhash_composite_inc.h59 size_t input_size, const uint8_t* BROTLI_RESTRICT data) { in Prepare()
68 FN_A(Prepare)(&self->ha, one_shot, input_size, data); in Prepare()
69 FN_B(Prepare)(&self->hb, one_shot, input_size, data); in Prepare()
80 const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) { in Store()
81 FN_A(Store)(&self->ha, data, mask, ix); in Store()
82 FN_B(Store)(&self->hb, data, mask, ix); in Store()
86 HashComposite* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, in StoreRange()
89 FN_A(StoreRange)(&self->ha, data, mask, ix_start, ix_end); in StoreRange()
90 FN_B(StoreRange)(&self->hb, data, mask, ix_start, ix_end); in StoreRange()
112 const uint8_t* BROTLI_RESTRICT data, cons in FindLongestMatch()
57 Prepare( HashComposite* BROTLI_RESTRICT self, BROTLI_BOOL one_shot, size_t input_size, const uint8_t* BROTLI_RESTRICT data) Prepare() argument
79 Store(HashComposite* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) Store() argument
85 StoreRange( HashComposite* BROTLI_RESTRICT self, const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix_start, const size_t ix_end) StoreRange() argument
109 FindLongestMatch( HashComposite* BROTLI_RESTRICT self, const BrotliEncoderDictionary* dictionary, const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask, const int* BROTLI_RESTRICT distance_cache, const size_t cur_ix, const size_t max_length, const size_t max_backward, const size_t dictionary_distance, const size_t max_distance, HasherSearchResult* BROTLI_RESTRICT out) FindLongestMatch() argument
[all...]
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/
H A Dutil.cc26 bool WriteBinary(const std::string& path, const uint8_t* data, size_t size) { in WriteBinary() argument
28 return spv && spv.write(reinterpret_cast<const char*>(data), in WriteBinary()
36 const uint8_t* data, in LogError()
45 WriteBinary(prefix + ".spv", data, size); in LogError()
83 const uint8_t* data, in LogWgslError()
106 error_dir.empty() ? nullptr : &error_path, data, size, &wgsl); in LogWgslError()
110 const uint8_t* data, in LogSpvError()
116 error_dir.empty() ? nullptr : &error_path, data, size, nullptr); in LogSpvError()
140 if (!file.read(binary.data(), size)) { in ReadBinary()
145 std::memcpy(out->data(), binar in ReadBinary()
32 LogError(uint32_t index, const std::string& type, const std::string& message, const std::string* path, const uint8_t* data, size_t size, const std::string* wgsl) LogError() argument
82 LogWgslError(const std::string& message, const uint8_t* data, size_t size, const std::string& wgsl, OutputFormat output_format, const std::string& error_dir) LogWgslError() argument
109 LogSpvError(const std::string& message, const uint8_t* data, size_t size, const std::string& error_dir) LogSpvError() argument
[all...]
/third_party/protobuf/php/tests/
H A Dmemory_leak_test.php68 $data = $from->serializeToString(); variable
71 $to->mergeFromString($data);
78 $data = $from->serializeToString(); variable
80 $to->mergeFromString($data);
97 $data = $m->serializeToString(); variable
99 $n->mergeFromString($data);
107 $data = $m->serializeToString(); variable
109 $n->mergeFromString($data);
117 $data = $m->serializeToString(); variable
119 $n->mergeFromString($data);
129 $data = $m->serializeToString(); global() variable
[all...]
/foundation/multimedia/camera_framework/frameworks/native/camera/src/output/
H A Dmetadata_output.cpp147 if (item.data.u8[index] == OHOS_CAMERA_FACE_DETECT_MODE_SIMPLE) { in GetSupportedMetadataObjectTypes()
416 MetadataObjectType typeFromHal = static_cast<MetadataObjectType>(metadataItem.data.i32[index]); in GenerateObjects()
477 ->SetObjectId(metadataItem.data.i32[index]); in ProcessBaseInfo()
479 factoryPtr->SetTimestamp(metadataItem.data.i32[index]); in ProcessBaseInfo()
481 factoryPtr->SetBox(ProcessRectBox(metadataItem.data.i32[index], metadataItem.data.i32[index + offsetOne], in ProcessBaseInfo()
482 metadataItem.data.i32[index + offsetTwo], in ProcessBaseInfo()
483 metadataItem.data.i32[index + offsetThree], isNeedMirror, isNeedFlip)); in ProcessBaseInfo()
485 factoryPtr->SetConfidence(metadataItem.data.i32[index]); in ProcessBaseInfo()
487 int32_t externalLength = metadataItem.data in ProcessBaseInfo()
[all...]
/third_party/ffmpeg/libavutil/
H A Dframe.c69 frame->extended_data = frame->data; in get_frame_defaults()
172 if ((ret = av_image_fill_pointers(frame->data, frame->format, padded_height, in get_video_buffer()
173 frame->buf[0]->data, frame->linesize)) < 0) in get_video_buffer()
177 if (frame->data[i]) in get_video_buffer()
178 frame->data[i] += i * plane_padding; in get_video_buffer()
181 frame->extended_data = frame->data; in get_video_buffer()
232 frame->extended_data = frame->data; in get_audio_buffer()
240 frame->extended_data[i] = frame->data[i] = frame->buf[i]->data; in get_audio_buffer()
248 frame->extended_data[i + AV_NUM_DATA_POINTERS] = frame->extended_buf[i]->data; in get_audio_buffer()
603 uint8_t *data; av_frame_get_plane_buffer() local
[all...]
/third_party/icu/icu4c/source/common/
H A Dlstmbe.cpp77 * copy the data.
83 ConstArray1D(const float* data, int32_t d1) : data_(data), d1_(d1) {} in ConstArray1D() argument
87 // Init the object, the object does not own the data nor copy.
88 // It is designed to directly use data from memory mapped resources.
89 void init(const int32_t* data, int32_t d1) { in init() argument
91 data_ = reinterpret_cast<const float*>(data); in init()
113 * copy the data.
119 ConstArray2D(const float* data, int32_t d1, int32_t d2)
120 : data_(data), d1
748 createVectorizer(const LSTMData* data, UErrorCode &status) createVectorizer() argument
765 LSTMBreakEngine(const LSTMData* data, const UnicodeSet& set, UErrorCode &status) LSTMBreakEngine() argument
816 CreateLSTMBreakEngine(UScriptCode script, const LSTMData* data, UErrorCode& status) CreateLSTMBreakEngine() argument
844 DeleteLSTMData(const LSTMData* data) DeleteLSTMData() argument
849 LSTMDataName(const LSTMData* data) LSTMDataName() argument
[all...]
/third_party/node/src/crypto/
H A Dcrypto_sig.cc179 const unsigned char* sig_data = signature.data<unsigned char>(); in ValidateDSAParameters()
182 memset(out.data<void>(), 0, n * 2); in ValidateDSAParameters()
184 if (!ExtractP1363(sig_data, out.data<unsigned char>(), signature.size(), n)) in ValidateDSAParameters()
197 const unsigned char* sig_data = out.data<unsigned char>(); in ValidateDSAParameters()
212 unsigned char* data = nullptr; in ValidateDSAParameters() local
213 int len = i2d_ECDSA_SIG(asn1_sig.get(), &data); in ValidateDSAParameters()
218 CHECK_NOT_NULL(data); in ValidateDSAParameters()
220 return ByteSource::Allocated(data, len); in ValidateDSAParameters()
310 SignBase::Error SignBase::Update(const char* data, size_t len) { in Update() argument
313 if (!EVP_DigestUpdate(mdctx_.get(), data, le in Update()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dlstmbe.cpp77 * copy the data.
83 ConstArray1D(const float* data, int32_t d1) : data_(data), d1_(d1) {} in ConstArray1D() argument
87 // Init the object, the object does not own the data nor copy.
88 // It is designed to directly use data from memory mapped resources.
89 void init(const int32_t* data, int32_t d1) { in init() argument
91 data_ = reinterpret_cast<const float*>(data); in init()
113 * copy the data.
119 ConstArray2D(const float* data, int32_t d1, int32_t d2)
120 : data_(data), d1
748 createVectorizer(const LSTMData* data, UErrorCode &status) createVectorizer() argument
765 LSTMBreakEngine(const LSTMData* data, const UnicodeSet& set, UErrorCode &status) LSTMBreakEngine() argument
816 CreateLSTMBreakEngine(UScriptCode script, const LSTMData* data, UErrorCode& status) CreateLSTMBreakEngine() argument
844 DeleteLSTMData(const LSTMData* data) DeleteLSTMData() argument
849 LSTMDataName(const LSTMData* data) LSTMDataName() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_common.c275 union wps_event_data data; in wps_fail_event() local
280 os_memset(&data, 0, sizeof(data)); in wps_fail_event()
281 data.fail.msg = msg; in wps_fail_event()
282 data.fail.config_error = config_error; in wps_fail_event()
283 data.fail.error_indication = error_indication; in wps_fail_event()
284 os_memcpy(data.fail.peer_macaddr, mac_addr, ETH_ALEN); in wps_fail_event()
285 wps->event_cb(wps->cb_ctx, WPS_EV_FAIL, &data); in wps_fail_event()
291 union wps_event_data data; in wps_success_event() local
296 os_memset(&data, in wps_success_event()
305 union wps_event_data data; wps_pwd_auth_fail_event() local
359 struct wps_data data; wps_get_oob_cred() local
416 struct wpabuf *data; wps_build_nfc_pw_token() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_common.c275 union wps_event_data data; in wps_fail_event() local
280 os_memset(&data, 0, sizeof(data)); in wps_fail_event()
281 data.fail.msg = msg; in wps_fail_event()
282 data.fail.config_error = config_error; in wps_fail_event()
283 data.fail.error_indication = error_indication; in wps_fail_event()
284 os_memcpy(data.fail.peer_macaddr, mac_addr, ETH_ALEN); in wps_fail_event()
285 wps->event_cb(wps->cb_ctx, WPS_EV_FAIL, &data); in wps_fail_event()
291 union wps_event_data data; in wps_success_event() local
296 os_memset(&data, in wps_success_event()
305 union wps_event_data data; wps_pwd_auth_fail_event() local
359 struct wps_data data; wps_get_oob_cred() local
416 struct wpabuf *data; wps_build_nfc_pw_token() local
[all...]
/third_party/vk-gl-cts/modules/gles31/functional/
H A Des31fNegativeShaderApiTests.cpp204 ctx.beginSection("GL_INVALID_VALUE is generated if the data pointed to by binary does not match the format specified by binaryFormat."); in shader_binary()
205 const GLbyte data = 0x005F; in shader_binary() local
206 ctx.glShaderBinary(1, &shaders[0], binaryFormats[0], &data, 1); in shader_binary()
210 ctx.beginSection("GL_INVALID_OPERATION is generated if more than one of the handles in shaders refers to the same type of shader, or GL_INVALID_VALUE due to invalid data pointer."); in shader_binary()
854 // Shader data commands
1096 std::vector<GLfloat> data(4); in uniformfv_invalid_program()
1100 ctx.glUniform1fv(-1, 1, &data[0]); in uniformfv_invalid_program()
1102 ctx.glUniform2fv(-1, 1, &data[0]); in uniformfv_invalid_program()
1104 ctx.glUniform3fv(-1, 1, &data[0]); in uniformfv_invalid_program()
1106 ctx.glUniform4fv(-1, 1, &data[ in uniformfv_invalid_program()
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_vectorscope.c296 uint16_t *dpd = s->mode == COLOR || !s->is_yuv ? (uint16_t *)out->data[s->pd] : (uint16_t *)out->data[0]; in envelope_instant16()
317 uint16_t *dpd = s->mode == COLOR || !s->is_yuv ? (uint16_t *)out->data[s->pd] : (uint16_t *)out->data[0]; in envelope_peak16()
348 uint8_t *dpd = s->mode == COLOR || !s->is_yuv ? out->data[s->pd] : out->data[0]; in envelope_instant()
368 uint8_t *dpd = s->mode == COLOR || !s->is_yuv ? out->data[s->pd] : out->data[0]; in envelope_peak()
419 const uint16_t * const *src = (const uint16_t * const *)in->data; in vectorscope16()
433 uint16_t **dst = (uint16_t **)out->data; in vectorscope16()
[all...]

Completed in 20 milliseconds

1...<<131132133134135136137138139140>>...1053