| /external/mesa3d/src/gallium/auxiliary/util/ |
| D | u_upload_mgr.c | 44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */ 51 struct pipe_resource *buffer; /* Upload buffer. */ 52 struct pipe_transfer *transfer; /* Transfer object for the upload buffer. */ 53 uint8_t *map; /* Pointer to the mapped upload buffer. */ 55 unsigned offset; /* Aligned offset to the upload buffer, pointing 65 struct u_upload_mgr *upload = CALLOC_STRUCT(u_upload_mgr); in u_upload_create() local 66 if (!upload) in u_upload_create() 69 upload->pipe = pipe; in u_upload_create() 70 upload->default_size = default_size; in u_upload_create() 71 upload->bind = bind; in u_upload_create() [all …]
|
| D | u_upload_mgr.h | 46 * Create the upload manager. 49 * \param default_size Minimum size of the upload buffer, in bytes. 70 u_upload_clone(struct pipe_context *pipe, struct u_upload_mgr *upload); 74 u_upload_enable_flush_explicit(struct u_upload_mgr *upload); 78 u_upload_disable_persistent(struct u_upload_mgr *upload); 81 * Destroy the upload manager. 83 void u_upload_destroy( struct u_upload_mgr *upload ); 86 * Unmap upload buffer 88 * \param upload Upload manager 91 * which references the upload buffer, as many memory managers either [all …]
|
| /external/skia/tools/svg/ |
| D | svgs_parse_only.txt | 11 https://upload.wikimedia.org/wikipedia/commons/6/6d/Alabama-StateSeal.svg 12 https://upload.wikimedia.org/wikipedia/commons/2/2b/Alaska-StateSeal.svg 13 https://upload.wikimedia.org/wikipedia/commons/7/7e/Arizona-StateSeal.svg 14 https://upload.wikimedia.org/wikipedia/commons/5/51/Colorado-StateSeal.svg 15 https://upload.wikimedia.org/wikipedia/commons/e/e5/Connecticut-StateSeal.svg 16 https://upload.wikimedia.org/wikipedia/commons/c/c0/Delaware-StateSeal.svg 17 https://upload.wikimedia.org/wikipedia/commons/e/e0/Georgia-StateSeal.svg 18 https://upload.wikimedia.org/wikipedia/commons/c/c5/Hawaii-StateSeal.svg 19 https://upload.wikimedia.org/wikipedia/commons/4/49/Idaho-StateSeal.svg 20 https://upload.wikimedia.org/wikipedia/commons/c/c4/Indiana-StateSeal.svg [all …]
|
| /external/mesa3d/src/mesa/drivers/dri/i965/ |
| D | intel_upload.c | 28 * Batched upload via BOs. 37 brw_upload_finish(struct brw_uploader *upload) in brw_upload_finish() argument 39 assert((upload->bo == NULL) == (upload->map == NULL)); in brw_upload_finish() 40 if (!upload->bo) in brw_upload_finish() 43 brw_bo_unmap(upload->bo); in brw_upload_finish() 44 brw_bo_unreference(upload->bo); in brw_upload_finish() 45 upload->bo = NULL; in brw_upload_finish() 46 upload->map = NULL; in brw_upload_finish() 47 upload->next_offset = 0; in brw_upload_finish() 71 brw_upload_space(struct brw_uploader *upload, in brw_upload_space() argument [all …]
|
| /external/cronet/net/reporting/ |
| D | reporting_uploader.cc | 119 auto& upload = request_and_upload.second; in HasHeaderValues() local 120 upload->RunCallback(Outcome::FAILURE); in HasHeaderValues() 131 auto upload = in HasHeaderValues() local 138 StartPayloadRequest(std::move(upload), eligible_for_credentials); in HasHeaderValues() 140 StartPreflightRequest(std::move(upload)); in HasHeaderValues() 149 void StartPreflightRequest(std::unique_ptr<PendingUpload> upload) { in HasHeaderValues() argument 150 DCHECK(upload->state == PendingUpload::CREATED); in HasHeaderValues() 152 upload->state = PendingUpload::SENDING_PREFLIGHT; in HasHeaderValues() 153 upload->request = context_->CreateRequest(upload->url, IDLE, this, in HasHeaderValues() 156 upload->request->set_method("OPTIONS"); in HasHeaderValues() [all …]
|
| /external/mesa3d/src/gallium/frontends/nine/ |
| D | nine_buffer_upload.c | 50 unsigned free_offset; /* Aligned offset to the upload buffer, pointing 73 nine_upload_create_buffer_group(struct nine_buffer_upload *upload, in nine_upload_create_buffer_group() argument 77 struct pipe_screen *screen = upload->pipe->screen; in nine_upload_create_buffer_group() 78 DBG("%p %p\n", upload, group); in nine_upload_create_buffer_group() 85 resource.width0 = upload->buffers_size; in nine_upload_create_buffer_group() 97 group->map = pipe_buffer_map_range(upload->pipe, group->resource, in nine_upload_create_buffer_group() 98 0, upload->buffers_size, in nine_upload_create_buffer_group() 113 nine_upload_destroy_buffer_group(struct nine_buffer_upload *upload, in nine_upload_destroy_buffer_group() argument 116 DBG("%p %p\n", upload, group); in nine_upload_destroy_buffer_group() 120 pipe_transfer_unmap(upload->pipe, group->transfer); in nine_upload_destroy_buffer_group() [all …]
|
| /external/google-breakpad/docs/ |
| D | sym_upload_v2_protocol.md | 3 The `sym_upload` tool is able to operate in `sym-upload-v2` protocol mode, in 4 addition to the legacy protocol (which will be referred to as `sym-upload-v1` 5 for the rest of this document). For now `sym-upload-v2` is HTTP/REST-based but 14 * [Serving the `sym-upload-v2` protocol](#serving-the-sym-upload-v2-protocol) 17 * [Upload `create`](#upload-create) 19 * [Upload complete](#upload-complete) 24 Using `sym_upload` in `sym-upload-v2` protocol mode has the following features 25 beyond `sym-upload-v1`: 29 server. If it's present, then the upload is skipped entirely. 37 Uploading in `sym-upload-v2` protocol mode is easy. Invoke `sym_upload` like [all …]
|
| /external/python/apitools/apitools/base/py/ |
| D | transfer_test.py | 260 # request body in the case of a multipart upload; for 276 resumable_path=u'/resumable/upload', 278 simple_path=u'/upload', 284 upload = transfer.Upload.FromStream( 292 upload.ConfigureRequest(upload_config, http_request, url_builder) 301 upload = transfer.Upload.FromStream( 308 upload.ConfigureRequest(upload_config, http_request, url_builder) 342 # Create and configure the upload object. 343 upload = transfer.Upload( 349 upload.strategy = transfer.RESUMABLE_UPLOAD [all …]
|
| D | transfer.py | 17 """Upload and download support for apitools.""" 41 'Upload', 69 """Print upload progress based on response.""" 74 """Print information about a completed upload.""" 75 print('Upload complete') 567 class Upload(_Transfer): class 569 """Data for a single Upload. 572 stream: The stream to upload. 573 mime_type: MIME type of the upload. 574 total_size: (optional) Total upload size for the stream. [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | analytics_v3.management.uploads.html | 82 <p class="firstline">Delete data associated with a previous upload.</p> 91 <p class="firstline">Upload data for a custom data source.</p> 100 <pre>Delete data associated with a previous upload. 109 { # Request template for the delete upload data request. 110 "customDataImportUids": [ # A list of upload UIDs. 123 accountId: string, Account Id for the upload to retrieve. (required) 124 webPropertyId: string, Web property Id for the upload to retrieve. (required) 125 customDataSourceId: string, Custom data source Id for upload to retrieve. (required) 126 uploadId: string, Upload Id to retrieve. (required) 131 { # Metadata returned for an upload operation. [all …]
|
| D | cloudsearch_v1.media.html | 81 …<code><a href="#upload">upload(resourceName, body=None, media_body=None, media_mime_type=None, x__… 82 …upload endpoint supports direct and resumable upload protocols and is intended for large items tha… 90 …<code class="details" id="upload">upload(resourceName, body=None, media_body=None, media_mime_type… 91 …upload endpoint supports direct and resumable upload protocols and is intended for large items tha…
|
| /external/skia/src/gpu/ganesh/ |
| D | GrDeferredUpload.h | 22 * contents. In that case the ASAP upload would happen prior to the draw and therefore the draw 24 * should schedule an inline upload. 26 * Ops, in conjunction with helpers such as GrDrawOpAtlas, use upload tokens to know what the most 29 * The deferred upload's target provides a facility for testing whether the draw corresponding to 30 * the token has been flushed. If it has not been flushed then the op must perform an inline upload 31 * instead so that the upload occurs after the draw depending on the old contents and before the 32 * draw depending on the updated contents. When scheduling an inline upload the op provides the 33 * token of the draw that the upload must occur before. 37 * Passed to a deferred upload when it is executed, this method allows the deferred upload to 47 * A deferred texture upload is simply a std::function that takes a [all …]
|
| /external/deqp/doc/testspecs/GLES3/ |
| D | performance.buffer.data_upload.txt | 19 Buffer upload performance tests 61 + Buffer upload performance after a draw call using the target buffer 68 + Complex buffer usage before upload (e.g transform feedback, copyBufferSubData) 69 + Sustained upload performance tests 73 Upload performance tests approximate upload speed by testing time usage of different 74 buffer upload functions with multiple different buffer sizes. The time usage of these 78 parameters. The test result of an upload test is the median transfer rate of the test 119 performance from the observation of a buffer upload completion (a return from a 122 "processing time" does not include the upload time. All tests and test samples have the 126 Each case's draw function, uploaded buffer type, and upload method is encoded to the case [all …]
|
| /external/curl/docs/examples/ |
| D | ftpuploadfrommem.c | 25 * FTP upload a file from memory 50 struct WriteThis *upload = (struct WriteThis *)userp; in read_callback() local 56 if(upload->sizeleft) { in read_callback() 58 if(copylen > upload->sizeleft) in read_callback() 59 copylen = upload->sizeleft; in read_callback() 60 memcpy(ptr, upload->readptr, copylen); in read_callback() 61 upload->readptr += copylen; in read_callback() 62 upload->sizeleft -= copylen; in read_callback() 74 struct WriteThis upload; in main() local 76 upload.readptr = data; in main() [all …]
|
| /external/deqp/doc/testspecs/GLES2/ |
| D | performance.texture.upload.txt | 19 Texture upload performance tests 22 + dEQP-GLES2.performance.texture.upload.* 29 + Upload functions glTexImage2D and glTexSubImage2D 33 - Upload call only 34 - Upload and draw with uploaded texture + buffer swap 38 + Trashed cache before upload 42 Texture upload performance cases measure the performance of texture upload 43 calls. Subgroup 'upload' measures the duration of upload calls (i.e. 44 recorded iteration time includes only multiple texture upload calls). 46 each upload and swaps buffers afterwards (i.e. recorded iteration time [all …]
|
| /external/rust/crates/grpcio-sys/grpc/bazel/ |
| D | update_mirror.sh | 16 # Script to upload github archives for bazel dependencies to GCS, creating a reliable mirror link. 34 function upload { function 56 # A specific link can be upload manually by running e.g. 57 # upload "github.com/google/boringssl/archive/1c2769383f027befac5b75b6cedd25daf3bf4dcf.tar.gz" 60 upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-linux-x86_64 61 upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-darwin-x86_64 62 upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-windows-x86_64.exe 64 upload github.com/bazelbuild/bazel/releases/download/2.2.0/bazel-2.2.0-linux-x86_64 65 upload github.com/bazelbuild/bazel/releases/download/2.2.0/bazel-2.2.0-darwin-x86_64 66 upload github.com/bazelbuild/bazel/releases/download/2.2.0/bazel-2.2.0-windows-x86_64.exe [all …]
|
| /external/google-breakpad/src/tools/linux/symupload/ |
| D | sym_upload.cc | 30 // symupload.cc: Upload a symbol file to a HTTP server. The upload is sent as 68 fprintf(stderr, "Usage: %s [options...] <symbol-file> <upload-URL>\n", in Usage() 73 fprintf(stderr, "<upload-URL> is the destination for the upload\n"); in Usage() 74 fprintf(stderr, "-p:\t <protocol> One of ['sym-upload-v1'," in Usage() 75 " 'sym-upload-v2'], defaults to 'sym-upload-v1'.\n"); in Usage() 82 fprintf(stderr, "These options only work with 'sym-upload-v2' protocol:\n"); in Usage() 85 fprintf(stderr, "-f:\t Force symbol upload if already exists.\n"); in Usage() 86 fprintf(stderr, "-t:\t <symbol-type> Explicitly set symbol upload type (" in Usage() 93 "upload (basename of executable).\n"); in Usage() 95 "upload (typically build ID of executable).\n"); in Usage() [all …]
|
| /external/python/setuptools/setuptools/command/ |
| D | upload_docs.py | 4 Implements a Distutils 'upload_docs' subcommand (upload documentation to 25 from .upload import upload 32 class upload_docs(upload): 37 description = 'Upload documentation to sites other than PyPi such as devpi' 41 "url of repository [default: %s]" % upload.DEFAULT_REPOSITORY), 44 ('upload-dir=', None, 'directory to upload'), 46 boolean_options = upload.boolean_options 57 upload.initialize_options(self) 62 upload.finalize_options(self) 75 self.announce('Using upload directory %s' % self.target_dir) [all …]
|
| /external/curl/tests/data/ |
| D | test625 | 25 …/log/test%TESTNUMBER.a/upload.%TESTNUMBER -T log/file%TESTNUMBER.txt sftp://%HOSTIP:%SSHPORT%SSH_P… 28 …test%TESTNUMBER.a/upload.%TESTNUMBER %PWD/log/upload.%TESTNUMBER rmdir %PWD/log/test%TESTNUMBER.a … 32 for ssh upload test 39 <upload> 41 for ssh upload test 42 </upload>
|
| /external/mesa3d/src/mesa/drivers/dri/i915/ |
| D | intel_buffer_objects.c | 506 if (!intel->upload.bo) in intel_upload_finish() 509 if (intel->upload.buffer_len) { in intel_upload_finish() 510 drm_intel_bo_subdata(intel->upload.bo, in intel_upload_finish() 511 intel->upload.buffer_offset, in intel_upload_finish() 512 intel->upload.buffer_len, in intel_upload_finish() 513 intel->upload.buffer); in intel_upload_finish() 514 intel->upload.buffer_len = 0; in intel_upload_finish() 517 drm_intel_bo_unreference(intel->upload.bo); in intel_upload_finish() 518 intel->upload.bo = NULL; in intel_upload_finish() 528 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0); in wrap_buffers() [all …]
|
| /external/webrtc/tools_webrtc/perf/ |
| D | catapult_uploader.py | 29 """Required information to upload perf metrics. 110 """Make a HTTP GET requests to the Performance Dashboard untill upload 144 print('Upload state polled. Response: %r.' % content) 163 # can fail to upload. That would lead to the whole upload to be marked as 170 about upload (including measurements). Checks if upload is correct despite 178 min_measurements_amount: minimal amount of measurements that the upload 192 print('Failed to reach the dashboard to get full upload info.') 196 print('Full upload info: %s.' % json.dumps(resp_json, indent=4)) 206 print(('Not all measurements were confirmed to upload. ' 207 'Measurements count: %d, failed to upload or timed out: %d' % [all …]
|
| /external/curl/docs/cmdline-opts/ |
| D | upload-file.d | 3 Long: upload-file 7 Category: important upload 10 Example: --upload-file "{file1,file2}" $URL 19 file name to use. That will most likely cause the upload operation to fail. If 27 You can specify one --upload-file for each URL on the command line. Each 28 --upload-file + URL pair specifies what to upload and to where. curl also 29 supports "globbing" of the --upload-file argument, meaning that you can upload
|
| /external/perfetto/infra/luci/recipes/perfetto.expected/ |
| D | ci_android.json | 222 "name": "android-arm.Artifact upload", 253 "name": "android-arm.Artifact upload.gsutil upload", 256 …"@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/perfetto-luci-artifacts//android-arm/… 285 "name": "android-arm.Artifact upload.build perfetto/trace_processor_shell/android-arm", 322 "name": "android-arm.Artifact upload.register perfetto/trace_processor_shell/android-arm", 361 "name": "android-arm.Artifact upload.gsutil upload (2)", 364 …"@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/perfetto-luci-artifacts//android-arm/… 393 "name": "android-arm.Artifact upload.build perfetto/traceconv/android-arm", 430 "name": "android-arm.Artifact upload.register perfetto/traceconv/android-arm", 469 "name": "android-arm.Artifact upload.gsutil upload (3)", [all …]
|
| /external/python/setuptools/setuptools/_distutils/tests/ |
| D | test_upload.py | 1 """Tests for distutils.command.upload.""" 9 from distutils.command import upload as upload_mod 10 from distutils.command.upload import upload 92 cmd = upload(dist) 96 ('repository', 'https://upload.pypi.org/legacy/')): 105 cmd = upload(dist) 112 cmd = upload(dist) 126 cmd = upload(dist) 137 expected_url = 'https://upload.pypi.org/legacy/' 179 cmd = upload(dist) [all …]
|
| /external/python/cpython3/Lib/distutils/tests/ |
| D | test_upload.py | 1 """Tests for distutils.command.upload.""" 9 from distutils.command import upload as upload_mod 10 from distutils.command.upload import upload 92 cmd = upload(dist) 96 ('repository', 'https://upload.pypi.org/legacy/')): 105 cmd = upload(dist) 112 cmd = upload(dist) 126 cmd = upload(dist) 137 expected_url = 'https://upload.pypi.org/legacy/' 179 cmd = upload(dist) [all …]
|