Home
last modified time | relevance | path

Searched refs:data (Results 3126 - 3150 of 17044) sorted by relevance

1...<<121122123124125126127128129130>>...682

/third_party/skia/gm/
H A Dexoticformats.cpp69 // the texture data. in load_ktx()
86 if (glType != 0 || glFormat != 0) { // only care about compressed data for now in load_ktx()
89 SkASSERT(glTypeSize == 1); // required for compressed data in load_ktx()
140 sk_sp<SkData> data = SkData::MakeUninitialized(dataSize); in load_ktx() local
142 uint8_t* dest = (uint8_t*) data->writable_data(); in load_ktx()
162 return data; in load_ktx()
294 sk_sp<SkData> data = SkData::MakeUninitialized(dataSize); in load_dds() local
296 uint8_t* dest = (uint8_t*) data->writable_data(); in load_dds()
303 return data; in load_dds()
307 static sk_sp<SkImage> data_to_img(GrDirectContext *direct, sk_sp<SkData> data, in data_to_img() argument
347 sk_sp<SkData> data = load_ktx(GetResourcePath("images/flower-etc1.ktx").c_str(), &info); loadImages() local
362 sk_sp<SkData> data = load_dds(GetResourcePath("images/flower-bc1.dds").c_str(), &info); loadImages() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DResourceManager11.cpp158 desc->get(), desc->size(), initData->data(), static_cast<UINT>(initData->size()), in CreateResource()
462 ERR() << "Failed to allocate D3D texture initialization data."; in createInitDataIfNeeded()
481 D3D11_SUBRESOURCE_DATA *data = &mShadowInitData[subresourceIndex]; in createInitDataIfNeeded() local
486 data->SysMemPitch = levelWidth * formatSizeInfo.pixelBytes; in createInitDataIfNeeded()
487 data->SysMemSlicePitch = data->SysMemPitch * levelHeight; in createInitDataIfNeeded()
488 data->pSysMem = mZeroMemory.data(); in createInitDataIfNeeded()
492 return mShadowInitData.data(); in createInitDataIfNeeded()
512 ERR() << "Failed to allocate D3D texture initialization data in createInitDataIfNeeded()
529 D3D11_SUBRESOURCE_DATA *data = &mShadowInitData[subresourceIndex]; createInitDataIfNeeded() local
[all...]
/third_party/libwebsockets/lib/roles/http/
H A Dparsers.c50 ah->data = lws_malloc(data_size, "ah data"); in _lws_create_ah()
51 if (!ah->data) { in _lws_create_ah()
77 if (ah->data) in _lws_destroy_ah()
78 lws_free(ah->data); in _lws_destroy_ah()
91 /* init the ah to reflect no headers or data have appeared yet */ in _lws_header_table_reset()
525 memcpy(dst, wsi->http.ah->data + wsi->http.ah->frags[f].offset, in lws_hdr_copy_fragment()
556 &wsi->http.ah->data[ in lws_hdr_copy()
563 strncpy(dst, &wsi->http.ah->data[wsi->http.ah->frags[n].offset], in lws_hdr_copy()
610 (uint8_t *)&wsi->http.ah->data[l in lws_hdr_custom_length()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsSizeControlTests.cpp134 const deUint32* data = reinterpret_cast<const deUint32*>(datas[0]); in checkVertexPipelineStages() local
138 if (data[i] > subgroupSizeControlProperties.maxSubgroupSize || in checkVertexPipelineStages()
139 data[i] < subgroupSizeControlProperties.minSubgroupSize) in checkVertexPipelineStages()
141 log << TestLog::Message << "gl_SubgroupSize (" << data[i] << ") value is outside limits (" << subgroupSizeControlProperties.minSubgroupSize << ", " << subgroupSizeControlProperties.maxSubgroupSize << ")" << TestLog::EndMessage; in checkVertexPipelineStages()
146 if (checkInternalData->isRequiredSubgroupSize && data[i] != checkInternalData->requiredSubgroupSize) in checkVertexPipelineStages()
148 log << TestLog::Message << "gl_SubgroupSize (" << data[i] << ") is not equal to the required subgroup size value (" << checkInternalData->requiredSubgroupSize << ")" << TestLog::EndMessage; in checkVertexPipelineStages()
171 const deUint32* data = reinterpret_cast<const deUint32*>(datas[0]); in checkFragmentPipelineStages() local
179 if (data[ndx] > subgroupSizeControlProperties.maxSubgroupSize || in checkFragmentPipelineStages()
180 data[ndx] < subgroupSizeControlProperties.minSubgroupSize) in checkFragmentPipelineStages()
182 log << TestLog::Message << "gl_SubgroupSize (" << data[nd in checkFragmentPipelineStages()
216 const deUint32* data = reinterpret_cast<const deUint32*>(datas[0]); checkCompute() local
259 const UVec4* data = reinterpret_cast<const UVec4*>(datas[0]); checkComputeRequireFull() local
[all...]
/third_party/python/Modules/_decimal/libmpdec/
H A Dio.c95 string_to_coeff(mpd_uint_t *data, const char *s, const char *dpoint, int r, in string_to_coeff() argument
101 data[--len] = 0; in string_to_coeff()
104 data[len] = 10 * data[len] + (*s - '0'); in string_to_coeff()
109 data[len] = 0; in string_to_coeff()
112 data[len] = 10 * data[len] + (*s - '0'); in string_to_coeff()
318 string_to_coeff(dec->data, coeff, dpoint, (int)r, len); in mpd_qset_string()
409 x = dec->data[i]; in coeff_to_string()
430 x = dec->data[ in coeff_to_string_dot()
921 char *data; global() member
[all...]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dlexer.cc58 len_(static_cast<uint32_t>(content->data.size())), in Lexer()
138 return content_->data.substr(pos, substr.size()) == substr; in matches()
144 while (!is_eof() && is_whitespace(content_->data[pos_])) { in skip_whitespace_and_comments()
234 while (end < len_ && is_digit(content_->data[end])) { in try_float()
245 while (end < len_ && is_digit(content_->data[end])) { in try_float()
262 while (end < len_ && isdigit(content_->data[end])) { in try_float()
269 const auto str = content_->data.substr(start, end - start); in try_float()
287 const auto str = content_->data.substr(start, end - start); in try_float()
294 auto res = strtod(content_->data.c_str() + start, nullptr); in try_float()
385 while (end < len_ && is_hex(content_->data[en in try_hex_float()
[all...]
/third_party/toybox/kconfig/
H A Dexpr.c1016 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken) in expr_print() argument
1019 fn(data, NULL, "y"); in expr_print()
1024 fn(data, NULL, "("); in expr_print()
1028 fn(data, e->left.sym, e->left.sym->name); in expr_print()
1030 fn(data, NULL, "<choice>"); in expr_print()
1033 fn(data, NULL, "!"); in expr_print()
1034 expr_print(e->left.expr, fn, data, E_NOT); in expr_print()
1037 fn(data, e->left.sym, e->left.sym->name); in expr_print()
1038 fn(data, NULL, "="); in expr_print()
1039 fn(data, in expr_print()
1082 expr_print_file_helper(void *data, struct symbol *sym, const char *str) expr_print_file_helper() argument
1092 expr_print_gstr_helper(void *data, struct symbol *sym, const char *str) expr_print_gstr_helper() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/
H A DvktSubgroupsSizeControlTests.cpp132 const deUint32* data = reinterpret_cast<const deUint32*>(datas[0]); in checkVertexPipelineStages() local
136 if (data[i] > subgroupSizeControlProperties.maxSubgroupSize || in checkVertexPipelineStages()
137 data[i] < subgroupSizeControlProperties.minSubgroupSize) in checkVertexPipelineStages()
139 log << TestLog::Message << "gl_SubgroupSize (" << data[i] << ") value is outside limits (" << subgroupSizeControlProperties.minSubgroupSize << ", " << subgroupSizeControlProperties.maxSubgroupSize << ")" << TestLog::EndMessage; in checkVertexPipelineStages()
144 if (checkInternalData->caseDef.requiredSubgroupSizeMode != REQUIRED_SUBGROUP_SIZE_NONE && data[i] != checkInternalData->requiredSubgroupSize) in checkVertexPipelineStages()
146 log << TestLog::Message << "gl_SubgroupSize (" << data[i] << ") is not equal to the required subgroup size value (" << checkInternalData->requiredSubgroupSize << ")" << TestLog::EndMessage; in checkVertexPipelineStages()
169 const deUint32* data = reinterpret_cast<const deUint32*>(datas[0]); in checkFragmentPipelineStages() local
177 if (data[ndx] > subgroupSizeControlProperties.maxSubgroupSize || in checkFragmentPipelineStages()
178 data[ndx] < subgroupSizeControlProperties.minSubgroupSize) in checkFragmentPipelineStages()
180 log << TestLog::Message << "gl_SubgroupSize (" << data[nd in checkFragmentPipelineStages()
215 const deUint32* data = reinterpret_cast<const deUint32*>(datas[0]); checkCompute() local
259 const UVec4* data = reinterpret_cast<const UVec4*>(datas[0]); checkComputeRequireFull() 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...]
/third_party/pulseaudio/src/modules/alsa/
H A Dalsa-sink.c655 * ask for more data from the clients then they expect. We in mmap_write()
672 pa_log(_("ALSA woke us up to write new data to the device, but there was actually nothing to write.\n" in mmap_write()
849 * ask for more data from the clients then they expect. We in unix_write()
862 pa_log(_("ALSA woke us up to write new data to the device, but there was actually nothing to write.\n" in unix_write()
993 pa_log_warn("Failed to query DSP status data: %s", pa_alsa_strerror(err)); in update_smoother()
1147 * we might end up in a situation where the hw buffer contains more data in update_sw_params()
1322 pa_alsa_port_data *data; in sync_mixer() local
1324 data = PA_DEVICE_PORT_DATA(port); in sync_mixer()
1325 setting = data->setting; in sync_mixer()
1342 static int sink_process_msg(pa_msgobject *o, int code, void *data, int64_ argument
1709 pa_alsa_ucm_port_data *data; sink_set_port_ucm_cb() local
1729 pa_alsa_port_data *data; sink_set_port_cb() local
2151 set_sink_name(pa_sink_new_data *data, pa_modargs *ma, const char *device_id, const char *device_name, pa_alsa_mapping *mapping) set_sink_name() argument
2251 pa_alsa_port_data *data; setup_mixer() local
2261 pa_alsa_ucm_port_data *data; setup_mixer() local
2349 pa_sink_new_data data; pa_alsa_sink_new() local
[all...]
H A Dalsa-source.c636 pa_log(_("ALSA woke us up to read new data from the device, but there was actually nothing to read.\n" in mmap_read()
802 pa_log(_("ALSA woke us up to read new data from the device, but there was actually nothing to read.\n" in unix_read()
1196 pa_alsa_port_data *data; in sync_mixer() local
1198 data = PA_DEVICE_PORT_DATA(port); in sync_mixer()
1199 setting = data->setting; in sync_mixer()
1216 static int source_process_msg(pa_msgobject *o, int code, void *data, int64_t offset, pa_memchunk *chunk) { in source_process_msg() argument
1227 *((int64_t*) data) = r; in source_process_msg()
1233 pa_device_port *port = data; in source_process_msg()
1240 return pa_source_process_msg(o, code, data, offset, chunk); in source_process_msg()
1583 pa_alsa_ucm_port_data *data; in source_set_port_ucm_cb() local
1603 pa_alsa_port_data *data; source_set_port_cb() local
1855 set_source_name(pa_source_new_data *data, pa_modargs *ma, const char *device_id, const char *device_name, pa_alsa_mapping *mapping) set_source_name() argument
1955 pa_alsa_port_data *data; setup_mixer() local
1965 pa_alsa_ucm_port_data *data; setup_mixer() local
2052 pa_source_new_data data; pa_alsa_source_new() local
[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...]
/third_party/vk-gl-cts/external/openglcts/modules/gles2/
H A Des2cTexture3DTests.cpp134 GLsizei depth, GLint border, GLsizei imageSize, const void* data) const;
138 const void* data) const;
283 // Prepare data for rendering in renderQuad()
420 const void* data) const in callCompressedTexImage3D()
424 gl.compressedTexImage3DOES(target, level, internalformat, width, height, depth, border, imageSize, data); in callCompressedTexImage3D()
426 gl.compressedTexImage3D(target, level, internalformat, width, height, depth, border, imageSize, data); in callCompressedTexImage3D()
433 GLsizei imageSize, const void* data) const in callCompressedTexSubImage3D()
438 data); in callCompressedTexSubImage3D()
441 data); in callCompressedTexSubImage3D()
475 Texture3DFilteringCase(deqp::Context& context, const char* name, const char* desc, const FilteringData& data);
512 Texture3DFilteringCase(deqp::Context& context, const char* name, const char* desc, const FilteringData& data) Texture3DFilteringCase() argument
1092 deUint8* const data = static_cast<deUint8*>(level.getData()); iterate() local
1112 deUint8* const data = static_cast<deUint8*>(dataPart.getData()); iterate() local
1995 FilteringData data; init() local
[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/icu/icu4c/source/tools/toolutil/
H A Dpackage.cpp18 * Read, modify, and write ICU .dat data package files.
112 getDataInfo(const uint8_t *data, int32_t length, in getDataInfo() argument
121 if( data==NULL || in getDataInfo()
128 pHeader=(const DataHeader *)data; in getDataInfo()
160 getTypeEnumForInputData(const uint8_t *data, int32_t length, in getTypeEnumForInputData() argument
166 pInfo=getDataInfo(data, length, infoLength, headerLength, pErrorCode); in getTypeEnumForInputData()
331 icu::LocalMemory<uint8_t> data((uint8_t *)uprv_malloc(length)); in readFile()
332 if(data.isNull()) { in readFile()
339 if(fileLength!=(int32_t)fread(data.getAlias(), 1, fileLength, file)) { in readFile()
347 memset(data in readFile()
1028 addItem(const char *name, uint8_t *data, int32_t length, UBool isDataOwned, char type) addItem() argument
1067 uint8_t *data; addFile() local
[all...]

Completed in 32 milliseconds

1...<<121122123124125126127128129130>>...682