Searched refs:pLength (Results 1 - 21 of 21) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
H A DDemangle.h18 bool isCtorOrDtor(const char* pName, size_t pLength);
H A DFileHandle.h91 bool read(void* pMemBuffer, size_t pStartOffset, size_t pLength);
93 bool write(const void* pMemBuffer, size_t pStartOffset, size_t pLength);
95 bool mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength);
97 bool munmap(void* pMemBuffer, size_t pLength);
H A DMemoryArea.h38 llvm::StringRef request(size_t pOffset, size_t pLength);
H A DFileOutputBuffer.h48 MemoryRegion request(size_t pOffset, size_t pLength);
H A DFileSystem.h102 int ftruncate(int pFD, size_t pLength);
/frameworks/compile/mclinker/lib/Support/
H A DDemangle.cpp43 bool isCtorOrDtor(const char* pName, size_t pLength) argument
56 demangle(pName, pName + pLength, db, internal_status);
65 demangle(pName, pName + pLength, db, internal_status);
H A DFileOutputBuffer.cpp49 MemoryRegion FileOutputBuffer::request(size_t pOffset, size_t pLength) argument
51 if (pOffset > getBufferSize() || (pOffset + pLength) > getBufferSize())
53 return MemoryRegion(getBufferStart() + pOffset, pLength);
H A DFileHandle.cpp164 bool FileHandle::read(void* pMemBuffer, size_t pStartOffset, size_t pLength) argument
171 if (0 == pLength)
176 pLength,
187 bool FileHandle::write(const void* pMemBuffer, size_t pStartOffset, size_t pLength) argument
194 if (0 == pLength)
200 pLength,
H A DMemoryArea.cpp44 llvm::StringRef MemoryArea::request(size_t pOffset, size_t pLength) argument
46 return llvm::StringRef(m_pMemoryBuffer->getBufferStart() + pOffset, pLength);
/frameworks/compile/libbcc/include/bcc/Support/
H A DFile.h62 inline android::FileMap *createMap(off_t pOffset, size_t pLength, argument
65 return FileBase::createMap(pOffset, pLength, pIsReadOnly);
H A DFileBase.h127 android::FileMap *createMap(off_t pOffset, size_t pLength, bool pIsReadOnly);
/frameworks/compile/mclinker/lib/Support/Unix/
H A DFileSystem.inc139 int ftruncate(int pFD, size_t pLength)
141 return ::ftruncate(pFD, pLength);
158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength)
165 if (0 == pLength)
190 pMemBuffer = ::mmap(NULL, pLength, prot, flag, m_Handler, pStartOffset);
200 bool FileHandle::munmap(void* pMemBuffer, size_t pLength)
207 if (-1 == ::munmap(pMemBuffer, pLength)) {
/frameworks/compile/mclinker/lib/Support/Windows/
H A DFileSystem.inc139 int ftruncate(int pFD, size_t pLength)
141 return ::_chsize(pFD, pLength);
158 bool FileHandle::mmap(void*& pMemBuffer, size_t pStartOffset, size_t pLength)
161 pMemBuffer = (void*)::malloc(pLength);
162 return read(pMemBuffer, pStartOffset, pLength);
165 bool FileHandle::munmap(void* pMemBuffer, size_t pLength)
/frameworks/compile/libbcc/lib/Support/
H A DFileBase.cpp225 android::FileMap *FileBase::createMap(off_t pOffset, size_t pLength, argument
237 if (!map->create(NULL, mFD, pOffset, pLength, pIsReadOnly)) {
H A DDisassembler.cpp49 BufferMemoryObject(const uint8_t *pBytes, uint64_t pLength) argument
50 : mBytes(pBytes), mLength(pLength) {
/frameworks/compile/mclinker/include/mcld/
H A DIRBuilder.h286 /// @param pLength [in] The number of bytes of the data
287 /// @return If pLength is zero or failing to request a region, return a
289 static Fragment* CreateRegion(Input& pInput, size_t pOffset, size_t pLength);
297 /// @param pLength [in] The number of bytes of the data
298 /// @return If pLength is zero or failing to request a region, return a
300 static Fragment* CreateRegion(void* pMemory, size_t pLength);
/frameworks/compile/mclinker/lib/Script/
H A DScriptFile.cpp240 size_t pLength)
244 g_ParserStrPool->insert(std::string(pText, pLength), exist);
239 createParserStr(const char* pText, size_t pLength) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewLayoutAlgorithm.java289 float pLength = 0;
294 pLength += dx[xStep];
301 p += Math.abs(dx[xStep] / pLength);
/frameworks/compile/mclinker/include/mcld/Script/
H A DScriptFile.h140 static const std::string& createParserStr(const char* pText, size_t pLength);
/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp339 Fragment* IRBuilder::CreateRegion(Input& pInput, size_t pOffset, size_t pLength) argument
346 if (0 == pLength)
349 llvm::StringRef region = pInput.memArea()->request(pOffset, pLength);
354 Fragment* IRBuilder::CreateRegion(void* pMemory, size_t pLength) argument
356 if (0 == pLength)
359 llvm::StringRef region(reinterpret_cast<const char*>(pMemory), pLength);
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h2542 XAuint32* pLength

Completed in 3745 milliseconds