Searched refs:buffers (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DGLId.java32 public synchronized static void glGenBuffers(int n, int[] buffers, int offset) { argument
34 buffers[offset + n] = sNextId++;
42 public synchronized static void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
43 gl.glDeleteBuffers(n, buffers, offset);
47 GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) {
48 gl11ep.glDeleteFramebuffersOES(n, buffers, offset);
46 glDeleteFramebuffers( GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) argument
/packages/apps/Email/src/org/apache/commons/io/output/
H A DByteArrayOutputStream.java42 * additional buffers. This way no buffers need to be garbage collected and
56 /** The list of buffers, which grows and never reduces. */
57 private List<byte[]> buffers = new ArrayList<byte[]>(); field in class:ByteArrayOutputStream
60 /** The total count of bytes in all the filled buffers. */
98 return buffers.get(index);
108 if (currentBufferIndex < buffers.size() - 1) {
129 buffers.add(currentBuffer);
185 * internal buffers of this streams.
251 for (int i = 0; i < buffers
[all...]
/packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
H A DGLStub.java810 int[] buffers,
816 java.nio.IntBuffer buffers
828 int[] buffers,
834 java.nio.IntBuffer buffers
808 glDeleteBuffers( int n, int[] buffers, int offset ) argument
826 glGenBuffers( int n, int[] buffers, int offset ) argument

Completed in 97 milliseconds