/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. */ 54 unsigned offset; /* Aligned offset to the upload buffer, pointing 63 struct u_upload_mgr *upload = CALLOC_STRUCT(u_upload_mgr); in u_upload_create() local 64 if (!upload) in u_upload_create() 67 upload->pipe = pipe; in u_upload_create() 68 upload->default_size = default_size; in u_upload_create() 69 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); 73 * Destroy the upload manager. 75 void u_upload_destroy( struct u_upload_mgr *upload ); 78 * Unmap upload buffer 80 * \param upload Upload manager 83 * which references the upload buffer, as many memory managers either 87 void u_upload_unmap( struct u_upload_mgr *upload ); 90 * Sub-allocate new memory from the upload buffer. [all …]
|
/external/skqp/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/0/0f/Seal_of_California.svg 15 https://upload.wikimedia.org/wikipedia/commons/5/51/Colorado-StateSeal.svg 16 https://upload.wikimedia.org/wikipedia/commons/e/e5/Connecticut-StateSeal.svg 17 https://upload.wikimedia.org/wikipedia/commons/c/c0/Delaware-StateSeal.svg 18 https://upload.wikimedia.org/wikipedia/commons/b/bf/Florida-StateSeal.svg 19 https://upload.wikimedia.org/wikipedia/commons/e/e0/Georgia-StateSeal.svg 20 https://upload.wikimedia.org/wikipedia/commons/c/c5/Hawaii-StateSeal.svg [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/0/0f/Seal_of_California.svg 15 https://upload.wikimedia.org/wikipedia/commons/5/51/Colorado-StateSeal.svg 16 https://upload.wikimedia.org/wikipedia/commons/e/e5/Connecticut-StateSeal.svg 17 https://upload.wikimedia.org/wikipedia/commons/c/c0/Delaware-StateSeal.svg 18 https://upload.wikimedia.org/wikipedia/commons/b/bf/Florida-StateSeal.svg 19 https://upload.wikimedia.org/wikipedia/commons/e/e0/Georgia-StateSeal.svg 20 https://upload.wikimedia.org/wikipedia/commons/c/c5/Hawaii-StateSeal.svg [all …]
|
/external/mesa3d/src/gallium/state_trackers/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/python/google-api-python-client/docs/dyn/ |
D | analytics_v3.management.uploads.html | 79 <p class="firstline">Delete data associated with a previous upload.</p> 88 <p class="firstline">Upload data for a custom data source.</p> 92 <pre>Delete data associated with a previous upload. 101 { # Request template for the delete upload data request. 102 "customDataImportUids": [ # A list of upload UIDs. 115 accountId: string, Account Id for the upload to retrieve. (required) 116 webPropertyId: string, Web property Id for the upload to retrieve. (required) 117 customDataSourceId: string, Custom data source Id for upload to retrieve. (required) 118 uploadId: string, Upload Id to retrieve. (required) 123 { # Metadata returned for an upload operation. [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_upload.c | 28 * Batched upload via BOs. 50 assert((brw->upload.bo == NULL) == (brw->upload.map == NULL)); in intel_upload_finish() 51 if (!brw->upload.bo) in intel_upload_finish() 54 brw_bo_unmap(brw->upload.bo); in intel_upload_finish() 55 brw_bo_unreference(brw->upload.bo); in intel_upload_finish() 56 brw->upload.bo = NULL; in intel_upload_finish() 57 brw->upload.map = NULL; in intel_upload_finish() 58 brw->upload.next_offset = 0; in intel_upload_finish() 93 offset = ALIGN_NPOT(brw->upload.next_offset, alignment); in intel_upload_space() 94 if (brw->upload.bo && offset + size > brw->upload.bo->size) { in intel_upload_space() [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/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/curl/docs/examples/ |
D | ftpuploadfrommem.c | 23 * FTP upload a file from memory 48 struct WriteThis *upload = (struct WriteThis *)userp; in read_callback() local 54 if(upload->sizeleft) { in read_callback() 56 if(copylen > upload->sizeleft) in read_callback() 57 copylen = upload->sizeleft; in read_callback() 58 memcpy(ptr, upload->readptr, copylen); in read_callback() 59 upload->readptr += copylen; in read_callback() 60 upload->sizeleft -= copylen; in read_callback() 72 struct WriteThis upload; in main() local 74 upload.readptr = data; in main() [all …]
|
/external/python/apitools/apitools/base/py/ |
D | transfer.py | 17 """Upload and download support for apitools.""" 40 'Upload', 68 """Print upload progress based on response.""" 73 """Print information about a completed upload.""" 74 print('Upload complete') 532 class Upload(_Transfer): class 534 """Data for a single Upload. 537 stream: The stream to upload. 538 mime_type: MIME type of the upload. 539 total_size: (optional) Total upload size for the stream. [all …]
|
/external/skqp/src/gpu/ |
D | GrDeferredUpload.h | 21 * contents. In that case the ASAP upload would happen prior to the draw and therefore the draw 23 * should schedule an inline upload. 25 * Ops, in conjunction with helpers such as GrDrawOpAtlas, use upload tokens to know what the most 29 * token has been flushed. If it has not been flushed then the op must perform an inline upload 30 * instead so that the upload occurs after the draw depending on the old contents and before the 31 * draw depending on the updated contents. When scheduling an inline upload the op provides the 32 * token of the draw that the upload must occur before. 115 * Passed to a deferred upload when it is executed, this method allows the deferred upload to 123 * A deferred texture upload is simply a std::function that takes a 125 * upload as the draw/upload sequence is executed. [all …]
|
/external/skia/src/gpu/ |
D | GrDeferredUpload.h | 21 * contents. In that case the ASAP upload would happen prior to the draw and therefore the draw 23 * should schedule an inline upload. 25 * Ops, in conjunction with helpers such as GrDrawOpAtlas, use upload tokens to know what the most 29 * token has been flushed. If it has not been flushed then the op must perform an inline upload 30 * instead so that the upload occurs after the draw depending on the old contents and before the 31 * draw depending on the updated contents. When scheduling an inline upload the op provides the 32 * token of the draw that the upload must occur before. 115 * Passed to a deferred upload when it is executed, this method allows the deferred upload to 123 * A deferred texture upload is simply a std::function that takes a 125 * upload as the draw/upload sequence is executed. [all …]
|
/external/curl/tests/data/ |
D | test625 | 25 …:%SSHPORT%POSIX_PWD/log/test625.a/upload.625 -T log/file625.txt sftp://%HOSTIP:%SSHPORT%POSIX_PWD/… 28 …est610.pl move %PWD/log/test625.a/upload.625 %PWD/log/upload.625 rmdir %PWD/log/test625.a rm %PWD/… 32 for ssh upload test 39 <upload> 41 for ssh upload test 42 </upload>
|
D | test603 | 5 SCP upload 21 SCP upload 24 …ent_key.pub -u %USER: -T log/file603.txt scp://%HOSTIP:%SSHPORT%POSIX_PWD/log/upload.603 --insecure 28 for ssh upload test 35 <upload> 37 for ssh upload test 38 </upload>
|
/external/python/setuptools/setuptools/command/ |
D | upload_docs.py | 4 Implements a Distutils 'upload_docs' subcommand (upload documentation to 23 from .upload import upload 31 class upload_docs(upload): 36 description = 'Upload documentation to PyPI' 40 "url of repository [default: %s]" % upload.DEFAULT_REPOSITORY), 43 ('upload-dir=', None, 'directory to upload'), 45 boolean_options = upload.boolean_options 55 upload.initialize_options(self) 60 upload.finalize_options(self) 73 self.announce('Using upload directory %s' % self.target_dir) [all …]
|
/external/curl/docs/cmdline-opts/ |
D | upload-file.d | 1 Long: upload-file 10 file name to use. That will most likely cause the upload operation to fail. If 18 You can specify one --upload-file for each URL on the command line. Each 19 --upload-file + URL pair specifies what to upload and to where. curl also 20 supports "globbing" of the --upload-file argument, meaning that you can upload 24 curl --upload-file "{file1,file2}" http://www.example.com 28 curl -T "img[1-1000].png" ftp://ftp.example.com/upload/
|
/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/' 163 cmd = upload(dist) [all …]
|
/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/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | uploader.py | 20 'Attempted to partially initialize upload data with bucket %s, ' 35 def Upload(self, force=False): member in CloudStorageUploader 36 """Upload all pending files and then write the updated config to disk. 38 Will attempt to copy files existing in the upload location to a backup 43 file already exists in the upload location. 47 upload location of a file already exists. 57 logging.debug('A file already exists at upload path %s in self.cs_bucket' 73 logging.error('Failed to upload %s to %s in cloud_storage bucket %s', 79 """Attempt to undo the previous call to Upload. 81 Does nothing if no previous call to Upload was made, or if nothing was
|
/external/python/cpython3/Doc/distutils/ |
D | packageindex.rst | 15 Distutils provides the :command:`register` and :command:`upload` commands for 50 and the :ref:`upload <package-upload>` command for submitting distribution 91 .. _package-upload: 93 The ``upload`` command 96 The distutils command :command:`upload` pushes the distribution files to PyPI. 101 python setup.py sdist bdist_wininst upload 106 line for the invocation including the :command:`upload` command are uploaded. 109 and if the password was entered in the prompt, :command:`upload` will reuse the 113 You can use the ``--sign`` option to tell :command:`upload` to sign each 118 See :ref:`package-cmdoptions` for additional options to the :command:`upload` [all …]
|
/external/owasp/sanitizer/tools/ |
D | googlecode_upload.py | 12 # To upload a file to Google Code, you need to provide a path to the 21 # Note that the upload script requests that you enter your 33 # the upload() function, which is the meat of the uploader. You 59 def upload(file, project_name, user_name, password, summary, labels=None): function 60 """Upload a file to a Google Code project's file server. 72 http_status: 201 if the upload succeeded, something else if an 75 file_url: If the upload succeeded, the URL of the file on Google 114 the file to upload. The file will be uploaded to Google Code with 124 # Add the metadata about the upload first 143 # The upload server determines the mime-type, no need to set it. [all …]
|
/external/python/cpython2/Doc/distutils/ |
D | packageindex.rst | 15 Distutils provides the :command:`register` and :command:`upload` commands for 50 and the :ref:`upload <package-upload>` command for submitting distribution 91 .. _package-upload: 93 The ``upload`` command 98 The distutils command :command:`upload` pushes the distribution files to PyPI. 103 python setup.py sdist bdist_wininst upload 108 line for the invocation including the :command:`upload` command are uploaded. 111 and if the password was entered in the prompt, :command:`upload` will reuse the 115 You can use the ``--sign`` option to tell :command:`upload` to sign each 120 See :ref:`package-cmdoptions` for additional options to the :command:`upload` [all …]
|
/external/deqp/framework/opengl/ |
D | gluTexture.cpp | 80 void Texture1D::upload (void) in upload() function in glu::Texture1D 87 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload() 94 continue; // Don't upload. in upload() 100 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload() 161 void Texture2D::upload (void) in upload() function in glu::Texture2D 170 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload() 177 continue; // Don't upload. in upload() 184 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in upload() 206 // Upload to GL texture in compressed form. in loadCompressed() 211 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed"); in loadCompressed() [all …]
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_upload.py | 2 """Tests for distutils.command.upload.""" 7 from distutils.command import upload as upload_mod 8 from distutils.command.upload import upload 81 cmd = upload(dist) 85 ('repository', 'https://upload.pypi.org/legacy/')): 94 cmd = upload(dist) 101 cmd = upload(dist) 115 cmd = upload(dist) 126 'https://upload.pypi.org/legacy/') 148 cmd = upload(dist)
|