Home
last modified time | relevance | path

Searched refs:data (Results 1376 - 1400 of 15795) sorted by relevance

1...<<51525354555657585960>>...632

/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...]
/third_party/cups-filters/filter/foomatic-rip/
H A Doptions.c94 /* no data */ in get_icc_profile_for_qualifier()
102 entry = (icc_mapping_entry_t *) i->data; in get_icc_profile_for_qualifier()
295 entry = (icc_mapping_entry_t *) item->data; in options_free()
690 char *data; in paramvalues_to_string() local
712 /* only free dstr struct, NOT the string data */ in paramvalues_to_string()
713 data = res->data; in paramvalues_to_string()
715 return data; in paramvalues_to_string()
910 dstrcatf(cmd, "%s\n", depcmd->data); in composite_get_command()
1184 /* Replace special entities by job->data */ in unhtmlify()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cES31CompatibilityShaderStorageBufferObjectTests.cpp515 const float data[12] = { -1.0f, -1.0f, 0.0f, 1.0f, 3.0f, -1.0f, 0.0f, 1.0f, -1.0f, 3.0f, 0.0f, 1.0f }; in Run() local
518 glBufferData(GL_SHADER_STORAGE_BUFFER, sizeof(data), data, GL_STATIC_DRAW); in Run()
938 const float data[12] = { -1.0f, -1.0f, 0.0f, 1.0f, 3.0f, -1.0f, 0.0f, 1.0f, -1.0f, 3.0f, 0.0f, 1.0f }; in Run() local
941 glBufferData(GL_SHADER_STORAGE_BUFFER, sizeof(data), data, GL_STATIC_DRAW); in Run()
992 GLint data[3] = { 0 }; in RunIteration() local
993 glBufferData(GL_SHADER_STORAGE_BUFFER, 4 * 3, data, GL_STATIC_READ); in RunIteration()
1060 const float data[12] = { -1.0f, -1.0f, 7.0f, 1.0f, 3.0f, -1.0f, 17.0f, 1.0f, -1.0f, 3.0f, 23.0f, 1.0f }; in Run() local
1062 glBufferData(GL_SHADER_STORAGE_BUFFER, sizeof(data), dat in Run()
1162 const float data[12] = { -1.0f, -1.0f, 0.0f, 1.0f, 3.0f, -1.0f, 0.0f, 1.0f, -1.0f, 3.0f, 0.0f, 1.0f }; Run() local
2234 const int data[4] = { 0 }; Run() local
2241 const float data[] = { -0.8f, -0.8f, 0.8f, -0.8f, -0.8f, 0.8f, 0.8f, 0.8f }; Run() local
2270 GLuint* data = (GLuint*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
2287 GLint* data = (GLint*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
2361 const int data[4] = { 0 }; Run() local
2375 GLuint* data = (GLuint*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
2392 GLint* data = (GLint*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
2477 const float data[] = { -0.8f, -0.8f, 0.8f, -0.8f, -0.8f, 0.8f, 0.8f, 0.8f }; Run() local
2674 const float data[] = { -0.8f, -0.8f, 0.8f, -0.8f, -0.8f, 0.8f, 0.8f, 0.8f }; Run() local
4926 const float data[] = { -0.4f - 0.5f, -0.4f - 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, Run() local
4935 const float data[] = { -0.4f + 0.5f, -0.4f - 0.5f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, Run() local
4944 const float data[] = { -0.4f - 0.5f, -0.4f + 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, Run() local
4953 const float data[] = { -0.4f + 0.5f, -0.4f + 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f, Run() local
5084 const GLubyte data[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; Run() local
5194 const float data[] = { -0.4f - 0.5f, -0.4f - 0.5f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, Run() local
5203 const float data[] = { -0.4f + 0.5f, -0.4f - 0.5f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, Run() local
5212 const float data[] = { -0.4f - 0.5f, -0.4f + 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, Run() local
5221 const float data[] = { -0.4f + 0.5f, -0.4f + 0.5f, 0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 0.0f, Run() local
5319 const GLubyte data[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; Run() local
5668 const float data[] = { 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, Run() local
5675 const unsigned int data[] = { 2, 3, 0, 2 }; Run() local
5681 const float data[] = { -0.5f, -0.5f, 0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f }; Run() local
5687 const unsigned int data[] = { 3, 1, 0, 2 }; Run() local
5694 const float data[] = { -0.4f, -0.4f, 0.4f, -0.4f, -0.4f, 0.4f, 0.4f, 0.4f }; Run() local
5729 const unsigned int data[] = { 3, 2, 1, 0 }; Run() local
5736 const unsigned int data[] = { 0, 1, 2, 3 }; Run() local
5806 const float data[] = { 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, Run() local
5813 const unsigned int data[] = { 2, 3, 0, 2 }; Run() local
5819 const float data[] = { -0.5f, -0.5f, 0.5f, -0.5f, -0.5f, 0.5f, 0.5f, 0.5f }; Run() local
5825 const unsigned int data[] = { 3, 1, 0, 2 }; Run() local
5878 const unsigned int data[] = { 3, 2, 1, 0 }; Run() local
5885 const unsigned int data[] = { 0, 1, 2, 3 }; Run() local
6001 const float data[4][2] = { { -0.5f, -0.5f }, { 0.5f, -0.5f }, { -0.5f, 0.5f }, { 0.5f, 0.5f } }; Run() local
6010 const float data[4][3] = { Run() local
6022 const float data[] = { -0.4f, -0.4f, 0.4f, -0.4f, -0.4f, 0.4f, 0.4f, 0.4f }; Run() local
6157 const float data[4][3] = { Run() local
6280 const float data[] = { -1, -1, 1, -1, -1, 1, 1, 1 }; Run() local
6364 GLint data[128 * 4]; Run() local
6475 mat4 data[] = { Translation(-0.5f, -0.5f, 0.0f), Translation(0.5f, -0.5f, 0.0f), Run() local
6482 vec4 data[] = { vec4(1, 0, 0, 1), vec4(0, 1, 0, 1), vec4(0, 0, 1, 0), vec4(1, 1, 0, 1) }; Run() local
6488 int data[] = { 0, 1, 2, 3 }; Run() local
6498 } data[] = { { vec2(-0.4f, -0.4f), 0 }, { vec2(0.4f, -0.4f), 0 }, { vec2(-0.4f, 0.4f), 0 }, Run() local
6612 int data[4] = { 0, 1, 0, 2 }; Run() local
6618 int data[2] = { 3, 1 }; Run() local
6624 int data[2] = { 2, 4 }; Run() local
6630 int data[1] = { 0 }; Run() local
6636 int data[4] = { 0, 1, 0, 2 }; Run() local
6642 int data[2] = { 3, 1 }; Run() local
6648 int data[2] = { 2, 4 }; Run() local
6665 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
6684 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
6703 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
6722 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 4, GL_MAP_READ_BIT); Run() local
6741 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
6760 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
6779 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
6852 int data[4] = { 0, 1, 0, 2 }; Run() local
6858 int data[2] = { 3, 1 }; Run() local
6864 int data[2] = { 2, 4 }; Run() local
6870 int data[1] = { 0 }; Run() local
6876 int data[4] = { 0, 1, 0, 2 }; Run() local
6882 int data[2] = { 3, 1 }; Run() local
6888 int data[2] = { 2, 4 }; Run() local
6905 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
6924 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
6943 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
6962 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 4, GL_MAP_READ_BIT); Run() local
6981 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
7000 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
7019 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 8, GL_MAP_READ_BIT); Run() local
7087 int data[4] = { 3, 5 }; Run() local
7093 int data[1] = { 0 }; Run() local
7108 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
7127 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 4, GL_MAP_READ_BIT); Run() local
7187 int data[4] = { 3, 5 }; Run() local
7193 int data[1] = { 0 }; Run() local
7206 int* data = (int*)glMapBufferRange(GL_SHADER_STORAGE_BUFFER, 0, 16, GL_MAP_READ_BIT); Run() local
8014 float data[48 + 16 + 12 + 16] = { Run() local
8024 float data[16] = { Run() local
8032 float data[8] = { -0.4f, -0.4f, 0.4f, -0.4f, -0.4f, 0.4f, 0.4f, 0.4f }; Run() local
8113 GLfloat data[16 + 16 + 16]; Run() local
[all...]
/third_party/python/Lib/asyncio/
H A Dproactor_events.py204 # overlapped WSASend() loss silently data with the current proactor
251 def _data_received(self, data, length):
265 protocols._feed_data_to_buffered_proto(self._protocol, data)
274 self._protocol.data_received(data)
278 data = None
285 # deliver data later in "finally" clause
291 data = self._data[:length]
297 # since close() has been called we ignore any read data
301 # a data loss issue caused by overlapped WSASend() cancellation.
324 self._data_received(data, lengt
[all...]
/third_party/pulseaudio/speex/libspeexdsp/
H A Djitter.c141 spx_int32_t buffered; /**< Amount of data we think is still buffered by the application (timestamp units)*/
167 /** Based on available data, this computes the optimal delay for the jitter buffer.
262 /* Prevents reducing the buffer size when we haven't really had much data */ in compute_opt_delay()
278 jitter->packets[i].data=NULL; in jitter_buffer_init()
300 if (jitter->packets[i].data) in jitter_buffer_reset()
303 jitter->destroy(jitter->packets[i].data); in jitter_buffer_reset()
305 speex_free(jitter->packets[i].data); in jitter_buffer_reset()
306 jitter->packets[i].data = NULL; in jitter_buffer_reset()
378 if (jitter->packets[i].data && LE32(jitter->packets[i].timestamp + jitter->packets[i].span, jitter->pointer_timestamp)) in jitter_buffer_put()
382 jitter->destroy(jitter->packets[i].data); in jitter_buffer_put()
[all...]
/third_party/icu/tools/unicode/c/genprops/
H A Dgenprops.cpp87 "Reads the preparsed UCD file path/to/ICU/src/root/source/data/unidata/ppucd.txt and\n" in main()
88 "writes source and binary data files with the character properties.\n" in main()
125 icuSourceData.appendPathPart("data", errorCode); in main()
133 PreparsedUCD ppucd(ppucdPath.data(), errorCode); in main()
136 ppucdPath.data(), errorCode.errorName()); in main()
184 emojiPropsBuilder->parseUnidataFiles(unidataPath.data(), errorCode); in main()
199 fprintf(stderr, "genprops error: failure finalizing the data - %s\n", in main()
204 // Write the files with the generated data. in main()
213 pnamesBuilder->writeCSourceFile(sourceCommon.data(), errorCode); in main()
214 pnamesBuilder->writeBinaryData(sourceDataIn.data(), withCopyrigh in main()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DPluralRanges.java49 private byte[] data = new byte[StandardPlural.COUNT * StandardPlural.COUNT]; field in PluralRanges.Matrix
51 for (int i = 0; i < data.length; ++i) {
52 data[i] = -1;
64 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in set()
73 byte old = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()]; in setIfNew()
78 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1 in setIfNew()
86 byte result = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()]; in get()
143 for (int i = 0; i < data.length; ++i) { in hashCode()
144 result = result * 37 + data[i]; in hashCode()
159 for (int i = 0; i < data in compareTo()
[all...]
/third_party/node/src/
H A Dnode_win32_etw_provider-inl.h37 #define ETW_WRITE_STRING_DATA(data_descriptor, data) \
39 data, \
40 (strlen(data) + 1) * sizeof(*data));
42 #define ETW_WRITE_INT32_DATA(data_descriptor, data) \
43 EventDataDescCreate(data_descriptor, data, sizeof(int32_t));
45 #define ETW_WRITE_INT64_DATA(data_descriptor, data) \
46 EventDataDescCreate(data_descriptor, data, sizeof(int64_t));
48 #define ETW_WRITE_ADDRESS_DATA(data_descriptor, data) \
49 EventDataDescCreate(data_descriptor, data, sizeo
[all...]
/third_party/node/deps/npm/node_modules/write-file-atomic/lib/
H A Dindex.js78 async function writeFileAsync (filename, data, options = {}) {
113 if (ArrayBuffer.isView(data)) {
114 await promisify(fs.write)(fd, data, 0, data.length, 0)
115 } else if (data != null) {
116 await promisify(fs.write)(fd, String(data), 0, String(options.encoding || 'utf8'))
161 async function writeFile (filename, data, options, callback) {
167 const promise = writeFileAsync(filename, data, options)
180 function writeFileSync (filename, data, options) {
220 if (ArrayBuffer.isView(data)) {
[all...]
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_tcs_variant.cpp52 d3d12_shader_free((d3d12_shader_selector *)entry->data); in delete_entry()
99 out->data.location = in->data.location = var_idx; in create_tess_ctrl_shader_variant()
100 out->data.location_frac = in->data.location_frac = frac; in create_tess_ctrl_shader_variant()
101 out->data.driver_location = in->data.driver_location = var->driver_location; in create_tess_ctrl_shader_variant()
113 gl_TessLevelInner->data.location = VARYING_SLOT_TESS_LEVEL_INNER; in create_tess_ctrl_shader_variant()
114 gl_TessLevelInner->data.patch = 1; in create_tess_ctrl_shader_variant()
115 gl_TessLevelInner->data in create_tess_ctrl_shader_variant()
[all...]
/third_party/vk-gl-cts/external/amber/src/src/vkscript/
H A Dsection_parser.cc37 Result SectionParser::Parse(const std::string& data) { in Parse() argument
38 Result result = SplitSections(data); in Parse()
44 Result SectionParser::NameToNodeType(const std::string& data, in NameToNodeType() argument
55 size_t pos = data.rfind(" spirv hex"); in NameToNodeType()
58 name = data.substr(0, pos); in NameToNodeType()
60 pos = data.rfind(" spirv"); in NameToNodeType()
63 name = data.substr(0, pos); in NameToNodeType()
65 name = data; in NameToNodeType()
69 pos = data.rfind(" passthrough"); in NameToNodeType()
72 name = data in NameToNodeType()
155 SplitSections(const std::string& data) SplitSections() argument
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-indic-table.py44 data = [{} for _ in files] variable
67 data[i][u] = t
70 # Merge data into one dict:
75 for i,d in enumerate (data):
83 data = combined variable
89 singles[u] = data[u]
90 del data[u]
173 def print_block (block, start, end, data):
186 if u in data:
188 d = data
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/bloat/
H A Dwebtreemap.js57 if (tree.data['$symbol']) {
59 tree.data['$symbol'].replace(' ', '_'));
61 if (tree.data['$dominant_symbol']) {
63 tree.data['$dominant_symbol'].replace(' ', '_'));
110 var rmin = node.data['$area']; // Smallest seen child so far.
115 var size = node.data['$area'];
141 var total = tree.data['$area'];
187 var size = child.data['$area'];
223 function appendTreemap(dom, data) {
227 if (!data
[all...]
/third_party/python/Modules/clinic/
H A D_lzmamodule.c.h6 "compress($self, data, /)\n"
9 "Provide data to the compressor object.\n"
11 "Returns a chunk of compressed data if possible, or b\'\' otherwise.\n"
13 "When you have finished providing data to the compressor, call the\n"
20 _lzma_LZMACompressor_compress_impl(Compressor *self, Py_buffer *data);
26 Py_buffer data = {NULL, NULL}; in _lzma_LZMACompressor_compress() local
28 if (PyObject_GetBuffer(arg, &data, PyBUF_SIMPLE) != 0) { in _lzma_LZMACompressor_compress()
31 if (!PyBuffer_IsContiguous(&data, 'C')) { in _lzma_LZMACompressor_compress()
35 return_value = _lzma_LZMACompressor_compress_impl(self, &data); in _lzma_LZMACompressor_compress()
38 /* Cleanup for data */ in _lzma_LZMACompressor_compress()
102 Py_buffer data = {NULL, NULL}; _lzma_LZMADecompressor_decompress() local
[all...]

Completed in 19 milliseconds

1...<<51525354555657585960>>...632