/frameworks/compile/mclinker/include/mcld/LD/ |
ELFSegmentFactory.h | 41 size_t size() const { return m_Segments.size(); } function in class:mcld::ELFSegmentFactory
|
/frameworks/compile/mclinker/include/mcld/Script/ |
RpnExpr.h | 45 size_t size() const { return m_TokenQueue.size(); } function in class:mcld::RpnExpr
|
SectionsCmd.h | 48 size_t size() const { return m_SectionCommands.size(); } function in class:mcld::SectionsCmd
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMToARMStub.cpp | 96 size_t ARMToARMStub::size() const { function in class:mcld::ARMToARMStub
|
ARMToTHMStub.cpp | 104 size_t ARMToTHMStub::size() const { function in class:mcld::ARMToTHMStub
|
THMToARMStub.cpp | 117 size_t THMToARMStub::size() const { function in class:mcld::THMToARMStub
|
THMToTHMStub.cpp | 114 size_t THMToTHMStub::size() const { function in class:mcld::THMToTHMStub
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonAbsoluteStub.cpp | 100 size_t HexagonAbsoluteStub::size() const { function in class:mcld::HexagonAbsoluteStub
|
/frameworks/compile/mclinker/unittests/ |
StringTableTest.cpp | 41 int size = 127 - 32; local 48 ASSERT_EQ(m_pTestee->size(), size); 71 ASSERT_EQ(m_pTestee->size(), 1);
|
/frameworks/minikin/app/ |
HyphTool.cpp | 19 size_t size = statbuf.st_size; local 25 uint8_t* buf = new uint8_t[size]; 26 size_t read_size = fread(buf, 1, size, f); 27 if (read_size < size) { 53 hyph->hyphenate(&result, word.data(), word.size());
|
/frameworks/minikin/tests/ |
UnicodeUtils.cpp | 22 // Size is returned in an out parameter because gtest needs a void return for ASSERT to work. 88 size_t size; local 89 ParseUnicode(buf, BUF_SIZE, "U+000D U+1F431 | 'a'", &size, &offset); 90 EXPECT_EQ(size, 4u);
|
/frameworks/native/libs/binder/ |
IPermissionController.cpp | 62 const int32_t size = reply.readInt32(); local 63 if (size <= 0) { 66 for (int i = 0; i < size; i++) { 108 size_t size = packages.size(); local 109 reply->writeInt32(size); 110 for (size_t i = 0; i < size; i++) {
|
/frameworks/native/libs/gui/ |
BitTube.cpp | 33 // Socket buffer size. The default is typically about 128KB, which is much larger than 73 size_t size = DEFAULT_SOCKET_BUFFER_SIZE; local 77 setsockopt(sockets[0], SOL_SOCKET, SO_SNDBUF, &size, sizeof(size)); 78 setsockopt(sockets[1], SOL_SOCKET, SO_RCVBUF, &size, sizeof(size)); 107 ssize_t BitTube::write(void const* vaddr, size_t size) 111 len = ::send(mSendFd, vaddr, size, MSG_DONTWAIT | MSG_NOSIGNAL); 112 // cannot return less than size, since we're using SOCK_SEQPACKET 118 ssize_t BitTube::read(void* vaddr, size_t size) 164 ssize_t size = tube->read(vaddr, count*objSize); local [all...] |
/frameworks/native/opengl/libagl/ |
BufferObjectManager.h | 43 GLsizeiptr size; member in struct:android::gl::buffer_t 63 int allocateStore(gl::buffer_t* bo, GLsizeiptr size, GLenum usage);
|
/frameworks/native/opengl/tests/gralloc/ |
gralloc.cpp | 30 void* lamecpy(void* d, void const* s, size_t size) { 33 while (size) { 35 size--; 42 size_t size = 128*256*4; local 43 void* temp = malloc(size); 44 void* temp2 = malloc(size); 45 memset(temp, 0, size); 46 memset(temp2, 0, size); 67 memset(vaddr, 0, size); 73 memcpy(temp, temp2, size); [all...] |
/frameworks/opt/bitmap/src/com/android/bitmap/ |
UnrefedPooledCache.java | 30 * unreferenced objects in its size calculation. Internally, it never evicts from 41 * (total size of still-referenced entries)</code> 55 * @param targetSize not exactly a max size in practice 174 int size = 0; local 177 sb.append(mPool.size()); 179 sb.append(mCache.size()); 182 sb.append(mNonPooledCache.size()); 186 size += sizeOf(val); 197 size += sizeOf(val); 207 size += sizeOf(val) [all...] |
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/ |
IntrinsicSizeFrameLayout.java | 29 * A FrameLayout subclass that has an "intrinsic size", which is the size it wants to be if that is 30 * within the constraints given by the parent. The intrinsic size can be set with the 33 * Note that for the intrinsic size to be meaningful, {@code android:layout_width} and/or 75 // Intrinsic size is not set, just return the original spec 79 final int size = MeasureSpec.getSize(measureSpec); local 81 // Parent did not give any constraint, so we'll be the intrinsic size 84 // If intrinsic size is within parents constraint, take the intrinsic size. 85 // Otherwise take the parents size because that's closest to the intrinsic size [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
TextAttribute.java | 29 public FontSize size; field in class:TextAttribute 37 FontSize size, boolean bold, boolean italic, boolean underlined, 42 this.size = size;
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
SimSmsTest.java | 41 assertTrue(records.size() >= 0); 46 for (int i = 0; i < records.size(); i++) {
|
/frameworks/support/design/src/android/support/design/internal/ |
ParcelableSparseArray.java | 40 int size = source.readInt(); local 41 int[] keys = new int[size]; 44 for (int i = 0; i < size; ++i) { 56 int size = size(); local 57 int[] keys = new int[size]; 58 Parcelable[] values = new Parcelable[size]; 59 for (int i = 0; i < size; ++i) { 63 parcel.writeInt(size); 78 public ParcelableSparseArray[] newArray(int size) { [all...] |
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/ |
StaggeredGridDefaultTest.java | 50 8, mStaggeredGrid.mLocations.size()); 54 9, mStaggeredGrid.mLocations.size()); 66 9, mStaggeredGrid.mLocations.size());
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/ |
InfoStoreTrojan.java | 30 final int size = store.mLayoutHolderMap.size(); local 31 for (int i = 0; i < size; i ++) {
|
/frameworks/wilhelm/src/itf/ |
IMetadataTraversal.c | 75 SLuint32 size = thiz->mSize; local 77 *pSize = size; 86 SLint32 *pNodeID, SLuint32 *pType, SLuint32 size, SLchar *pMimeType)
|
/hardware/intel/bootstub/ |
sfi.c | 44 int sfi_add_e820_entry(struct boot_params *bp, memory_map_t *mb_mmap, u64 start, u64 size, int type) 59 /* Override size and type */ 60 e820_entry->size = size; 62 mb_mmap_entry->length_low = size; 77 e820_entry->size = size; 80 mb_mmap_entry->size = 20; 83 mb_mmap_entry->length_low = size; 96 unsigned long long start, end, size; local [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp4/parser/ |
viddec_parse_sc_mp4.c | 24 uint32_t size; local 31 size = 0; 32 data_left = cxt->size; 60 ptr+=4;size+=4;data_left-=4; 77 ptr++;size++;data_left--; 90 ptr+=4;size+=4;data_left-=4; 110 cxt->sc_end_pos = size; 128 ptr++;size++;data_left--;
|