HomeSort by relevance Sort by last modified time
    Searched refs:pSize (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MEGetBufSize.c 40 * pSize - pointer to the number of bytes required for the motion
46 * - pMEParams or pSize is NULL.
54 OMX_U32 *pSize
58 armRetArgErrIf(!pSize, OMX_Sts_BadArgErr);
65 *pSize = (OMX_INT) sizeof(ARMVCM4P10_MESpec);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_MEGetBufSize.c 40 * pSize - pointer to the number of bytes required for the specification
56 OMX_U32 *pSize
60 armRetArgErrIf(!pSize, OMX_Sts_BadArgErr);
65 *pSize = (OMX_INT) sizeof(ARMVCM4P2_MESpec);
  /frameworks/compile/libbcc/include/bcc/Support/
Sha1Util.h 44 const uint8_t *pData, size_t pSize);
48 const char *pData, size_t pSize) {
51 pSize);
  /frameworks/compile/mclinker/lib/Support/
raw_mem_ostream.cpp 35 void raw_mem_ostream::write_impl(const char *pPtr, size_t pSize)
37 MemoryRegion* region = m_MemoryArea.request(m_Position, pSize);
38 memcpy(region->start(), pPtr, pSize);
39 m_Position += pSize;
RegionFactory.cpp 20 RegionFactory::produce(Address pVMAStart, size_t pSize)
23 new (result) MemoryRegion(pVMAStart, pSize);
MemoryRegion.cpp 25 MemoryRegion::MemoryRegion(MemoryRegion::Address pVMAStart, size_t pSize)
26 : m_pParent(NULL), m_VMAStart(pVMAStart), m_Length(pSize) {
33 MemoryRegion* MemoryRegion::Create(void* pStart, size_t pSize)
35 return g_RegionFactory->produce(static_cast<Address>(pStart), pSize);
38 MemoryRegion* MemoryRegion::Create(void* pStart, size_t pSize, Space& pSpace)
41 pSize);
Space.cpp 61 Space::Space(Space::Type pType, void* pMemBuffer, size_t pSize)
62 : m_Data(static_cast<Address>(pMemBuffer)), m_StartOffset(0), m_Size(pSize),
72 Space* Space::Create(void* pMemBuffer, size_t pSize)
74 Space* result = new Space(EXTERNAL, pMemBuffer, pSize);
78 Space* Space::Create(FileHandle& pHandler, size_t pStart, size_t pSize)
84 switch(type = policy(pStart, pSize)) {
87 total_offset = pStart + pSize;
91 size = pSize;
107 size = pSize;
119 total_offset = page_boundary(pStart + pSize);
    [all...]
FileHandle.cpp 67 inline static bool get_size(int pHandler, unsigned int &pSize)
71 pSize = 0;
74 pSize = file_stat.st_size;
148 bool FileHandle::truncate(size_t pSize)
155 if (-1 == sys::fs::detail::ftruncate(m_Handler, pSize)) {
160 m_Size = pSize;
LEB128.cpp 96 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize) {
100 pSize = 1;
103 pSize = 2;
107 pSize = 3;
112 pSize = 4;
130 pSize++;
188 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize) {
193 pSize = 0;
197 pSize++;
  /frameworks/compile/mclinker/lib/Fragment/
FillFragment.cpp 20 uint64_t pSize,
23 m_Size(pSize) {
  /external/qemu/android/utils/
lineinput.h 37 * '*pSize' to save you a strlen() call.
39 const char* lineInput_getLineAndSize( LineInput* input, size_t *pSize );
  /frameworks/compile/mclinker/include/mcld/Support/
LEB128.h 30 IntType decode(const ByteType *pBuf, size_t &pSize);
71 * Read an integer encoded in ULEB128 format from the given buffer. pSize will
76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize);
89 int64_t decode<int64_t>(const ByteType *pBuf, size_t &pSize);
105 IntType decode(const char *pBuf, size_t &pSize) {
106 return decode<IntType>(reinterpret_cast<const ByteType*>(pBuf), pSize);
raw_mem_ostream.h 37 virtual void write_impl(const char *pPtr, size_t pSize);
MemoryRegion.h 50 MemoryRegion(const Address pVMAStart, size_t pSize);
62 /// @param pSize [in] The size of the given memory
63 static MemoryRegion* Create(void* pStart, size_t pSize);
78 /// @param pSize [in] The size of the given memory
80 static MemoryRegion* Create(void* pStart, size_t pSize, Space& pSpace);
Space.h 46 Space(Type pType, void* pMemBuffer, size_t pSize);
77 static Space* Create(void* pMemBuffer, size_t pSize);
80 static Space* Create(FileHandle& pHandler, size_t pOffset, size_t pSize);
RegionFactory.h 34 MemoryRegion* produce(Address pVMAStart, size_t pSize);
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_FileReader.c 87 M4OSA_UInt32* pSize)
94 data, (M4OSA_NULL != pSize) ? (*pSize) : 0);
100 M4OSA_DEBUG_IF2(M4OSA_NULL == pSize, M4ERR_PARAMETER,
101 "M4OSA_fileReadData: pSize is M4OSA_NULL");
109 uiSizeRead = fread(data, sizeof(M4OSA_Char), *pSize,
114 *pSize = 0;
120 if ((M4OSA_UInt32)uiSizeRead < *pSize)
122 *pSize = uiSizeRead;
129 *pSize = uiSizeRead
    [all...]
  /frameworks/compile/libbcc/lib/Support/
Sha1Util.cpp 65 const uint8_t *pData, size_t pSize) {
72 static_cast<unsigned long>(pSize));
  /frameworks/compile/mclinker/lib/LD/
NamePool.cpp 18 NamePool::NamePool(NamePool::size_type pSize)
19 : m_pResolver(new StaticResolver()), m_Table(pSize) {
38 ResolveInfo::SizeType pSize,
49 (*result)->setSize(pSize);
61 ResolveInfo::SizeType pSize,
87 new_symbol->setSize(pSize);
125 void NamePool::reserve(NamePool::size_type pSize)
127 m_Table.rehash(pSize);
LDSection.cpp 43 uint64_t pSize,
49 m_Size(pSize),
72 uint64_t pSize,
76 new (result) LDSection(pName, pKind, pType, pFlag, pSize, pAddr);
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 45 explicit NamePool(size_type pSize = 3);
57 ResolveInfo::SizeType pSize,
71 ResolveInfo::SizeType pSize,
  /frameworks/wilhelm/src/itf/
IMetadataTraversal.c 66 SLMetadataTraversalItf self, SLuint32 index, SLuint32 *pSize)
70 if (NULL == pSize) {
77 *pSize = size;
  /frameworks/compile/mclinker/include/mcld/Fragment/
FillFragment.h 26 FillFragment(int64_t pValue, unsigned int pValueSize, uint64_t pSize,
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 158 /// @param [in] pSize The size of the memory
160 Input* ReadInput(const std::string& pName, void* pRawMemory, size_t pSize);
392 /// @param [in] pSize The size of the symbol. Bigger common symbols
409 ResolveInfo::SizeType pSize,
454 ResolveInfo::SizeType pSize = 0,
478 ResolveInfo::SizeType pSize,
488 ResolveInfo::SizeType pSize,
505 ResolveInfo::SizeType pSize,
516 ResolveInfo::SizeType pSize,
527 ResolveInfo::SizeType pSize,
    [all...]
  /frameworks/compile/mclinker/tools/mcld/include/alone/
Linker.h 78 enum ErrorCode addObject(void* pMemory, size_t pSize);
80 enum ErrorCode addCode(void* pMemory, size_t pSize);

Completed in 850 milliseconds

1 2 3 4 5 6 7