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

1 2 3 4 5 6 7 8 91011

  /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...]
  /external/curl/tests/libtest/
lib591.c 46 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/
app.yaml 27 upload: (.*\.(png|css|js))
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
dev.py 124 - Download the "upload.py" script from
126 - Run upload.py from your git directory with the changes.
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
OISWiiMoteForceFeedback.h 40 /** @copydoc ForceFeedback::upload */
41 void upload( const Effect* effect );
OISWiiMoteForceFeedback.cpp 44 void WiiMoteForceFeedback::upload( const Effect* effect ) function in class:WiiMoteForceFeedback
  /external/skia/src/gpu/
GrBatchFlushState.h 16 /** 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) {
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) { function in class:GrDrawBatch::Target
132 if (this->asapToken() == upload->lastUploadToken()) {
133 fState->addASAPUpload(upload);
    [all...]
  /external/opencv3/modules/videostab/src/
optical_flow.cpp 78 frame0_.upload(frame0.getMat());
79 frame1_.upload(frame1.getMat());
80 points0_.upload(points0.getMat());
126 frame0_.upload(frame0.getMat());
127 frame1_.upload(frame1.getMat());
  /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...]
  /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.
108 * Upload the specified rectangle of this pixel buffer as a
112 virtual void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height, int offset) = 0;
115 * Upload the specified rectangle of this pixel buffer as a
122 void upload(uint32_t x, uint32_t y, uint32_t width, uint32_t height) { function in class:android::uirenderer::PixelBuffer
123 upload(x, y, width, height, getOffset(x, y));
Texture.h 73 upload(format, width, height, format, GL_UNSIGNED_BYTE, nullptr);
83 void upload(const SkBitmap& source);
88 void upload(GLint internalformat, uint32_t width, uint32_t height,
  /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/catapult/third_party/gsutil/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-trace/catapult/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/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISForceFeedback.h 71 virtual void upload( const Effect* effect ) = 0;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
app.yaml 27 upload: forms_static/(.*)\.(png|css|js)
  /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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/gs/
resumable_upload_handler.py 43 count completed by the last upload attempt. If too many retries happen with
44 no progress (per configurable num_retries param), the upload will be
60 # (start, end) response indicating server has nothing (upload protocol uses
70 If supplied and the current process fails the upload, it can be
72 a valid tracker URI, we'll resume the upload from this URI; else
73 we'll start a new resumable upload (and write the URI to this
77 :param num_retries: the number of times we'll re-try a resumable upload
79 upload can span many more than this number of retries.)
98 # Ignore non-existent file (happens first time an upload
103 'upload from scratch.'
    [all...]
  /external/opencv3/modules/cudaarithm/test/
test_stream.cpp 92 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/linux/
LinuxForceFeedback.h 44 /** @copydoc ForceFeedback::upload */
45 void upload( const Effect* effect );

Completed in 2673 milliseconds

1 2 3 4 5 6 7 8 91011