/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_upload_mgr.c | 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() 70 upload->usage = usage; in u_upload_create() 71 upload->flags = flags; in u_upload_create() 73 upload->map_persistent = in u_upload_create() 77 if (upload->map_persistent) { in u_upload_create() 78 upload->map_flags = PIPE_TRANSFER_WRITE | in u_upload_create() [all …]
|
D | u_upload_mgr.h | 70 u_upload_clone(struct pipe_context *pipe, struct u_upload_mgr *upload); 75 void u_upload_destroy( struct u_upload_mgr *upload ); 87 void u_upload_unmap( struct u_upload_mgr *upload ); 100 void u_upload_alloc(struct u_upload_mgr *upload, 115 void u_upload_data(struct u_upload_mgr *upload,
|
/external/mesa3d/src/gallium/state_trackers/nine/ |
D | nine_buffer_upload.c | 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() 131 struct nine_buffer_upload *upload; in nine_upload_create() local [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/mesa/drivers/dri/i965/ |
D | intel_upload.c | 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() 99 assert((brw->upload.bo == NULL) == (brw->upload.map == NULL)); in intel_upload_space() [all …]
|
/external/curl/docs/examples/ |
D | ftpuploadfrommem.c | 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() 75 upload.sizeleft = strlen(data); in main() [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/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>
|
D | test624 | 25 …u %USER: -T log/file624.txt sftp://%HOSTIP:%SSHPORT%POSIX_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 …nt_key.pub -u %USER: -T log/file602.txt sftp://%HOSTIP:%SSHPORT%POSIX_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>
|
D | test1038 | 23 FTP PASV upload resume from end of file 29 this is the *****cr@p******** that we're gonna upload 47 <upload> 48 cr@p******** that we're gonna upload 51 </upload>
|
D | test235 | 18 FTP resumed upload but no file present remotely 24 this is the *****crap******** that we're gonna upload 42 <upload> 43 this is the *****crap******** that we're gonna upload 46 </upload>
|
D | test505 | 23 FTP upload with rename after transfer 34 upload 43 <upload> 49 upload 53 </upload>
|
/external/deqp/doc/testspecs/GLES2/ |
D | performance.texture.upload.txt | 19 Texture upload performance tests 22 + dEQP-GLES2.performance.texture.upload.* 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 47 includes multiple upload and draw calls and one buffer swap). Texture
|
/external/python/google-api-python-client/tests/ |
D | test_http.py | 213 upload = MediaFileUpload(datafile('small.png')) 214 self.assertEqual('image/png', upload.mimetype()) 216 upload = MediaFileUpload(datafile('empty')) 217 self.assertEqual('application/octet-stream', upload.mimetype()) 220 upload = MediaFileUpload( 222 self.assertEqual('image/png', upload.mimetype()) 223 self.assertEqual(190, upload.size()) 224 self.assertEqual(True, upload.resumable()) 225 self.assertEqual(500, upload.chunksize()) 226 self.assertEqual(b'PNG', upload.getbytes(1, 3)) [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/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
|
/external/curl/tests/libtest/ |
D | lib591.c | 44 FILE *upload = NULL; in test() local 48 upload = fopen(libtest_arg3, "rb"); in test() 49 if(!upload) { in test() 58 fclose(upload); in test() 74 easy_setopt(easy, CURLOPT_READDATA, upload); in test() 142 fclose(upload); in test()
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_upload.py | 7 from distutils.command import upload as upload_mod 8 from distutils.command.upload import upload 81 cmd = upload(dist) 94 cmd = upload(dist) 101 cmd = upload(dist) 115 cmd = upload(dist) 148 cmd = upload(dist)
|