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

1 2 3 4

  /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/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...]
  /developers/build/
github.sh 5 ## GitHub Upload+Update Script (V2, combined) for DevPlat Samples
10 upload=true
34 --upload-only
85 --update-only) upload=false;;
87 --upload-only) update=false;;
116 if ! $upload && ! $update; then
117 echoerr -e "Do not use both --update-only and --upload-only, no samples will be processed.
206 if $upload; then
213 upload=false
214 echo "Nothing new to upload.
    [all...]
  /external/skia/src/gpu/
GrBatchTarget.h 65 virtual void upload(TextureUploader)=0;
71 void upload(Uploader* upload) { function in class:GrBatchTarget
72 if (this->asapToken() == upload->lastUploadToken()) {
73 fAsapUploads.push_back().reset(SkRef(upload));
75 fInlineUploads.push_back().reset(SkRef(upload));
94 fAsapUploads[i]->upload(TextureUploader(fGpu));
GrBatchTarget.cpp 48 fInlineUploads[fInlineUpdatesIndex++]->upload(TextureUploader(fGpu));
  /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)
  /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 36 * Before the buffer can be used by the GPU, for instance to upload
43 * using a PixelBuffer to upload to a texture.
116 * Upload the specified rectangle of this pixel buffer as a
120 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
123 * Upload the specified rectangle of this pixel buffer as a
130 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { function in class:android::uirenderer::PixelBuffer
131 upload(x, y, width, height, getOffset(x, y));
PixelBuffer.cpp 44 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
70 void CpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::CpuPixelBuffer
89 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) override;
149 void GpuPixelBuffer::upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) { function in class:android::uirenderer::GpuPixelBuffer
  /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/tracing/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/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) {
  /external/deqp/framework/opengl/
gluTexture.hpp 54 void upload (void);
77 void upload (void); // Not supported on compressed textures.
117 void upload (void); // Not supported on compressed textures.
153 void upload (void);
186 void upload (void);
216 void upload (void);
249 void upload (void);
293 // \note Doesn't upload data.
295 void upload (void);
  /external/bison/build-aux/
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>&
313 upload () function
    [all...]
  /external/chromium-trace/trace-viewer/perf_insights/perf_insights/
upload.py 29 <form action="/upload" enctype="multipart/form-data" method="post">
31 <div><input type="submit" value="Upload"></div>
58 app = webapp2.WSGIApplication([('/upload', UploadPage)])
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw_upload.c 317 * know what data to upload.
365 struct brw_vertex_element *upload[VERT_ATTRIB_MAX]; local
474 upload[nr_uploads++] = input;
478 /* If we need to upload all the arrays, then we can trim those arrays to
495 /* All uploads are interleaved, so upload the arrays together as
496 * interleaved. First, upload the contents and set up upload[0].
498 copy_array_to_vbo_array(brw, upload[0], min_index, max_index,
503 /* Then, just point upload[i] at upload[0]'s buffer. *
    [all...]
  /external/ceres-solver/scripts/
make_release 113 # Reminder to upload.
117 - Upload /tmp/ceres-solver-$1.tar.gz
122 - Build and upload RPM package.
  /external/owasp/sanitizer/tools/
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...]
  /frameworks/data-binding/developmentPlugins/bintrayPlugin/src/main/groovy/android/databinding/
UploadToBintrayTask.groovy 56 public void upload() {
73 throw new RuntimeException("failed to upload artifact. error: ${execute.err.text}")
78 throw new RuntimeException("Cannot upload artifact. Error response: " +
  /external/libphonenumber/demo/src/com/google/phonenumbers/
PhoneNumberParserServlet.java 62 ServletFileUpload upload = new ServletFileUpload(); local
63 upload.setSizeMax(50000);
65 FileItemIterator iterator = upload.getItemIterator(req);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sundry.py 49 import distutils.command.upload namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sundry.py 49 import distutils.command.upload namespace
  /external/libexif/doc/
Makefile.am 110 upload: $(DOXYGEN_UPLOAD)

Completed in 779 milliseconds

1 2 3 4