/frameworks/compile/mclinker/unittests/ |
D | RTLinearAllocatorTest.cpp | 44 Data* pointer = m_pTestee->allocate(10); in TEST_F() local 45 ASSERT_FALSE(0 == pointer); in TEST_F() 51 Data* pointer = m_pTestee->allocate(); in TEST_F() local 52 ASSERT_FALSE(0 == pointer); in TEST_F() 58 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); in TEST_F() local 59 ASSERT_TRUE(0 == pointer); in TEST_F() 65 Data* pointer = m_pTestee->allocate(); in TEST_F() local 66 m_pTestee->construct(pointer); in TEST_F() 67 ASSERT_EQ(1, pointer->one); in TEST_F() 68 ASSERT_EQ(2, pointer->two); in TEST_F() [all …]
|
D | LinearAllocatorTest.cpp | 43 Data* pointer = m_pTestee->allocate(10); in TEST_F() local 44 ASSERT_FALSE(0 == pointer); in TEST_F() 50 Data* pointer = m_pTestee->allocate(); in TEST_F() local 51 ASSERT_FALSE(0 == pointer); in TEST_F() 57 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); in TEST_F() local 58 ASSERT_TRUE(0 == pointer); in TEST_F() 64 Data* pointer = m_pTestee->allocate(); in TEST_F() local 65 m_pTestee->construct(pointer); in TEST_F() 66 ASSERT_EQ(1, pointer->one); in TEST_F() 67 ASSERT_EQ(2, pointer->two); in TEST_F() [all …]
|
/frameworks/native/opengl/libs/GLES_CM/ |
D | gl.cpp | 45 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) { in glNormalPointerBounds() argument 64 glNormalPointer(type, stride, pointer); in glNormalPointerBounds() 67 GLsizei stride, const GLvoid *pointer, GLsizei count) { in glTexCoordPointerBounds() argument 68 glTexCoordPointer(size, type, stride, pointer); in glTexCoordPointerBounds() [all …]
|
/frameworks/compile/mclinker/include/mcld/Support/ |
D | Allocators.h | 86 typedef typename ChunkType::value_type* pointer; 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 result = 0; [all …]
|
D | GCFactory.h | 66 typedef typename traits::pointer pointer; typedef 126 typedef typename Alloc::pointer pointer; typedef 156 void deallocate(pointer &pPtr, size_type N) { in deallocate() 162 void deallocate(pointer &pPtr) { in deallocate()
|
/frameworks/base/docs/html/training/gestures/ |
D | multi.jd | 48 <li>{@link android.view.MotionEvent#ACTION_DOWN}—For the first pointer that 49 touches the screen. This starts the gesture. The pointer data for this pointer is 52 extra pointers that enter the screen beyond the first. The pointer data for this 53 pointer is at the index returned by {@link android.support.v4.view.MotionEventCompat#getActionIndex… 55 …rt.v4.view.MotionEventCompat#ACTION_POINTER_UP}—Sent when a non-primary pointer goes up.</li> 56 …<li>{@link android.view.MotionEvent#ACTION_UP}—Sent when the last pointer leaves the screen.… 60 android.view.MotionEvent} via each pointer's index and ID:</p> 64 stores information about each pointer in an array. The index of a pointer is its position 67 pointer index as a parameter, not the pointer ID. </li> 70 <li><strong>ID</strong>: Each pointer also has an ID mapping that stays [all …]
|
D | scale.jd | 56 <li>In a drag (or scroll) operation, the app has to keep track of the original pointer 60 individual pointers, it will regard the second pointer as the default and move 64 original pointer and any follow-on pointers. To do this, it tracks the 71 whenever a secondary pointer goes down or up. </li> 75 extracts this index and ensures that the active pointer ID is not referring to a 76 pointer that is no longer touching the screen. If it is, the app selects a 77 different pointer to be active and saves its current X and Y position. Since 80 calculate the distance to move using data from the correct pointer.</li> 85 position of the active pointer, calculates the distance the pointer traveled, and moves the object … 97 being performed, without including the pointer index bits.</p> [all …]
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | GLImpl.java | 202 java.nio.Buffer pointer, in glColorPointerBounds() argument 210 java.nio.Buffer pointer in glColorPointer() argument 216 pointer, in glColorPointer() 217 pointer.remaining() in glColorPointer() 224 _colorPointer = pointer; in glColorPointer() 775 java.nio.Buffer pointer, in glNormalPointerBounds() argument 782 java.nio.Buffer pointer in glNormalPointer() argument 787 pointer, in glNormalPointer() 788 pointer.remaining() in glNormalPointer() 795 _normalPointer = pointer; in glNormalPointer() [all …]
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLES10.java | 388 java.nio.Buffer pointer, in glColorPointerBounds() argument 396 java.nio.Buffer pointer in glColorPointer() argument 402 pointer, in glColorPointer() 403 pointer.remaining() in glColorPointer() 410 _colorPointer = pointer; in glColorPointer() 966 java.nio.Buffer pointer, in glNormalPointerBounds() argument 973 java.nio.Buffer pointer in glNormalPointer() argument 978 pointer, in glNormalPointer() 979 pointer.remaining() in glNormalPointer() 986 _normalPointer = pointer; in glNormalPointer() [all …]
|
D | GLES11Ext.java | 885 java.nio.Buffer pointer, in glMatrixIndexPointerOESBounds() argument 893 java.nio.Buffer pointer in glMatrixIndexPointerOES() argument 899 pointer, in glMatrixIndexPointerOES() 900 pointer.remaining() in glMatrixIndexPointerOES() 910 _matrixIndexPointerOES = pointer; in glMatrixIndexPointerOES() 920 java.nio.Buffer pointer, in glWeightPointerOESBounds() argument 928 java.nio.Buffer pointer in glWeightPointerOES() argument 934 pointer, in glWeightPointerOES() 935 pointer.remaining() in glWeightPointerOES()
|
D | GLES11.java | 603 java.nio.Buffer pointer, in glPointSizePointerOESBounds() argument 610 java.nio.Buffer pointer in glPointSizePointerOES() argument 615 pointer, in glPointSizePointerOES() 616 pointer.remaining() in glPointSizePointerOES() 621 _pointSizePointerOES = pointer; in glPointSizePointerOES()
|
/frameworks/native/opengl/tools/glgen/stubs/gles11/ |
D | GLES10cHeader.cpp | 34 const GLvoid *pointer, GLsizei count); 36 GLsizei stride, const GLvoid *pointer, GLsizei count); 38 GLsizei stride, const GLvoid *pointer, GLsizei count); 82 jlong pointer; 88 pointer = _env->CallStaticLongMethod(nioAccessClass, 90 if (pointer != 0L) { 92 return (void *) (jint) pointer;
|
D | GLES20cHeader.cpp | 70 jlong pointer; in getPointer() local 76 pointer = _env->CallStaticLongMethod(nioAccessClass, in getPointer() 78 if (pointer != 0L) { in getPointer() 80 return (void *) (jint) pointer; in getPointer() 121 GLboolean normalized, GLsizei stride, const GLvoid *pointer, GLsizei count) { in glVertexAttribPointerBounds() argument 122 glVertexAttribPointer(indx, size, type, normalized, stride, pointer); in glVertexAttribPointerBounds()
|
D | GLES10ExtcHeader.cpp | 70 jlong pointer; in getPointer() local 76 pointer = _env->CallStaticLongMethod(nioAccessClass, in getPointer() 78 if (pointer != 0L) { in getPointer() 80 return (void *) (jint) pointer; in getPointer()
|
D | GLES11cHeader.cpp | 77 jlong pointer; 83 pointer = _env->CallStaticLongMethod(nioAccessClass, 85 if (pointer != 0L) { 87 return (void *) (jint) pointer;
|
D | GLES11ExtcHeader.cpp | 79 jlong pointer; 85 pointer = _env->CallStaticLongMethod(nioAccessClass, 87 if (pointer != 0L) { 89 return (void *) (jint) pointer;
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
D | TypeTraits.h | 26 typedef const DataType* pointer; typedef 37 typedef DataType* pointer; typedef 48 typedef const DataType* pointer; typedef 60 typedef DataType* pointer; typedef
|
D | BinTree.h | 106 typedef typename traits::pointer pointer; typedef 132 pointer operator*() const 194 typedef typename traits::pointer pointer; typedef 218 pointer operator*() const 366 typedef value_type* pointer; typedef
|
/frameworks/native/opengl/tools/glgen/stubs/jsr239/ |
D | GLCHeader.cpp | 51 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; 127 pointer = _env->CallStaticLongMethod(nioAccessClass, 129 if (pointer != 0L) { 131 return (void *) (jint) pointer;
|
/frameworks/base/core/jni/ |
D | android_nio_utils.cpp | 32 jlong pointer; in nio_getPointer() local 36 pointer = _env->CallStaticLongMethod(gNioJNI.nioAccessClass, in nio_getPointer() 38 if (pointer != 0L) { in nio_getPointer() 40 return (void *) (jint) pointer; in nio_getPointer()
|
D | android_nio_utils.h | 54 void nio_releasePointer(JNIEnv *env, jarray array, void *pointer, 62 void* pointer() const { return fPointer; } in pointer() function
|
D | android_opengl_GLES10Ext.cpp | 71 jlong pointer; in getPointer() local 77 pointer = _env->CallStaticLongMethod(nioAccessClass, in getPointer() 79 if (pointer != 0L) { in getPointer() 81 return (void *) (jint) pointer; in getPointer()
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
D | omxVCM4P2_PredictReconCoefIntra_s.s | 26 ; * [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
|
/frameworks/compile/mclinker/include/mcld/LD/ |
D | FragmentRef.h | 36 typedef NonConstTraits<unsigned char>::pointer Address; 37 typedef ConstTraits<unsigned char>::pointer ConstAddress;
|
/frameworks/compile/mclinker/include/mcld/MC/ |
D | MCFragmentRef.h | 35 typedef NonConstTraits<unsigned char>::pointer Address; 36 typedef ConstTraits<unsigned char>::pointer ConstAddress;
|