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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ppapi/shared_impl/
media_stream_audio_track_shared.h 16 Attributes() : buffers(0) {}
17 int32_t buffers; member in struct:ppapi::MediaStreamAudioTrackShared::Attributes
media_stream_audio_track_shared.cc 12 if (attributes.buffers < 0)
media_stream_audio_track_shared_unittest.cc 16 // Verify buffers
19 attributes.buffers = 0;
22 attributes.buffers = 8;
25 attributes.buffers = 1024;
28 attributes.buffers = -1;
media_stream_video_track_shared.h 17 : buffers(0),
21 int32_t buffers; member in struct:ppapi::MediaStreamVideoTrackShared::Attributes
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
TrustletSession.cpp 55 if (!buffers.empty()) {
56 LOG_W("%s: Mapped buffers still available %u", __func__, buffers.size());
58 for ( it = buffers.begin() ; it != buffers.end(); it++ )
61 buffers.clear();
91 if (buffers.find(pWsm->handle) != buffers.end()) {
95 buffers[pWsm->handle] = pWsm;
102 if (buffers.find(handle) == buffers.end())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_clear.c 44 * Clear the given buffers to the specified values.
49 unsigned buffers,
60 buffers &= ~PIPE_CLEAR_DEPTHSTENCIL;
62 lp_setup_clear( llvmpipe->setup, color->f, depth, stencil, buffers );
lp_clear.h 39 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers,
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_clear.c 44 * Clear the given buffers to the specified values.
49 unsigned buffers,
60 buffers &= ~PIPE_CLEAR_DEPTHSTENCIL;
62 lp_setup_clear( llvmpipe->setup, color->f, depth, stencil, buffers );
lp_clear.h 39 llvmpipe_clear(struct pipe_context *pipe, unsigned buffers,
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11IdImpl.java 38 public void glGenBuffers(int n, int[] buffers, int offset) {
41 buffers[offset + n] = sNextId++;
54 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) {
56 gl.glDeleteBuffers(n, buffers, offset);
61 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) {
63 gl11ep.glDeleteFramebuffersOES(n, buffers, offset);
GLId.java 26 public void glGenBuffers(int n, int[] buffers, int offset);
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset);
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLId.java 26 public void glGenBuffers(int n, int[] buffers, int offset);
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset);
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
GLId.java 26 public void glGenBuffers(int n, int[] buffers, int offset);
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset);
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_clear.h 37 * Clear the given buffers to the specified values.
42 struct pipe_framebuffer_state *framebuffer, unsigned buffers,
45 if (buffers & PIPE_CLEAR_COLOR) {
53 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
55 pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_clear.h 38 softpipe_clear(struct pipe_context *pipe, unsigned buffers,
  /external/mesa3d/src/gallium/auxiliary/util/
u_clear.h 37 * Clear the given buffers to the specified values.
42 struct pipe_framebuffer_state *framebuffer, unsigned buffers,
45 if (buffers & PIPE_CLEAR_COLOR) {
53 if (buffers & PIPE_CLEAR_DEPTHSTENCIL) {
55 pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_clear.h 38 softpipe_clear(struct pipe_context *pipe, unsigned buffers,
  /hardware/ti/omap4-aah/camera/
MemoryManager.cpp 71 ///the buffers
75 CameraBuffer *buffers = new CameraBuffer [numArrayEntriesC]; local
76 if(!buffers) {
77 CAMHAL_LOGEB("Allocation failed when creating buffers array of %d CameraBuffer elements", numArrayEntriesC);
83 memset(buffers, 0, sizeof(CameraBuffer) * numArrayEntriesC);
91 ///1D buffers
109 CAMHAL_LOGEB("Userspace mapping of ION buffers returned error %d", ret);
114 buffers[i].type = CAMERA_BUFFER_ION;
115 buffers[i].opaque = data;
116 buffers[i].mapped = data
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
GatheringByteChannel.java 23 * The interface for channels that can write a set of buffers in a single
30 * Writes bytes from all the given buffers to a channel.
32 * This method is equivalent to: {@code write(buffers, 0, buffers.length);}
34 * @param buffers
35 * the buffers containing bytes to be written.
49 * {@code buffers}.
56 public long write(ByteBuffer[] buffers) throws IOException;
60 * byte buffers, in order, starting at {@code buffers[offset]}. The numbe
    [all...]
ScatteringByteChannel.java 23 * The interface for channels that can read data into a set of buffers in a
30 * Reads bytes from this channel into the specified array of buffers.
32 * This method is equivalent to {@code read(buffers, 0, buffers.length);}
34 * @param buffers
35 * the array of byte buffers to store the bytes being read.
52 public long read(ByteBuffer[] buffers) throws IOException;
56 * buffers, in order, starting at {@code buffers[offset]}. The number of
62 * @param buffers
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
buffers.h 2 * \file buffers.h
44 _mesa_DrawBuffersARB(GLsizei n, const GLenum *buffers);
47 _mesa_drawbuffers(struct gl_context *ctx, GLuint n, const GLenum *buffers,
  /external/libcxx/test/input.output/stream.buffers/
Android.mk 17 test_makefile := external/libcxx/test/input.output/stream.buffers/Android.mk
19 test_name := input.output/stream.buffers/version
  /external/libcxx/test/input.output/stream.buffers/streambuf/
Android.mk 17 test_makefile := external/libcxx/test/input.output/stream.buffers/streambuf/Android.mk
19 test_name := input.output/stream.buffers/streambuf/types
  /external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/
Android.mk 17 test_makefile := external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/Android.mk
19 test_name := input.output/stream.buffers/streambuf/streambuf.members/nothing_to_do
  /external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/
Android.mk 17 test_makefile := external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/Android.mk
19 test_name := input.output/stream.buffers/streambuf/streambuf.protected/nothing_to_do

Completed in 5311 milliseconds

1 2 3 4 5 6 7 8 91011>>