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

/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DGLES11IdImpl.java38 public void glGenBuffers(int n, int[] buffers, int offset) { argument
41 buffers[offset + n] = sNextId++;
54 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
56 gl.glDeleteBuffers(n, buffers, offset);
61 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { argument
63 gl11ep.glDeleteFramebuffersOES(n, buffers, offset);
H A DGLId.java26 public void glGenBuffers(int n, int[] buffers, int offset); argument
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset); argument
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset); argument
H A DGLES20IdImpl.java19 public void glGenBuffers(int n, int[] buffers, int offset) { argument
20 GLES20.glGenBuffers(n, buffers, offset);
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
33 GLES20.glDeleteBuffers(n, buffers, offset);
38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { argument
39 GLES20.glDeleteFramebuffers(n, buffers, offset);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DGLId.java26 public void glGenBuffers(int n, int[] buffers, int offset); argument
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset); argument
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset); argument
H A DGLES20IdImpl.java19 public void glGenBuffers(int n, int[] buffers, int offset) { argument
20 GLES20.glGenBuffers(n, buffers, offset);
32 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset) { argument
33 GLES20.glDeleteBuffers(n, buffers, offset);
38 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset) { argument
39 GLES20.glDeleteFramebuffers(n, buffers, offset);
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
H A Dsparse_table_dict_content.h34 AK_FORCE_INLINE SparseTableDictContent(uint8_t *const *buffers, const int *bufferSizes, argument
37 ReadWriteByteArrayView(buffers[LOOKUP_TABLE_BUFFER_INDEX],
41 ReadWriteByteArrayView(buffers[ADDRESS_TABLE_BUFFER_INDEX],
45 ReadWriteByteArrayView(buffers[CONTENT_BUFFER_INDEX],
H A Dshortcut_dict_content.h32 ShortcutDictContent(uint8_t *const *buffers, const int *bufferSizes) argument
33 : SparseTableDictContent(buffers, bufferSizes,
H A Dbigram_dict_content.h33 BigramDictContent(uint8_t *const *buffers, const int *bufferSizes, const bool hasHistoricalInfo) argument
34 : SparseTableDictContent(buffers, bufferSizes,
/packages/apps/UnifiedEmail/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/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/
H A Dver4_patricia_trie_writing_helper.h46 Ver4PatriciaTrieWritingHelper(Ver4DictBuffers *const buffers) argument
47 : mBuffers(buffers) {}
H A Dver4_patricia_trie_node_writer.h60 Ver4DictBuffers *const buffers, const HeaderPolicy *const headerPolicy,
64 : mTrieBuffer(trieBuffer), mBuffers(buffers), mHeaderPolicy(headerPolicy),
59 Ver4PatriciaTrieNodeWriter(BufferWithExtendableBuffer *const trieBuffer, Ver4DictBuffers *const buffers, const HeaderPolicy *const headerPolicy, const PtNodeReader *const ptNodeReader, const PtNodeArrayReader *const ptNodeArrayReader, Ver4BigramListPolicy *const bigramPolicy, Ver4ShortcutListPolicy *const shortcutPolicy) argument
H A Dver4_patricia_trie_policy.h60 Ver4PatriciaTriePolicy(Ver4DictBuffers::Ver4DictBuffersPtr buffers) argument
61 : mBuffers(std::move(buffers)), mHeaderPolicy(mBuffers->getHeaderPolicy()),
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
H A Dver4_patricia_trie_node_writer.h42 Ver4DictBuffers *const buffers, const HeaderPolicy *const headerPolicy,
46 : mTrieBuffer(trieBuffer), mBuffers(buffers), mHeaderPolicy(headerPolicy),
41 Ver4PatriciaTrieNodeWriter(BufferWithExtendableBuffer *const trieBuffer, Ver4DictBuffers *const buffers, const HeaderPolicy *const headerPolicy, const PtNodeReader *const ptNodeReader, const PtNodeArrayReader *const ptNodeArrayReader, Ver4BigramListPolicy *const bigramPolicy, Ver4ShortcutListPolicy *const shortcutPolicy) argument
H A Dver4_patricia_trie_writing_helper.h33 Ver4PatriciaTrieWritingHelper(Ver4DictBuffers *const buffers) argument
34 : mBuffers(buffers) {}
H A Dver4_patricia_trie_policy.h42 Ver4PatriciaTriePolicy(Ver4DictBuffers::Ver4DictBuffersPtr buffers) argument
43 : mBuffers(std::move(buffers)), mHeaderPolicy(mBuffers->getHeaderPolicy()),
H A Dver4_dict_buffers.cpp38 AKLOGE("The header buffer must be valid to open ver4 dict buffers.");
48 std::vector<uint8_t *> buffers; local
56 buffers.push_back(subBuffer.data());
64 if (buffers.size() != Ver4DictConstants::NUM_OF_CONTENT_BUFFERS_IN_BODY_FILE) {
69 formatVersion, buffers, bufferSizes));

Completed in 163 milliseconds