Home
last modified time | relevance | path

Searched full:upload (Results 1 – 25 of 861) sorted by relevance

12345678910>>...35

/external/mesa3d/src/gallium/auxiliary/util/
Du_upload_mgr.c44 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 …]
Du_upload_mgr.h42 * 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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_upload_mgr.c44 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 …]
Du_upload_mgr.h42 * 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/chromium_org/components/domain_reliability/
Dscheduler.h19 // Determines when an upload should be scheduled. A domain's config will
20 // specify minimum and maximum upload delays; the minimum upload delay ensures
21 // that Chrome will not send too many upload requests to a site by waiting at
22 // least that long after the first beacon, while the maximum upload delay makes
52 // If there is no upload pending, schedules an upload based on the provided
57 // Returns which collector to use for an upload that is about to start. Must
59 // before OnUploadComplete is called. (Also records the upload start time for
60 // future retries, if the upload ends up failing.)
63 // Updates the scheduler state based on the result of an upload. Must be
65 // upload was successful, and false otherwise.
[all …]
Dscheduler_unittest.cc47 << "expected no upload, got upload between " in CheckNoPendingUpload()
65 << "expected upload between " << expected_min.InSeconds() in CheckPendingUpload()
67 << "got upload between " << callback_min_.InSeconds() in CheckPendingUpload()
71 << "expected upload between " << expected_min.InSeconds() in CheckPendingUpload()
73 << "got no upload"; in CheckPendingUpload()
86 << "expected upload to collector " << expected_collector in CheckStartingUpload()
87 << ", got upload to collector " << collector; in CheckStartingUpload()
185 // Make sure that the scheduler uses the first available collector at upload
218 // No pending upload after beacon. in TEST_F()
231 // If a beacon arrives during the upload, a new upload should be pending. in TEST_F()
/external/arduino/hardware/arduino/
Dboards.txt4 uno.upload.protocol=stk500
5 uno.upload.maximum_size=32256
6 uno.upload.speed=115200
22 atmega328.upload.protocol=stk500
23 atmega328.upload.maximum_size=30720
24 atmega328.upload.speed=57600
42 diecimila.upload.protocol=stk500
43 diecimila.upload.maximum_size=14336
44 diecimila.upload.speed=19200
62 mega2560.upload.protocol=stk500v2
[all …]
/external/chromium_org/content/browser/loader/
Dupload_data_stream_builder_unittest.cc75 scoped_ptr<net::UploadDataStream> upload(UploadDataStreamBuilder::Build( in TEST() local
78 EXPECT_EQ(kIdentifier, upload->identifier()); in TEST()
79 ASSERT_EQ(request_body->elements()->size(), upload->element_readers().size()); in TEST()
82 upload->element_readers()[0]->AsBytesReader(); in TEST()
87 upload->element_readers()[1]->AsFileReader(); in TEST()
118 // Setup upload data elements for comparison. in TEST()
146 scoped_ptr<net::UploadDataStream> upload( in TEST() local
153 ASSERT_EQ(2U, upload->element_readers().size()); in TEST()
155 *upload->element_readers()[0], upload_element1)); in TEST()
157 *upload->element_readers()[1], upload_element2)); in TEST()
[all …]
/external/deqp/doc/testspecs/GLES3/
Dperformance.buffer.data_upload.txt19 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/mesa3d/src/mesa/drivers/dri/i965/
Dintel_buffer_objects.c491 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
Dintel_buffer_objects.c491 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/
Dintel_buffer_objects.c491 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dintel_buffer_objects.c491 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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
Dintel_buffer_objects.c491 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/
Dintel_buffer_objects.c491 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/GLES2/
Dperformance.texture.upload.txt19 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/chromium_org/components/rappor/
Dlog_uploader.h28 // fixed interval after the successful upload of the previous logs. If an
29 // upload fails, the uploader will keep retrying the upload with an exponential
50 // Checks if an upload has been scheduled.
60 // Increases the upload interval each time it's called, to handle the case
69 // Called when the upload is completed.
72 // The server URL to upload logs to.
87 // A timer used to delay before attempting another upload.
90 // Indicates that the last triggered upload hasn't resolved yet.
93 // The interval to wait after an upload's URLFetcher completion before
94 // starting the next upload attempt.
/external/chromium_org/chrome/browser/resources/media/
Dwebrtc_logs.js27 var upload = uploads[i];
34 upload['capture_time'].length != 0 ?
35 upload['capture_time'] :
36 upload['upload_time']);
40 if (upload['local_file'].length == 0) {
47 localFileLink.href = 'file://' + upload['local_file'];
50 upload['local_file']);
56 if (upload['id'].length == 0) {
62 upload['upload_time']) + '. ' +
64 upload['id']) + '. ';
[all …]
/external/chromium_org/components/metrics/
Dmetrics_reporting_scheduler.h30 // Callback from MetricsService when a triggered upload finishes.
33 // Callback from MetricsService when a triggered upload is cancelled by the
37 // Sets the upload interval to a specific value, exposed for unit tests.
41 // Timer callback indicating it's time for the MetricsService to upload
48 // Increases the upload interval each time it's called, to handle the case
57 // The interval between being told an upload is done and starting the next
58 // upload.
65 // Indicates that the last triggered upload hasn't resolved yet.
71 // Whether the initial scheduled upload timer has fired before the init task
/external/chromium_org/chrome/test/chromedriver/third_party/googlecode/
Dgooglecode_upload.py12 # 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
65 def upload(file, project_name, user_name, password, summary, labels=None): function
66 """Upload a file to a Google Code project's file server.
78 http_status: 201 if the upload succeeded, something else if an
81 file_url: If the upload succeeded, the URL of the file on Google
120 the file to upload. The file will be uploaded to Google Code with
130 # Add the metadata about the upload first
149 # The upload server determines the mime-type, no need to set it.
[all …]
/external/chromium_org/cc/resources/
Dresource_update_queue.cc15 void ResourceUpdateQueue::AppendFullUpload(const ResourceUpdate& upload) { in AppendFullUpload() argument
16 full_entries_.push_back(upload); in AppendFullUpload()
19 void ResourceUpdateQueue::AppendPartialUpload(const ResourceUpdate& upload) { in AppendPartialUpload() argument
20 partial_entries_.push_back(upload); in AppendPartialUpload()
33 ResourceUpdate upload = temp.front(); in ClearUploadsToEvictedResources() local
35 if (!upload.texture->BackingResourceWasEvicted()) in ClearUploadsToEvictedResources()
36 entry_queue->push_back(upload); in ClearUploadsToEvictedResources()
/external/owasp/sanitizer/tools/
Dgooglecode_upload.py12 # 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/chromium_org/native_client_sdk/src/gonacl_appengine/src/
DMakefile6 # This script allows you to build, upload, and publish demo binaries that will
9 # NOTE: you normally should not upload examples. This will be done
26 # * Build and upload all examples.
28 # $ make upload REVISION=1234
30 # * Build and upload a single example
32 # $ make upload-bullet REVISION=1234
67 # foo_EXTRA_UPLOADS: additional files to upload for this project (optional)
203 # All files to upload for this project.
229 # Define rules to upload the project files to the continuous builder directory
235 .PHONY: upload-$(1)
[all …]
/external/chromium_org/google_apis/drive/
Ddrive_api_requests_unittest.cc48 const char kTestUploadExistingFilePath[] = "/upload/existingfile/path";
49 const char kTestUploadNewFilePath[] = "/upload/newfile/path";
237 // Returns the response based on set expected upload url.
246 // The request is for resume uploading or the expected upload url is not in HandleInitiateUploadRequest()
256 // Check if the X-Upload-Content-Length is present. If yes, store the in HandleInitiateUploadRequest()
259 request.headers.find("X-Upload-Content-Length"); in HandleInitiateUploadRequest()
381 // These are for the current upload file status.
956 EXPECT_EQ(kTestContentType, http_request_.headers["X-Upload-Content-Type"]); in TEST_F()
958 http_request_.headers["X-Upload-Content-Length"]); in TEST_F()
961 EXPECT_EQ("/upload/drive/v2/files?uploadType=resumable", in TEST_F()
[all …]
/external/bison/build-aux/
Dgnupload2 # 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 …]

12345678910>>...35