HomeSort by relevance Sort by last modified time
    Searched refs:upload (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
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 ); local
63 if (!upload)
66 upload->pipe = pipe;
67 upload->default_size = default_size
    [all...]
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 manage
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
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 ); local
63 if (!upload)
66 upload->pipe = pipe;
67 upload->default_size = default_size
    [all...]
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 manage
    [all...]
  /external/chromium_org/cc/resources/
resource_update_queue.cc 15 void ResourceUpdateQueue::AppendFullUpload(const ResourceUpdate& upload) {
16 full_entries_.push_back(upload);
19 void ResourceUpdateQueue::AppendPartialUpload(const ResourceUpdate& upload) {
20 partial_entries_.push_back(upload);
33 ResourceUpdate upload = temp.front(); local
35 if (!upload.texture->BackingResourceWasEvicted())
36 entry_queue->push_back(upload);
resource_update_queue.h 20 void AppendFullUpload(const ResourceUpdate& upload);
21 void AppendPartialUpload(const ResourceUpdate& upload);
bitmap_skpicture_content_layer_updater.cc 33 ResourceUpdate upload = ResourceUpdate::Create( local
36 queue->AppendPartialUpload(upload);
38 queue->AppendFullUpload(upload);
image_layer_updater.cc 51 ResourceUpdate upload = ResourceUpdate::Create( local
54 queue->AppendPartialUpload(upload);
56 queue->AppendFullUpload(upload);
  /external/chromium_org/content/browser/loader/
upload_data_stream_builder_unittest.cc 75 scoped_ptr<net::UploadDataStream> upload(UploadDataStreamBuilder::Build(
78 EXPECT_EQ(kIdentifier, upload->identifier());
79 ASSERT_EQ(request_body->elements()->size(), upload->element_readers().size());
82 upload->element_readers()[0]->AsBytesReader();
87 upload->element_readers()[1]->AsFileReader();
118 // Setup upload data elements for comparison.
146 scoped_ptr<net::UploadDataStream> upload(
153 ASSERT_EQ(2U, upload->element_readers().size());
155 *upload->element_readers()[0], upload_element1));
157 *upload->element_readers()[1], upload_element2))
    [all...]
  /external/arduino/hardware/arduino/
boards.txt 4 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=stk500v
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_buffer_objects.c 491 if (!intel->upload.bo)
494 if (intel->upload.buffer_len) {
495 drm_intel_bo_subdata(intel->upload.bo,
496 intel->upload.buffer_offset,
497 intel->upload.buffer_len,
498 intel->upload.buffer);
499 intel->upload.buffer_len = 0;
502 drm_intel_bo_unreference(intel->upload.bo);
503 intel->upload.bo = NULL;
513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_buffer_objects.c 491 if (!intel->upload.bo)
494 if (intel->upload.buffer_len) {
495 drm_intel_bo_subdata(intel->upload.bo,
496 intel->upload.buffer_offset,
497 intel->upload.buffer_len,
498 intel->upload.buffer);
499 intel->upload.buffer_len = 0;
502 drm_intel_bo_unreference(intel->upload.bo);
503 intel->upload.bo = NULL;
513 intel->upload.bo = drm_intel_bo_alloc(intel->bufmgr, "upload", size, 0)
    [all...]
  /external/chromium_org/chrome/browser/resources/media/
webrtc_logs.js 27 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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
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 namespace
77 cmd = upload(dist)
90 cmd = upload(dist)
97 cmd = upload(dist)
111 cmd = upload(dist)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
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 namespace
77 cmd = upload(dist)
90 cmd = upload(dist)
97 cmd = upload(dist)
111 cmd = upload(dist)
  /external/chromium_org/chrome/browser/ui/webui/media/
webrtc_logs_ui.cc 95 // Asynchronously fetches the list of upload WebRTC logs. Called from JS.
159 base::DictionaryValue* upload = new base::DictionaryValue(); local
160 upload->SetString("id", i->id);
165 upload->SetString("upload_time", value_w);
173 upload->SetString("capture_time", value_w);
179 upload->SetString("local_file", value);
181 upload_list.Append(upload);
  /frameworks/base/core/tests/coretests/src/com/android/internal/http/multipart/
MultipartTest.java 34 File upload = File.createTempFile("Multipart", "test"); local
36 FileWriter outFile = new FileWriter(upload);
47 parts[1] = new FilePart(upload.getName(), upload);
81 output.append(upload.getName());
83 output.append(upload.getName());
  /frameworks/base/libs/hwui/
PixelBuffer.h 35 * Before the buffer can be used by the GPU, for instance to upload
42 * using a PixelBuffer to upload to a texture.
115 * Upload the specified rectangle of this pixel buffer as a
119 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
122 * Upload the specified rectangle of this pixel buffer as a
129 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { function in class:android::uirenderer::PixelBuffer
130 upload(x, y, width, height, getOffset(x, y));
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TextureUploader.java 69 private int upload(GLCanvas canvas, ArrayDeque<UploadedTexture> deque, method in class:TextureUploader
97 uploadQuota = upload(canvas, mFgTextures, uploadQuota, false);
99 upload(canvas, mBgTextures, uploadQuota, true); method
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
Makefile 48 @echo "Files to upload:"
54 # Upload the source package to code.google.com
58 # Upload the package to PyPi
59 - python setup.py sdist upload
60 - python setup.py bdist_egg upload
62 # Upload the package to the ppa
  /external/chromium_org/components/breakpad/app/
breakpad_linux_impl.h 54 bool upload; // Whether to upload or save crash dump. member in struct:breakpad::BreakpadInfo
  /external/chromium_org/third_party/python_gflags/
Makefile 48 @echo "Files to upload:"
54 # Upload the source package to code.google.com
58 # Upload the package to PyPi
59 - python setup.py sdist upload
60 - python setup.py bdist_egg upload
62 # Upload the package to the ppa
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
__init__.py 14 from subcommands.upload import UploadCommand
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_fragprog.c 66 boolean upload = FALSE; local
74 upload = TRUE;
91 upload = TRUE;
95 if (upload)
102 if (nv30->state.fragprog != fp || upload) {
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_fragprog.c 66 boolean upload = FALSE; local
74 upload = TRUE;
91 upload = TRUE;
95 if (upload)
102 if (nv30->state.fragprog != fp || upload) {

Completed in 594 milliseconds

1 2 3 4 5 6