| /external/mesa3d/src/gallium/auxiliary/util/ |
| D | u_upload_mgr.c | 44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */ 48 struct pipe_resource *buffer; /* Upload buffer. */ 49 struct pipe_transfer *transfer; /* Transfer object for the upload buffer. */ 50 uint8_t *map; /* Pointer to the mapped upload buffer. */ 51 unsigned size; /* Actual size of the upload buffer. */ 52 unsigned offset; /* Aligned offset to the upload buffer, pointing 62 struct u_upload_mgr *upload = CALLOC_STRUCT( u_upload_mgr ); in u_upload_create() local 63 if (!upload) in u_upload_create() 66 upload->pipe = pipe; in u_upload_create() 67 upload->default_size = default_size; in u_upload_create() [all …]
|
| D | u_upload_mgr.h | 42 * Create the upload manager. 45 * \param default_size Minimum size of the upload buffer, in bytes. 46 * \param alignment Alignment of each suballocation in the upload buffer. 55 * Destroy the upload manager. 57 void u_upload_destroy( struct u_upload_mgr *upload ); 60 * Unmap and release old upload buffer. 62 * This is like u_upload_unmap() except the upload buffer is released for 67 void u_upload_flush( struct u_upload_mgr *upload ); 70 * Unmap upload buffer 72 * \param upload Upload manager [all …]
|
| /external/skia/tools/svg/ |
| D | svgs.txt | 17 https://upload.wikimedia.org/wikipedia/commons/6/6d/Alabama-StateSeal.svg 18 https://upload.wikimedia.org/wikipedia/commons/2/2b/Alaska-StateSeal.svg 19 https://upload.wikimedia.org/wikipedia/commons/7/7e/Arizona-StateSeal.svg 20 https://upload.wikimedia.org/wikipedia/commons/0/0f/Seal_of_California.svg 21 https://upload.wikimedia.org/wikipedia/commons/5/51/Colorado-StateSeal.svg 22 https://upload.wikimedia.org/wikipedia/commons/e/e5/Connecticut-StateSeal.svg 23 https://upload.wikimedia.org/wikipedia/commons/c/c0/Delaware-StateSeal.svg 24 https://upload.wikimedia.org/wikipedia/commons/b/bf/Florida-StateSeal.svg 25 https://upload.wikimedia.org/wikipedia/commons/e/e0/Georgia-StateSeal.svg 26 https://upload.wikimedia.org/wikipedia/commons/c/c5/Hawaii-StateSeal.svg [all …]
|
| /external/mesa3d/src/mesa/drivers/dri/i965/ |
| D | intel_buffer_objects.c | 491 if (!intel->upload.bo) in intel_upload_finish() 494 if (intel->upload.buffer_len) { in intel_upload_finish() 495 drm_intel_bo_subdata(intel->upload.bo, in intel_upload_finish() 496 intel->upload.buffer_offset, in intel_upload_finish() 497 intel->upload.buffer_len, in intel_upload_finish() 498 intel->upload.buffer); in intel_upload_finish() 499 intel->upload.buffer_len = 0; in intel_upload_finish() 502 drm_intel_bo_unreference(intel->upload.bo); in intel_upload_finish() 503 intel->upload.bo = NULL; in intel_upload_finish() 513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0); in wrap_buffers() [all …]
|
| /external/mesa3d/src/mesa/drivers/dri/i915/ |
| D | intel_buffer_objects.c | 491 if (!intel->upload.bo) in intel_upload_finish() 494 if (intel->upload.buffer_len) { in intel_upload_finish() 495 drm_intel_bo_subdata(intel->upload.bo, in intel_upload_finish() 496 intel->upload.buffer_offset, in intel_upload_finish() 497 intel->upload.buffer_len, in intel_upload_finish() 498 intel->upload.buffer); in intel_upload_finish() 499 intel->upload.buffer_len = 0; in intel_upload_finish() 502 drm_intel_bo_unreference(intel->upload.bo); in intel_upload_finish() 503 intel->upload.bo = NULL; in intel_upload_finish() 513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0); in wrap_buffers() [all …]
|
| /external/mesa3d/src/mesa/drivers/dri/intel/ |
| D | intel_buffer_objects.c | 491 if (!intel->upload.bo) in intel_upload_finish() 494 if (intel->upload.buffer_len) { in intel_upload_finish() 495 drm_intel_bo_subdata(intel->upload.bo, in intel_upload_finish() 496 intel->upload.buffer_offset, in intel_upload_finish() 497 intel->upload.buffer_len, in intel_upload_finish() 498 intel->upload.buffer); in intel_upload_finish() 499 intel->upload.buffer_len = 0; in intel_upload_finish() 502 drm_intel_bo_unreference(intel->upload.bo); in intel_upload_finish() 503 intel->upload.bo = NULL; in intel_upload_finish() 513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0); in wrap_buffers() [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/skia/src/gpu/ |
| D | GrOpFlushState.h | 25 /** Inserts an upload to be executed after all ops in the flush prepared their draws but before 27 void addASAPUpload(GrDrawOp::DeferredUploadFn&& upload) { in addASAPUpload() argument 28 fAsapUploads.emplace_back(std::move(upload)); in addASAPUpload() 74 void doUpload(GrDrawOp::DeferredUploadFn& upload) { in doUpload() argument 82 upload(wp); in doUpload() 129 * that case the ASAP upload would happen prior to the previous draw causing the draw to read the 130 * new (wrong) texture data. In that case they should schedule an inline upload. 136 * has been flushed. If it has not been flushed then the op must perform an inline upload instead. 137 * When scheduling an inline upload the op provides the token of the draw that the upload must occur 138 * before. The upload will then occur between the draw that requires the new data but after the [all …]
|
| /external/curl/tests/data/ |
| D | test625 | 25 …//%HOSTIP:%SSHPORT%PWD/log/test625.a/upload.625 -T log/file625.txt sftp://%HOSTIP:%SSHPORT%PWD/log… 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 …rl_client_key.pub -u %USER: -T log/file603.txt scp://%HOSTIP:%SSHPORT%PWD/log/upload.603 --insecure 28 for ssh upload test 35 <upload> 37 for ssh upload test 38 </upload>
|
| D | test624 | 25 ….pub -u %USER: -T log/file624.txt sftp://%HOSTIP:%SSHPORT%PWD/log/test624.dir/upload.624 --insecure 28 perl %SRCDIR/libtest/test610.pl move %PWD/log/test624.dir/upload.624 %PWD/log/upload.624 rmdir %PWD… 32 for ssh upload test 39 <upload> 41 for ssh upload test 42 </upload>
|
| D | test216 | 18 FTP upload two files to the same dir 21 -T log/upload.216 ftp://%HOSTIP:%FTPPORT/a/path/216/ -T log/upload.216 ftp://%HOSTIP:%FTPPORT/a/pat… 23 <file name="log/upload.216"> 24 upload this file twice 39 STOR upload.216
|
| D | test109 | 21 FTP PASV upload append 28 upload this 43 <upload> 45 upload this 46 </upload>
|
| D | test602 | 24 …l_client_key.pub -u %USER: -T log/file602.txt sftp://%HOSTIP:%SSHPORT%PWD/log/upload.602 --insecure 28 for ssh upload test 35 <upload> 37 for ssh upload test 38 </upload>
|
| D | test112 | 20 FTP PASV upload resume 26 this is the *****crap******** that we're gonna upload 43 <upload> 44 gonna upload 47 </upload>
|
| D | test541 | 23 FTP upload and upload same file again without rewind 34 upload 43 <upload> 44 </upload>
|
| /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/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/autotest/utils/ |
| D | packager.py | 4 Utility to upload or remove the packages from the packages repository. 18 ACTION_UPLOAD = 'upload' 60 " from client/deps directory and upload to the repo", 63 "from client/profilers directory and upload to the repo", 66 " or client/site_tests and upload to the repo.", 74 "repository location to upload the packages to.", 82 parser.add_option("--all", help="Upload all the files locally " 92 """Method to upload or remove package depending on the flag passed to it. 137 # Tar the source and upload 197 """Process a full upload of packages as a directory upload.""" [all …]
|
| /external/bison/build-aux/ |
| D | gnupload | 2 # Sign files and upload them. 50 -- treat the remaining arguments as files to upload 73 build directive files and upload files by FTP 75 build directive files and upload files by SFTP 76 [user@]host:DIRECTORY upload files with scp 84 1. Upload foobar-1.0.tar.gz to ftp.gnu.org: 87 2. Upload foobar-1.0.tar.gz and foobar-1.0.tar.xz to ftp.gnu.org: 95 4. Upload foobar-0.9.90.tar.gz to two sites: 100 5. Delete oopsbar-0.9.91.tar.gz and upload foobar-0.9.91.tar.gz 219 echo "$0: No file to upload" 1>&2 [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/ltp/testcases/network/stress/ftp/ |
| D | ftp-upload-stress | 22 TCID=ftp-upload-stress 28 # Big file size to upload (byte) 30 # Regular file size to upload(byte) 81 tst_resm TINFO "upload file with size '$UPLOAD_BIGFILESIZE'" 84 tst_rhost_run -s -c "ftp-upload-stress01-rmt $(tst_ipaddr) \ 92 tst_resm TINFO "Upload data asynchronously in $NS_DURATION sec" 94 tst_rhost_run -s -c "ftp-upload-stress02-rmt \
|
| /external/skia/infra/bots/assets/ |
| D | README.md | 5 primary entry point is assets.py, which allows a user to add, remove, upload, 17 * upload.py: Convenience script for uploading a new version of the asset. 19 * [optional] create\_and\_upload.py: Convenience script which combines create.py with upload.py. 25 Add a new asset and upload an initial version. 31 Creating infra/bots/assets/myasset/upload.py 34 $ infra/bots/assets/myasset/upload.py -t ${MY_ASSET_LOCATION}
|
| /external/curl/docs/ |
| D | FEATURES | 13 - multiple file upload on a single command line 34 - support for large files (>2GB and >4GB) during upload and download 86 - upload 87 - upload append 88 - upload via http-proxy as HTTP PUT 90 - upload resume 112 - upload 127 - upload 133 - upload 173 - upload e-mails via the append command
|