Searched refs:allocate (Results 1 - 25 of 103) sorted by relevance

12345

/frameworks/compile/mclinker/unittests/
H A DLinearAllocatorTest.cpp43 Data* pointer = m_pTestee->allocate(10);
49 TEST_F( LinearAllocatorTest, allocate ) {
50 Data* pointer = m_pTestee->allocate();
57 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1);
64 Data* pointer = m_pTestee->allocate();
73 Data* pointer = m_pTestee->allocate();
84 Data* pointer = m_pTestee->allocate(10);
93 Data* pointer = m_pTestee->allocate(10);
105 Data* pointer = m_pTestee->allocate();
122 Data* pointer = m_pTestee->allocate(1
[all...]
H A DRTLinearAllocatorTest.cpp44 Data* pointer = m_pTestee->allocate(10);
50 TEST_F(RTLinearAllocatorTest, allocate ) {
51 Data* pointer = m_pTestee->allocate();
58 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1);
65 Data* pointer = m_pTestee->allocate();
74 Data* pointer = m_pTestee->allocate();
85 Data* pointer = m_pTestee->allocate(10);
94 Data* pointer = m_pTestee->allocate(10);
106 Data* pointer = m_pTestee->allocate();
123 Data* pointer = m_pTestee->allocate(1
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DContextFactory.cpp29 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();
38 LDContext* result = allocate();
H A DInputFactory.cpp39 Input* result = Alloc::allocate();
/frameworks/rs/cpu_ref/linkloader/include/impl/
H A DELFSectionNoBits.hxx33 if (!result->chunk.allocate(sh->getSize())) {
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DCharsets.java53 CharBuffer cb = CharBuffer.allocate(length);
63 CharBuffer cb = CharBuffer.allocate(length);
73 CharBuffer cb = CharBuffer.allocate(length);
/frameworks/compile/mclinker/lib/Support/
H A DMemoryAreaFactory.cpp31 MemoryArea* result = allocate();
46 MemoryArea* result = allocate();
60 MemoryArea* result = allocate();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DNativeBuffer.java40 allocate(count * getElementSize());
50 throw new RuntimeException("Unable to allocate a copy of " + getClass() + "! Make " +
126 private native boolean allocate(int size); method in class:NativeBuffer
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
H A DBufferPool.java48 return ByteBuffer.allocate(chooseCapacity(mInitialBufferSize, needed));
72 buffer = ByteBuffer.allocate(capacity);
/frameworks/compile/mclinker/lib/LD/
H A DRelocationFactory.cpp74 Relocation* result = allocate();
81 Relocation* result = allocate();
H A DRelocData.cpp33 RelocData* result = g_RelocDataFactory->allocate();
H A DSectionData.cpp35 SectionData* result = g_SectDataFactory->allocate();
/frameworks/av/media/mtp/
H A DMtpPacket.h44 void allocate(size_t length);
H A DMtpPacket.cpp50 allocate(MTP_CONTAINER_HEADER_SIZE);
55 void MtpPacket::allocate(size_t length) { function in class:android::MtpPacket
89 allocate(length);
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpDeclinePacket.java44 ByteBuffer result = ByteBuffer.allocate(MAX_LENGTH);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DOrderedDataOutputStream.java26 private final ByteBuffer mByteBuffer = ByteBuffer.allocate(4);
/frameworks/compile/mclinker/lib/Script/
H A DFileToken.cpp36 FileToken* result = g_FileTokenFactory->allocate();
H A DNameSpec.cpp36 NameSpec* result = g_NameSpecFactory->allocate();
H A DStrToken.cpp37 StrToken* result = g_StrTokenFactory->allocate();
H A DOperand.cpp60 SymOperand* result = g_SymOperandFactory->allocate();
100 IntOperand* result = g_IntOperandFactory->allocate();
139 SectOperand* result = g_SectOperandFactory->allocate();
180 SectDescOperand* result = g_SectDescOperandFactory->allocate();
226 FragOperand* result = g_FragOperandFactory->allocate();
/frameworks/native/include/binder/
H A DMemoryDealer.h40 virtual sp<IMemory> allocate(size_t size);
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/utils/
H A DObexAppParameters.java104 byte[] bval = ByteBuffer.allocate(1).put(val).array();
109 byte[] bval = ByteBuffer.allocate(2).putShort(val).array();
114 byte[] bval = ByteBuffer.allocate(4).putInt(val).array();
119 byte[] bval = ByteBuffer.allocate(8).putLong(val).array();
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/utils/
H A DObexAppParameters.java104 byte[] bval = ByteBuffer.allocate(1).put(val).array();
109 byte[] bval = ByteBuffer.allocate(2).putShort(val).array();
114 byte[] bval = ByteBuffer.allocate(4).putInt(val).array();
119 byte[] bval = ByteBuffer.allocate(8).putLong(val).array();
/frameworks/rs/cpu_ref/linkloader/include/
H A DMemChunk.h43 bool allocate(size_t size);
/frameworks/compile/mclinker/include/mcld/Support/
H A DUniqueGCFactory.h63 DataType* data = Alloc::allocate();
76 DataType* data = Alloc::allocate();

Completed in 2445 milliseconds

12345