Searched refs:pointer (Results 1 - 25 of 101) sorted by relevance

12345

/frameworks/compile/mclinker/unittests/
H A DLinearAllocatorTest.cpp43 Data* pointer = m_pTestee->allocate(10); local
44 ASSERT_FALSE(0 == pointer);
50 Data* pointer = m_pTestee->allocate(); local
51 ASSERT_FALSE(0 == pointer);
57 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); local
58 ASSERT_TRUE(0 == pointer);
64 Data* pointer = m_pTestee->allocate(); local
65 m_pTestee->construct(pointer);
66 ASSERT_EQ(1, pointer->one);
67 ASSERT_EQ(2, pointer
73 Data* pointer = m_pTestee->allocate(); local
84 Data* pointer = m_pTestee->allocate(10); local
93 Data* pointer = m_pTestee->allocate(10); local
105 Data* pointer = m_pTestee->allocate(); local
122 Data* pointer = m_pTestee->allocate(10); local
[all...]
H A DRTLinearAllocatorTest.cpp44 Data* pointer = m_pTestee->allocate(10); local
45 ASSERT_FALSE(0 == pointer);
51 Data* pointer = m_pTestee->allocate(); local
52 ASSERT_FALSE(0 == pointer);
58 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); local
59 ASSERT_TRUE(0 == pointer);
65 Data* pointer = m_pTestee->allocate(); local
66 m_pTestee->construct(pointer);
67 ASSERT_EQ(1, pointer->one);
68 ASSERT_EQ(2, pointer
74 Data* pointer = m_pTestee->allocate(); local
85 Data* pointer = m_pTestee->allocate(10); local
94 Data* pointer = m_pTestee->allocate(10); local
106 Data* pointer = m_pTestee->allocate(); local
123 Data* pointer = m_pTestee->allocate(10); local
[all...]
/frameworks/native/opengl/libs/GLES_CM/
H A Dgl.cpp45 const GLvoid *pointer, GLsizei count);
47 GLsizei stride, const GLvoid *pointer, GLsizei count);
49 GLsizei stride, const GLvoid *pointer, GLsizei count);
51 GLsizei stride, const GLvoid *pointer, GLsizei count);
53 GLsizei stride, const GLvoid *pointer, GLsizei count);
55 GLsizei stride, const GLvoid *pointer, GLsizei count);
63 const GLvoid *pointer, GLsizei count) {
64 glNormalPointer(type, stride, pointer);
67 GLsizei stride, const GLvoid *pointer, GLsizei count) {
68 glTexCoordPointer(size, type, stride, pointer);
62 glNormalPointerBounds(GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
66 glTexCoordPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
70 glVertexPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
75 glPointSizePointerOESBounds(GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
80 glMatrixIndexPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
85 glWeightPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h86 typedef typename ChunkType::value_type* pointer; typedef in class:mcld::LinearAllocatorBase
108 pointer address(reference X) const
119 void construct(pointer pPtr, const_reference pValue)
127 void construct(pointer pPtr)
132 void destroy(pointer pPtr)
140 pointer allocate(size_type N) {
148 pointer result = 0;
151 result = const_cast<pointer>(&(m_pCurrent->data[m_pCurrent->bound]));
157 pointer allocate() {
161 pointer resul
320 typedef DataType* pointer; typedef in class:mcld::MallocAllocator
374 typedef void* pointer; typedef in class:mcld::MallocAllocator
[all...]
H A DSpace.h41 typedef NonConstTraits<uint8_t>::pointer Address;
42 typedef ConstTraits<uint8_t>::pointer ConstAddress;
H A DGCFactory.h66 typedef typename traits::pointer pointer; typedef in class:mcld::DataIterator
126 typedef typename Alloc::pointer pointer; typedef in class:mcld::GCFactoryBase
156 void deallocate(pointer &pPtr, size_type N) {
162 void deallocate(pointer &pPtr) {
/frameworks/base/core/jni/
H A Dandroid_nio_utils.h25 * Given an nio.Buffer, return a pointer to it, beginning at its current
26 * position. The returned pointer is only valid for the current JNI stack-frame.
35 * and the returned pointer when the caller is through with it.
38 * @return The pointer to the memory in the buffer object
44 * Pass that array and the returned pointer when you are done accessing the
45 * pointer. If called (i.e. array is non-null), it must be called in the same
50 * @param pointer The pointer returned by android_nio_getPointer
51 * @param commit JNI_FALSE if the pointer was just read, and JNI_TRUE if
52 * the pointer wa
62 void* pointer() const { return fPointer; } function in class:android::AutoBufferPointer
[all...]
H A Dandroid_nio_utils.cpp32 jlong pointer; local
36 pointer = _env->CallStaticLongMethod(gNioJNI.nioAccessClass,
38 if (pointer != 0L) {
40 return (void *) (jint) pointer;
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTypeTraits.h26 typedef const DataType* pointer; typedef in struct:mcld::ConstTraits
37 typedef DataType* pointer; typedef in struct:mcld::NonConstTraits
48 typedef const DataType* pointer; typedef in struct:mcld::ConstIteratorTraits
60 typedef DataType* pointer; typedef in struct:mcld::NonConstIteratorTraits
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DGLES10cHeader.cpp34 const GLvoid *pointer, GLsizei count);
36 GLsizei stride, const GLvoid *pointer, GLsizei count);
38 GLsizei stride, const GLvoid *pointer, GLsizei count);
82 jlong pointer; local
88 pointer = _env->CallStaticLongMethod(nioAccessClass,
90 if (pointer != 0L) {
92 return (void *) (jint) pointer;
H A DGLES20cHeader.cpp70 jlong pointer; local
76 pointer = _env->CallStaticLongMethod(nioAccessClass,
78 if (pointer != 0L) {
80 return (void *) (jint) pointer;
121 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) {
122 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
120 glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
H A DGLES10ExtcHeader.cpp70 jlong pointer; local
76 pointer = _env->CallStaticLongMethod(nioAccessClass,
78 if (pointer != 0L) {
80 return (void *) (jint) pointer;
H A DGLES11ExtcHeader.cpp79 jlong pointer; local
85 pointer = _env->CallStaticLongMethod(nioAccessClass,
87 if (pointer != 0L) {
89 return (void *) (jint) pointer;
H A DGLES11cHeader.cpp77 jlong pointer; local
83 pointer = _env->CallStaticLongMethod(nioAccessClass,
85 if (pointer != 0L) {
87 return (void *) (jint) pointer;
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java196 // C function void glColorPointer ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
202 java.nio.Buffer pointer,
210 java.nio.Buffer pointer
216 pointer,
217 pointer.remaining()
224 _colorPointer = pointer;
770 // C function void glNormalPointer ( GLenum type, GLsizei stride, const GLvoid *pointer )
775 java.nio.Buffer pointer,
782 java.nio.Buffer pointer
787 pointer,
198 glColorPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
772 glNormalPointerBounds( int type, int stride, java.nio.Buffer pointer, int remaining ) argument
963 glTexCoordPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1108 glVertexPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1595 glPointSizePointerOESBounds( int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1827 glMatrixIndexPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1871 glWeightPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DFragmentRef.h36 typedef NonConstTraits<unsigned char>::pointer Address;
37 typedef ConstTraits<unsigned char>::pointer ConstAddress;
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCFragmentRef.h35 typedef NonConstTraits<unsigned char>::pointer Address;
36 typedef ConstTraits<unsigned char>::pointer ConstAddress;
/frameworks/ex/variablespeed/jni/
H A Ddecode_buffer.cc43 void DecodeBuffer::AddData(int8_t* pointer, size_t lengthInBytes) { argument
45 PushValue(reinterpret_cast<int16*>(pointer)[i]);
H A Ddecode_buffer.h34 void AddData(int8_t* pointer, size_t lengthInBytes);
/frameworks/base/opengl/java/android/opengl/
H A DGLES10.java382 // C function void glColorPointer ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
388 java.nio.Buffer pointer,
396 java.nio.Buffer pointer
402 pointer,
403 pointer.remaining()
410 _colorPointer = pointer;
961 // C function void glNormalPointer ( GLenum type, GLsizei stride, const GLvoid *pointer )
966 java.nio.Buffer pointer,
973 java.nio.Buffer pointer
978 pointer,
384 glColorPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
963 glNormalPointerBounds( int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1154 glTexCoordPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
1299 glVertexPointerBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
[all...]
H A DGLES11Ext.java879 // C function void glMatrixIndexPointerOES ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
885 java.nio.Buffer pointer,
893 java.nio.Buffer pointer
899 pointer,
900 pointer.remaining()
910 _matrixIndexPointerOES = pointer;
914 // C function void glWeightPointerOES ( GLint size, GLenum type, GLsizei stride, const GLvoid *pointer )
920 java.nio.Buffer pointer,
928 java.nio.Buffer pointer
934 pointer,
881 glMatrixIndexPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
916 glWeightPointerOESBounds( int size, int type, int stride, java.nio.Buffer pointer, int remaining ) argument
[all...]
/frameworks/native/opengl/tools/glgen/stubs/jsr239/
H A DGLCHeader.cpp51 const GLvoid *pointer, GLsizei count);
53 GLsizei stride, const GLvoid *pointer, GLsizei count);
55 GLsizei stride, const GLvoid *pointer, GLsizei count);
57 GLsizei stride, const GLvoid *pointer, GLsizei count);
59 GLsizei stride, const GLvoid *pointer, GLsizei count);
61 GLsizei stride, const GLvoid *pointer, GLsizei count);
121 jlong pointer; local
127 pointer = _env->CallStaticLongMethod(nioAccessClass,
129 if (pointer != 0L) {
131 return (void *) (jint) pointer;
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11Ext.java129 java.nio.Buffer pointer
143 java.nio.Buffer pointer
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_PredictReconCoefIntra_s.s26 ; * [in] pSrcDst pointer to the coefficient buffer which contains the
31 ; * [in] pPredBufRow pointer to the coefficient row buffer; must be aligned
33 ; * [in] pPredBufCol pointer to the coefficient column buffer; must be
48 ; * [out] pSrcDst pointer to the coefficient buffer which contains
51 ; * [out] pPredBufRow pointer to the updated coefficient row buffer
52 ; * [out] pPredBufCol pointer to the updated coefficient column buffer
H A DarmVCM4P2_SetPredDir_s.s27 ; * [in] pCoefBufRow pointer to the coefficient row buffer
28 ; * [in] pQpBuf pointer to the quantization parameter buffer

Completed in 828 milliseconds

12345