| /third_party/rust/crates/cxx/demo/src/ |
| D | blobstore.cc | 22 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/skia/tests/ |
| D | TextBlobCacheTest.cpp | 36 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/mindspore/mindspore-src/source/mindspore/lite/tools/converter/parser/caffe/ |
| D | caffe_model_parser.cc | 539 auto ret = ConvertShape(layer.blobs(i), &shape); in ConvertBlobs() 572 if (layer.blobs(i).double_data_size() > 0) { in ConvertBlobs() 573 count = layer.blobs(i).double_data_size(); in ConvertBlobs() 577 buf[j] = layer.blobs(i).double_data(j); in ConvertBlobs() 581 } else if (layer.blobs(i).has_int8_data()) { in ConvertBlobs() 582 …const int8_t *data_ptr = reinterpret_cast<int8_t *>(const_cast<char *>(layer.blobs(i).int8_data().… in ConvertBlobs() 586 } else if (layer.blobs(i).int32_data_size() > 0) { in ConvertBlobs() 587 count = layer.blobs(i).int32_data_size(); in ConvertBlobs() 588 const int *data_ptr = layer.blobs(i).int32_data().data(); in ConvertBlobs() 591 } else if (layer.blobs(i).uint64_data_size() > 0) { in ConvertBlobs() [all …]
|
| D | caffe_conv_base_parser.cc | 177 auto filter = ConvertWeight(weight.blobs(0)); in ParseWeight() 186 auto bias = ConvertWeight(weight.blobs(1)); in ParseWeight()
|
| D | caffe_convolution_parser.cc | 81 auto &weightBlob = weight.blobs(0); in Parse()
|
| D | caffe_deconvolution_parser.cc | 84 auto &weightBlob = weight.blobs(0); in Parse()
|
| /third_party/openssl/doc/internal/man3/ |
| D | ossl_DER_w_precompiled.pod | 6 - internal DER writers for precompiled DER blobs 18 There may be already existing DER blobs that can simply be copied to
|
| /third_party/ffmpeg/libavcodec/ |
| D | bmvvideo.c | 210 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/mindspore/mindspore-src/source/mindspore/lite/tools/converter/adapter/dpico/parser/caffe/ |
| D | caffe_model_parser.cc | 412 (void)ConvertShape(layer.blobs(i), &shape); in ConvertBlobs() 433 if (layer.blobs(i).double_data_size() > 0) { in ConvertBlobs() 434 count = layer.blobs(i).double_data_size(); in ConvertBlobs() 441 buf[j] = layer.blobs(j).double_data(j); in ConvertBlobs() 446 count = layer.blobs(i).data_size(); in ConvertBlobs() 447 const float *data_ptr = layer.blobs(i).data().data(); in ConvertBlobs()
|
| D | caffe_convolution_parser.cc | 88 auto &weightBlob = weight.blobs(0); in Parse()
|
| D | caffe_deconvolution_parser.cc | 79 auto &weightBlob = weight.blobs(0); in Parse()
|
| /third_party/libwebsockets/READMEs/ |
| D | README.cbor-lecp.md | 22 - 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
|
| D | README.json-lejp.md | 66 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/ |
| D | config_none.c | 52 for (blob = config->blobs; blob; blob = blob->next) { in wpa_config_write()
|
| D | win_example.reg | 22 [HKEY_LOCAL_MACHINE\SOFTWARE\wpa_supplicant\configs\test\blobs]
|
| /third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
| D | config_none.c | 51 for (blob = config->blobs; blob; blob = blob->next) { in wpa_config_write()
|
| D | win_example.reg | 22 [HKEY_LOCAL_MACHINE\SOFTWARE\wpa_supplicant\configs\test\blobs]
|
| /third_party/python/Modules/_sqlite/ |
| D | connection.h | 68 PyObject *blobs; member
|
| D | connection.c | 236 PyObject *blobs = PyList_New(0); in pysqlite_connection_init_impl() local 237 if (blobs == NULL) { in pysqlite_connection_init_impl() 252 self->blobs = blobs; in pysqlite_connection_init_impl() 301 Py_VISIT(self->blobs); in connection_traverse() 325 Py_CLEAR(self->blobs); in connection_clear() 476 rc = PyList_Append(self->blobs, weakref); in blobopen_impl()
|
| D | blob.c | 98 for (int i = 0; i < PyList_GET_SIZE(self->blobs); i++) { in pysqlite_close_all_blobs() 99 PyObject *weakref = PyList_GET_ITEM(self->blobs, i); in pysqlite_close_all_blobs()
|
| /third_party/mindspore/mindspore-src/source/third_party/proto/caffe/ |
| D | caffe.proto | 27 repeated BlobProto blobs = 1; field 66 // DEPRECATED. See InputParameter. The input blobs to the network. 68 // DEPRECATED. See InputParameter. The shape of the input blobs. 287 // The names of the parameter blobs -- useful for sharing parameters among 331 // The blobs containing the numeric parameters of the layer. 332 repeated BlobProto blobs = 7; field 515 // same dimension for all the bottom blobs. 516 // By default, ConcatLayer concatenates blobs along the "channels" axis (1). 635 // implementation for blobs of the appropriate number of spatial dimensions 637 // implementation; for input blobs with num_axes != 2, this option is [all …]
|
| /third_party/rust/crates/cxx/ |
| D | README_zh.md | 172 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/curl/lib/vtls/ |
| D | vtls.c | 280 data->set.ssl.primary.issuercert_blob = data->set.blobs[BLOB_SSL_ISSUERCERT]; in Curl_ssl_easy_config_complete() 287 data->set.ssl.primary.cert_blob = data->set.blobs[BLOB_CERT]; in Curl_ssl_easy_config_complete() 288 data->set.ssl.primary.ca_info_blob = data->set.blobs[BLOB_CAINFO]; in Curl_ssl_easy_config_complete() 299 data->set.ssl.key_blob = data->set.blobs[BLOB_KEY]; in Curl_ssl_easy_config_complete() 310 data->set.proxy_ssl.primary.cert_blob = data->set.blobs[BLOB_CERT_PROXY]; in Curl_ssl_easy_config_complete() 312 data->set.blobs[BLOB_CAINFO_PROXY]; in Curl_ssl_easy_config_complete() 316 data->set.blobs[BLOB_SSL_ISSUERCERT_PROXY]; in Curl_ssl_easy_config_complete() 324 data->set.proxy_ssl.key_blob = data->set.blobs[BLOB_KEY_PROXY]; in Curl_ssl_easy_config_complete()
|
| /third_party/mesa3d/docs/drivers/ |
| D | d3d12.rst | 42 Write shader blobs
|
| /third_party/FreeBSD/sbin/fsck_msdosfs/ |
| D | fat.c | 1142 size_t rwsize, tailsize, blobs, i; in copyfat() local 1151 blobs = howmany(fat->fatsize, fat32_cache_size); in copyfat() 1162 for (i = 0; i < blobs; in copyfat() 1164 if (i == blobs - 1) { in copyfat()
|