Searched refs:upload (Results 1 - 25 of 64) sorted by relevance

123

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_upload_mgr.c44 unsigned default_size; /* Minimum size of the upload buffer, in bytes. */
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;
68 upload
117 u_upload_alloc_buffer( struct u_upload_mgr *upload, unsigned min_size ) argument
156 u_upload_alloc( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, unsigned *out_offset, struct pipe_resource **outbuf, void **ptr ) argument
213 u_upload_data( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned size, const void *data, unsigned *out_offset, struct pipe_resource **outbuf) argument
237 u_upload_buffer( struct u_upload_mgr *upload, unsigned min_out_offset, unsigned offset, unsigned size, struct pipe_resource *inbuf, unsigned *out_offset, struct pipe_resource **outbuf) argument
[all...]
H A 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 Uploa
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_buffer_objects.c491 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
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_buffer_objects.c491 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
[all...]
H A Dbrw_draw_upload.c317 * 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[
[all...]
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_buffer_objects.c491 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
[all...]
/external/skia/src/gpu/
H A DGrBatchTarget.h65 virtual void upload(TextureUploader)=0;
71 void upload(Uploader* upload) { argument
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));
H A DGrBatchTarget.cpp48 fInlineUploads[fInlineUpdatesIndex++]->upload(TextureUploader(fGpu));
H A DGrBatchAtlas.cpp28 // manages the lifetime of its data using two tokens, a last ref toke and a last upload token.
77 // to manage the lifetime of a plot, we use two tokens. We use last upload token to know when
78 // we can 'piggy back' uploads, ie if the last upload hasn't been flushed to gpu, we don't need
79 // to issue a new upload even if we update the cpu backing store. We use lastref to determine
209 void upload(GrBatchTarget::TextureUploader uploader) override {
276 // If our most recent upload has already occurred then we have to insert a new
277 // upload. Otherwise, we already have a scheduled upload that hasn't yet ocurred.
282 batchTarget->upload(uploader);
347 batchTarget->upload(uploade
[all...]
/external/chromium-trace/trace-viewer/tracing/third_party/python_gflags/
H A DMakefile48 @echo "Files to upload:"
59 - python setup.py sdist upload
60 - python setup.py bdist_egg upload
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_fragprog.c66 boolean upload = FALSE; local
74 upload = TRUE;
91 upload = TRUE;
95 if (upload)
102 if (nv30->state.fragprog != fp || upload) {
/external/deqp/framework/opengl/
H A DgluTexture.hpp54 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);
H A DgluTexture.cpp80 void Texture1D::upload (void) function in class:glu::Texture1D
87 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
94 continue; // Don't upload.
100 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
161 void Texture2D::upload (void) function in class:glu::Texture2D
170 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
177 continue; // Don't upload.
184 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
211 GLU_EXPECT_NO_ERROR(gl.getError(), "Texture upload failed");
251 texture->upload();
346 void TextureCube::upload (void) function in class:glu::TextureCube
469 void Texture1DArray::upload (void) function in class:glu::Texture1DArray
553 void Texture2DArray::upload (void) function in class:glu::Texture2DArray
673 void Texture3D::upload (void) function in class:glu::Texture3D
766 void TextureCubeArray::upload (void) function in class:glu::TextureCubeArray
896 void TextureBuffer::upload (void) function in class:glu::TextureBuffer
[all...]
/external/bison/build-aux/
H A 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
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
274 # Arguments: See upload, below
305 # upload DEST DESTDIR BASE FILE STMT FILES
312 # FILES List of files to upload
313 upload () function
[all...]
/external/ceres-solver/scripts/
H A Dmake_release113 # Reminder to upload.
122 - Build and upload RPM package.
/external/owasp/sanitizer/tools/
H A 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
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.
157 """Find credentials and upload
[all...]
/external/libphonenumber/demo/src/com/google/phonenumbers/
H A DPhoneNumberParserServlet.java62 ServletFileUpload upload = new ServletFileUpload();
63 upload.setSizeMax(50000);
65 FileItemIterator iterator = upload.getItemIterator(req);
/external/libexif/doc/
H A DMakefile.am110 upload: $(DOXYGEN_UPLOAD)
/external/nanohttpd/
H A DREADME.md18 * Supports file upload (since version 1.2, 2010) with minimal memory overhead.
/external/deqp/modules/gles2/functional/
H A Des2fTextureSizeTests.cpp137 m_texture->upload();
245 m_texture->upload();
/external/deqp/modules/gles3/functional/
H A Des3fTextureSizeTests.cpp137 m_texture->upload();
245 m_texture->upload();
/external/clang/www/demo/
H A Dindex.cgi154 Bitter Melon the cat says, paste a C/C++ program in the text box or upload
179 print "Or upload a file: ";
325 my $fh = $c->upload('uploaded_file');
/external/deqp/modules/gles2/performance/
H A Des2pTextureCases.cpp180 texture->upload();
/external/deqp/modules/gles3/performance/
H A Des3pTextureCases.cpp207 texture->upload();
/external/deqp/modules/gles31/functional/
H A Des31fTextureFilteringTests.cpp260 m_gradientTex->upload();
261 m_gridTex->upload();

Completed in 606 milliseconds

123