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

  /system/core/libpixelflinger/codeflinger/tinyutils/
VectorImpl.cpp 47 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize)
53 mFlags(rhs.mFlags), mItemSize(rhs.mItemSize)
66 this, (int)(mCount*mItemSize));
72 ALOG_ASSERT(mItemSize == rhs.mItemSize,
93 sb = SharedBuffer::alloc(capacity() * mItemSize);
107 return SharedBuffer::sharedBuffer(mStorage)->size() / mItemSize;
228 return reinterpret_cast<char*>(buffer) + index*mItemSize;
240 return reinterpret_cast<const char*>(buffer) + index*mItemSize;
    [all...]
VectorImpl.h 129 const size_t mItemSize;
  /system/core/libutils/
VectorImpl.cpp 45 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize)
51 mFlags(rhs.mFlags), mItemSize(rhs.mItemSize)
63 this, (int)(mCount*mItemSize));
69 LOG_ALWAYS_FATAL_IF(mItemSize != rhs.mItemSize,
90 sb = SharedBuffer::alloc(capacity() * mItemSize);
104 return SharedBuffer::bufferFromData(mStorage)->size() / mItemSize;
176 void* item = reinterpret_cast<char*>(array) + mItemSize*(i);
177 void* curr = reinterpret_cast<char*>(array) + mItemSize*(i-1)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
PieControl.java 53 protected int mItemSize;
77 mItemSize = (int) activity.getResources().getDimension(R.dimen.qc_item_size);
258 view.setMinimumWidth(mItemSize);
259 view.setMinimumHeight(mItemSize);
261 LayoutParams lp = new LayoutParams(mItemSize, mItemSize);
277 LayoutParams lp = new LayoutParams(mItemSize, mItemSize);
  /packages/apps/Camera/src/com/android/camera/ui/
CameraSwitcher.java 53 private int mItemSize;
77 mItemSize = context.getResources().getDimensionPixelSize(R.dimen.switcher_size);
155 content.addView(item, new LinearLayout.LayoutParams(mItemSize, mItemSize));
  /system/core/include/utils/
VectorImpl.h 126 const size_t mItemSize;

Completed in 1292 milliseconds