HomeSort by relevance Sort by last modified time
    Searched refs:mPointer (Results 1 - 16 of 16) sorted by null

  /system/chre/util/include/chre/util/
array_queue.h 147 : mPointer(pointer), mBase(base), mTail(tail) {}
150 return (mPointer == right.mPointer);
154 return (mPointer != right.mPointer);
158 return *mPointer;
162 return mPointer;
166 if (mPointer == (mBase + mTail)) {
168 mPointer = mBase + kCapacity;
169 } else if (mPointer == (mBase + kCapacity - 1))
    [all...]
  /system/libhidl/base/include/hidl/
HidlInternal.h 47 hidl_pointer(T* ptr) : hidl_pointer() { mPointer = ptr; }
48 hidl_pointer(const hidl_pointer<T>& other) : hidl_pointer() { mPointer = other.mPointer; }
52 mPointer = other.mPointer;
56 mPointer = other.mPointer;
57 other.mPointer = nullptr;
61 mPointer = ptr;
66 return mPointer;
    [all...]
  /frameworks/av/media/libstagefright/include/
SecureBuffer.h 48 const void *mPointer;
  /frameworks/av/media/libstagefright/
BufferImpl.cpp 44 mPointer(ptr) {
50 mPointer(nullptr),
55 return (void *)(mHandle == nullptr ? mPointer : mHandle->handle());
  /external/swiftshader/src/OpenGL/libGLESv2/
VertexArray.cpp 76 mVertexAttributes[attributeIndex].mPointer = pointer;
VertexDataManager.cpp 88 input = static_cast<const char*>(attribute.mPointer);
156 if((!buffer && attrib.mPointer == nullptr) || (buffer && !buffer->data()))
Context.h 194 VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mDivisor(0), mPointer(nullptr), mArrayEnabled(false)
306 const void *mPointer;
Context.cpp 847 return getCurrentVertexArray()->getVertexAttribute(attribNum).mPointer;
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
VertexDataManager.cpp 90 input = static_cast<const char*>(attribute.mPointer);
150 if(!buffer && attribs[i].mPointer == nullptr)
Context.h 371 VertexAttribute() : mType(GL_FLOAT), mSize(0), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
406 const void *mPointer;
Context.cpp 745 mState.vertexAttribute[attribNum].mPointer = pointer;
750 return mState.vertexAttribute[attribNum].mPointer;
    [all...]
  /external/swiftshader/src/OpenGL/libGLES_CM/
VertexDataManager.cpp 91 input = static_cast<const char*>(attribute.mPointer);
145 if(!buffer && attribs[i].mPointer == nullptr)
Context.h 151 VertexAttribute() : mType(GL_FLOAT), mSize(4), mNormalized(false), mStride(0), mPointer(nullptr), mArrayEnabled(false)
186 const void *mPointer;
Context.cpp 894 mState.vertexAttribute[attribNum].mPointer = pointer;
899 return mState.vertexAttribute[attribNum].mPointer;
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
BandController.java 421 private Point mPointer = null;
463 mPointer = mHelper.createAbsolutePoint(relativeOrigin);
464 mRelativeOrigin = new RelativePoint(mPointer);
465 mRelativePointer = new RelativePoint(mPointer);
480 mPointer = mHelper.createAbsolutePoint(relativePointer);
505 mPointer.x += dx;
506 mPointer.y += dy;
575 mRelativePointer = new RelativePoint(mPointer);
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLLogWrapper.java     [all...]

Completed in 780 milliseconds