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

12345678

/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...]
/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/curl/tests/libtest/
H A Dlib591.c46 FILE *upload = NULL; local
51 upload = fopen(libtest_arg3, "rb");
52 if(!upload) {
62 fclose(upload);
78 easy_setopt(easy, CURLOPT_READDATA, upload);
146 fclose(upload);
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
H A Dapp.yaml27 upload: (.*\.(png|css|js))
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
H A DOISWiiMoteForceFeedback.h40 /** @copydoc ForceFeedback::upload */
41 void upload( const Effect* effect );
H A DOISWiiMoteForceFeedback.cpp44 void WiiMoteForceFeedback::upload( const Effect* effect ) function in class:WiiMoteForceFeedback
/external/skia/src/gpu/
H A DGrBatchFlushState.h16 /** Simple class that performs the upload on behalf of a GrBatchUploader. */
55 /** Inserts an upload to be executred after all batches in the flush prepared their draws
57 void addASAPUpload(GrBatchUploader* upload) { argument
58 fAsapUploads.push_back().reset(SkRef(upload));
74 /** This is a magic token that can be used to indicate that an upload should occur before
89 fAsapUploads[i]->upload(&fUploader);
131 void upload(GrBatchUploader* upload) { argument
132 if (this->asapToken() == upload->lastUploadToken()) {
133 fState->addASAPUpload(upload);
[all...]
/external/opencv3/modules/videostab/src/
H A Doptical_flow.cpp78 frame0_.upload(frame0.getMat());
79 frame1_.upload(frame1.getMat());
80 points0_.upload(points0.getMat());
126 frame0_.upload(frame0.getMat());
127 frame1_.upload(frame1.getMat());
/external/chromium-trace/catapult/third_party/gsutil/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/chromium-trace/catapult/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/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
H A Dapp.yaml27 upload: forms_static/(.*)\.(png|css|js)
/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/opencv3/modules/cudaarithm/test/
H A Dtest_stream.cpp92 d_dst.upload(src);
122 d_src.upload(src, stream);
139 d_src.upload(src, stream);
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
H A DOISForceFeedback.h71 virtual void upload( const Effect* effect ) = 0;
/external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/linux/
H A DLinuxForceFeedback.h44 /** @copydoc ForceFeedback::upload */
45 void upload( const Effect* effect );
/external/opencv3/modules/cudalegacy/perf/
H A Dperf_bgsegm.cpp104 d_frame.upload(frame);
121 d_frame.upload(frame);
204 d_frame.upload(frame);
236 d_frame.upload(frame);
/external/opencv3/samples/gpu/
H A Ddriver_api_stereo_multi.cpp163 d_left[0].upload(left.rowRange(0, left.rows / 2));
164 d_right[0].upload(right.rowRange(0, right.rows / 2));
170 d_left[1].upload(left.rowRange(left.rows / 2, left.rows));
171 d_right[1].upload(right.rowRange(right.rows / 2, right.rows));
H A Dsurf_keypoint_matcher.cpp36 img1.upload(imread(argv[++i], IMREAD_GRAYSCALE));
41 img2.upload(imread(argv[++i], IMREAD_GRAYSCALE));
/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);
294 void upload (void);
/external/opencv3/samples/gpu/performance/
H A Dtests.cpp52 d_templ.upload(templ);
80 d_src.upload(src);
122 d_src.upload(src);
123 d_xmap.upload(xmap);
124 d_ymap.upload(ymap);
152 d_src.upload(src);
180 d_src.upload(src);
210 d_src.upload(src);
238 d_src.upload(src);
270 d_src.upload(sr
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dbase_api.py41 """Media upload information for a method.
46 max_size: (integer) Maximum size of a media upload, such as 3MB
83 upload_config: (ApiUploadInfo) Information about the upload
584 def __SetBody(self, http_request, method_config, request, upload):
604 if upload and not body_value:
612 upload=None, upload_config=None, download=None):
622 self.__SetBody(http_request, method_config, request, upload)
629 # It's important that upload and download go before we fill in the
631 if upload is not None:
632 upload
[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...]

Completed in 745 milliseconds

12345678