Home
last modified time | relevance | path

Searched refs:blobs (Results 1 – 25 of 74) sorted by relevance

123

/third_party/flutter/skia/tests/
DTextBlobCacheTest.cpp30 static void draw(SkCanvas* canvas, int redraw, const SkTArray<sk_sp<SkTextBlob>>& blobs) { in draw() argument
33 for (int i = 0; i < blobs.count(); i++) { in draw()
34 const auto& blob = blobs[i]; in draw()
85 SkTArray<sk_sp<SkTextBlob>> blobs; in text_blob_cache_inner() local
128 blobs.emplace_back(builder.make()); in text_blob_cache_inner()
144 draw(canvas, 2, blobs); in text_blob_cache_inner()
145 draw(canvasNoLCD, 2, blobs); in text_blob_cache_inner()
149 draw(canvas, 1, blobs); in text_blob_cache_inner()
152 draw(canvasNoLCD, 1, blobs); in text_blob_cache_inner()
156 draw(canvas, 1, blobs); in text_blob_cache_inner()
/third_party/rust/crates/cxx/demo/src/
Dblobstore.cc22 std::unordered_map<uint64_t, Blob> blobs; member in org::blobstore::BlobstoreClient::impl
45 impl->blobs[blobid] = {std::move(contents), {}}; in put()
51 impl->blobs[blobid].tags.emplace(tag); in tag()
57 auto blob = impl->blobs.find(blobid); in metadata()
58 if (blob != impl->blobs.end()) { in metadata()
/third_party/ltp/tools/sparse/sparse-src/
Dallocate.c48 desc->blobs = NULL; in protect_allocations()
53 struct allocation_blob *blob = desc->blobs; in drop_all_allocations()
55 desc->blobs = NULL; in drop_all_allocations()
77 struct allocation_blob *blob = desc->blobs; in allocate()
111 desc->blobs = newblob; in allocate()
Dallocate.h14 struct allocation_blob *blobs; member
/third_party/skia/tests/
DTextBlobCacheTest.cpp36 static void draw(SkCanvas* canvas, int redraw, const SkTArray<sk_sp<SkTextBlob>>& blobs) { in draw() argument
39 for (int i = 0; i < blobs.count(); i++) { in draw()
40 const auto& blob = blobs[i]; in draw()
100 SkTArray<sk_sp<SkTextBlob>> blobs; in text_blob_cache_inner() local
143 blobs.emplace_back(builder.make()); in text_blob_cache_inner()
159 draw(canvas, 2, blobs); in text_blob_cache_inner()
160 draw(canvasNoLCD, 2, blobs); in text_blob_cache_inner()
164 draw(canvas, 1, blobs); in text_blob_cache_inner()
167 draw(canvasNoLCD, 1, blobs); in text_blob_cache_inner()
171 draw(canvas, 1, blobs); in text_blob_cache_inner()
/third_party/ffmpeg/libavcodec/
Dbmvvideo.c210 int blobs = bytestream_get_byte(&c->stream); in decode_frame() local
211 if (pkt->size < blobs * 65 + 2) { in decode_frame()
215 c->stream += blobs * 65; in decode_frame()
/third_party/openssl/doc/internal/man3/
Dossl_DER_w_precompiled.pod6 - internal DER writers for precompiled DER blobs
18 There may be already existing DER blobs that can simply be copied to
/third_party/node/test/fixtures/wpt/FileAPI/blob/
DBlob-slice.any.js159 var blobs = data[0];
163 var blob = new Blob(blobs);
/third_party/libwebsockets/READMEs/
DREADME.cbor-lecp.md22 - No payload size limit, supports huge / endless strings or blobs bigger than
28 vaargs including sized blobs, C strings, double, int, unsigned long etc
29 - Completely immune to output fragmentation, supports huge strings and blobs
99 ## Handling CBOR UTF-8 strings and blobs
105 Strings or blobs may have indeterminite length, but if so, they are composed
112 For short strings or blobs where the length is known, the whole payload is
170 `ctx->buf[]` for blobs or utf-8 text strtings, or the `item.u` union for
DREADME.json-lejp.md66 For short strings or blobs where the length is known, the whole payload is
98 `ctx->buf[]` for blobs or utf-8 text strtings, or the `item.u` union for
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Dconfig_none.c51 for (blob = config->blobs; blob; blob = blob->next) { in wpa_config_write()
Dwin_example.reg22 [HKEY_LOCAL_MACHINE\SOFTWARE\wpa_supplicant\configs\test\blobs]
Dconfig.h690 struct wpa_config_blob *blobs; member
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Dconfig_none.c51 for (blob = config->blobs; blob; blob = blob->next) { in wpa_config_write()
Dwin_example.reg22 [HKEY_LOCAL_MACHINE\SOFTWARE\wpa_supplicant\configs\test\blobs]
Dconfig.h661 struct wpa_config_blob *blobs; member
/third_party/rust/crates/cxx/
DREADME_zh.md172 std::unordered_map<uint64_t, Blob> blobs;
196 impl->blobs[res] = {std::move(contents), {}};
203 impl->blobs[blobid].tags.emplace(add_tag);
210 auto blob = impl->blobs.find(blobid);
211 if (blob != impl->blobs.end()) {
/third_party/flutter/flutter/dev/devicelab/bin/tasks/
Dbuild_aar_module_test.dart156 section('Check AOT blobs in release AAR');
263 section('Check AOT blobs in debug AAR');
Dmodule_host_with_custom_build_test.dart199 section('Verify AOT blobs in app-demo-release-unsigned.apk');
249 section('Verify AOT blobs in app-demo-prod-unsigned.apk');
/third_party/mesa3d/docs/drivers/
Dd3d12.rst42 Write shader blobs
/third_party/FreeBSD/sbin/fsck_msdosfs/
Dfat.c1144 size_t rwsize, tailsize, blobs, i; in copyfat() local
1153 blobs = howmany(fat->fatsize, fat32_cache_size); in copyfat()
1164 for (i = 0; i < blobs; in copyfat()
1166 if (i == blobs - 1) { in copyfat()
/third_party/rust/crates/cxx/book/src/
Dtutorial.md502 metadata about blobs between our Rust application and C++ blobstore client.
608 std::unordered_map<uint64_t, Blob> blobs;
627 # impl->blobs[blobid] = {std::move(contents), {}};
633 impl->blobs[blobid].tags.emplace(tag);
639 auto blob = impl->blobs.find(blobid);
640 if (blob != impl->blobs.end()) {
/third_party/curl/
Dbackport-CVE-2022-27782.patch163 data->set.blobs[BLOB_SSL_ISSUERCERT_PROXY];
172 data->set.proxy_ssl.key_blob = data->set.blobs[BLOB_KEY_PROXY];
195 data->set.ssl.key_blob = data->set.blobs[BLOB_KEY];
/third_party/flutter/engine/flutter/testing/
Dtesting.gni131 "--snapshot_kind=app-aot-blobs",
/third_party/rust/crates/bindgen/book/src/
Dfaq.md64 As far as generating opaque blobs of bytes with the correct size and alignment,

123