/frameworks/compile/mclinker/lib/Target/ |
ELFDynamic.cpp | 67 size_t ELFDynamic::size() const { function in class:mcld::ELFDynamic 68 return (m_NeedList.size() + m_EntryList.size()); 72 return size() * entrySize(); 76 return m_pEntryFactory->size(); 85 assert(m_Idx < m_EntryList.size()); 207 applyOne(llvm::ELF::DT_PREINIT_ARRAYSZ, pFormat.getPreInitArray().size()); 212 applyOne(llvm::ELF::DT_INIT_ARRAYSZ, pFormat.getInitArray().size()); 217 applyOne(llvm::ELF::DT_FINI_ARRAYSZ, pFormat.getFiniArray().size()); 233 applyOne(llvm::ELF::DT_STRSZ, pFormat.getDynStrTab().size()); [all...] |
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsAbiFlags.cpp | 28 uint64_t MipsAbiFlags::size() { function in class:mcld::MipsAbiFlags 45 return size(); 53 if (pSection.size() != size()) { 59 if (secData->size() != 2 || !llvm::isa<RegionFragment>(secData->front())) {
|
MipsPLT.cpp | 63 uint64_t size = sizeof(PLT0) + (m_pSectionData->size() - 1) * sizeof(PLTA); local 64 m_Section.setSize(size); 70 offset += frag->size(); 75 return m_pSectionData->size() > 1; 109 uint32_t* data = static_cast<uint32_t*>(malloc(plt->size())); 114 memcpy(data, PLT0, plt->size()); 124 uint32_t* data = static_cast<uint32_t*>(malloc(plt->size())); 129 memcpy(data, PLTA, plt->size());
|
/frameworks/compile/mclinker/unittests/ |
ELFReaderTest.cpp | 89 ASSERT_EQ(0x15u, (*iter)->size()); 109 m_pInput->fileOffset() + symtab_shdr->offset(), symtab_shdr->size()); 112 m_pInput->fileOffset() + strtab_shdr->offset(), strtab_shdr->size()); 128 uint64_t size = (*rs)->size(); local 129 llvm::StringRef region = mem->request(offset, size); 138 ASSERT_EQ(2u, rRelocs.size());
|
NamePoolTest.cpp | 70 uint64_t size = 0; local 74 name, isDyn, type, desc, binding, size, other, NULL, result1); 82 EXPECT_EQ(size, result1.info->size()); 87 name, isDyn, type, desc, binding, size, other, NULL, result2); 95 EXPECT_EQ(size, result1.info->size()); 107 uint64_t size = 0; local 111 name, isDyn, type, desc, binding, size, other, NULL, result1); 119 EXPECT_EQ(size, result1.info->size()) 149 uint64_t size = 0; local 175 uint64_t size = 0; local [all...] |
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/ |
AbsSpinnerBindingAdapterTest.java | 78 assertEquals(entries.size(), adapter.getCount()); 79 for (int i = 0; i < entries.size(); i++) {
|
/frameworks/minikin/libs/minikin/ |
HbFontCache.cpp | 34 size_t size = 0; local 35 const void* buffer = font->GetTable(tag, &size, &destroy); 41 (tag >>24)&0xff, (tag>>16)&0xff, (tag>>8)&0xff, tag&0xff, size); 43 return hb_blob_create(reinterpret_cast<const char*>(buffer), size, 125 size_t size = minikinFont->GetFontSize(); local 126 hb_blob_t* blob = hb_blob_create(reinterpret_cast<const char*>(buf), size,
|
/frameworks/multidex/library/src/android/support/multidex/ |
ZipUtil.java | 35 long size; field in class:ZipUtil.CentralDirectory 44 * Size of reading buffers. 100 dir.size = Integer.reverseBytes(raf.readInt()) & 0xFFFFFFFFL; 109 long stillToRead = dir.size;
|
/frameworks/native/include/ui/ |
vec3.h | 51 enum { SIZE = 3 }; 52 inline static size_type size() { return SIZE; } function in class:android::tvec3 94 // cross product works only on vectors of size 3
|
/frameworks/native/libs/binder/ |
MemoryHeapBase.cpp | 44 MemoryHeapBase::MemoryHeapBase(size_t size, uint32_t flags, char const * name) 49 size = ((size + pagesize-1) & ~(pagesize-1)); 50 int fd = ashmem_create_region(name == NULL ? "MemoryHeapBase" : name, size); 53 if (mapfd(fd, size) == NO_ERROR) { 61 MemoryHeapBase::MemoryHeapBase(const char* device, size_t size, uint32_t flags) 73 size = ((size + pagesize-1) & ~(pagesize-1)); 74 if (mapfd(fd, size) == NO_ERROR) { 80 MemoryHeapBase::MemoryHeapBase(int fd, size_t size, uint32_t flags, uint32_t offset 86 mapfd(dup(fd), size, offset); local [all...] |
/frameworks/native/libs/gui/ |
SensorEventQueue.cpp | 161 ssize_t size = ::send(mSensorChannel->getFd(), &event, sizeof(event), MSG_NOSIGNAL); local 162 if (size >= 0) { 164 } else if (size < 0 && errno == EAGAIN) { 169 ALOGE("injectSensorEvent failure %s %zd", strerror(errno), size); 183 ssize_t size = ::send(mSensorChannel->getFd(), &mNumAcksToSend, sizeof(mNumAcksToSend), local 185 if (size < 0) { 186 ALOGE("sendAck failure %zd %d", size, mNumAcksToSend);
|
/frameworks/native/opengl/libagl/ |
TextureObjectManager.h | 57 inline size_t size() const { return mSize; } function in class:android::EGLTextureObject
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
Menu.java | 62 int size = in.readInt(); local 63 for (int i=0; i<size; i++) { 85 int size = items.size(); local 86 dest.writeInt(size); 87 for (int i=0; i<size; i++) { 105 public Menu[] newArray(int size) { 106 return new Menu[size];
|
/frameworks/opt/telephony/src/java/com/google/android/mms/util/ |
AbstractCache.java | 42 if (mCacheMap.size() >= MAX_CACHED_ITEMS) { 46 Log.v(TAG, "Failed! size limitation reached."); 57 Log.v(TAG, key + " cached, " + mCacheMap.size() + " items total."); 90 Log.v(TAG, mCacheMap.size() + " items cached."); 98 Log.v(TAG, "Purging cache, " + mCacheMap.size() 104 public int size() { method in class:AbstractCache 105 return mCacheMap.size();
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
SimPhoneBookTest.java | 37 int size[] = simPhoneBook.getAdnRecordsSize(IccConstants.EF_ADN); local 38 assertNotNull(size); 39 assertEquals(3, size.length); 40 assertEquals(size[0] * size[2], size[1]); 41 assertTrue(size[2] >= 100);
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardEntryConstructor.java | 117 final int size = mEntryStack.size(); local 118 if (size > 1) { 119 VCardEntry parent = mEntryStack.get(size - 2); 125 mEntryStack.remove(size - 1);
|
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/ |
PropertyNode.java | 148 // decoded by BASE64 or QUOTED-PRINTABLE. When the size of propValue_vector 152 propValue_vector.size() == 1 || 153 node.propValue_vector.size() == 1); 192 if (propValue_vector != null && propValue_vector.size() > 1) { 193 builder.append(", propValue_vector size: "); 194 builder.append(propValue_vector.size()); 197 builder.append(", propValue_bytes size: ");
|
/frameworks/rs/cpu_ref/ |
rsCpuScriptGroup2.h | 52 size_t size() const { return mClosures.size(); } function in class:android::renderscript::Batch
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
SingleRow.java | 78 int size = mProvider.createItem(index, false, mTmpItem); local 85 edge = mProvider.getEdge(index + 1) + mMargin + size; 87 edge = mProvider.getEdge(index + 1) - mMargin - size; 91 mProvider.addItem(mTmpItem[0], index, size, 0, edge); 111 int size = mProvider.createItem(index, true, mTmpItem); local 124 mProvider.addItem(mTmpItem[0], index, size, 0, edge);
|
SparseArrayObjectAdapter.java | 35 public int size() { method in class:SparseArrayObjectAdapter 36 return mItems.size(); 112 final int itemCount = mItems.size();
|
StaggeredGridDefault.java | 48 return edge + loc.size; 54 return edge + loc.size; 73 return edge - loc.size; 79 return edge - loc.size; 270 rowIndex = (mLocations.size() > 0 ? getLocation(getLastIndex()).row + 1 : itemIndex) 300 int size = appendVisibleItemToRow(itemIndex++, rowIndex, location); local 305 while (mReversedFlow ? location - size > edgeLimit : 306 location + size < edgeLimit) { 310 location = location + (mReversedFlow ? - size - mMargin : size + mMargin) 401 int size = prependVisibleItemToRow(itemIndex--, rowIndex, location); local [all...] |
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
GridLayoutManagerCustomSizeInScrollDirectionTest.java | 83 final int size = sizePerPosition[position]; 85 layoutParams.width = size; 89 layoutParams.height = size; 116 final int size = mConfig.mOrientation == HORIZONTAL ? child.getWidth() local 118 assertEquals("child " + i + " should have the size specified in its layout params", 119 expectedSizePerPosition[i], size);
|
/frameworks/wilhelm/src/desktop/ |
SndFile.c | 77 SLuint32 size = (SLuint32) (count * sizeof(short)); local 78 result = IBufferQueue_Enqueue(caller, pBuffer, size);
|
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/ |
viddec_pm_utils_bstream.h | 28 uint32_t size;/* Total number of bytes in current buffer */ member in struct:__anon29759
|
/hardware/intel/common/libva/va/ |
va_tpi.h | 55 unsigned int size; member in struct:_VASurfaceAttributeTPI
|