HomeSort by relevance Sort by last modified time
    Searched defs:mapOffset (Results 1 - 3 of 3) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
RawDexFile.java 80 final int mapOffset = getMapOffset();
81 final int mapSize = readSmallUint(mapOffset);
86 int mapItemOffset = mapOffset + 4 + index * MapItem.ITEM_SIZE;
  /external/deqp/modules/gles3/functional/
es3fBufferMapTests.cpp 53 BufferMapReadCase (Context& context, const char* name, const char* desc, deUint32 bufferTarget, deUint32 usage, int bufferSize, int mapOffset, int mapSize, WriteType write)
58 , m_mapOffset (mapOffset)
159 BufferPartialMapWriteCase (Context& context, const char* name, const char* desc, deUint32 bufferTarget, deUint32 usage, int bufferSize, int mapOffset, int mapSize, VerifyType verify)
164 , m_mapOffset (mapOffset)
231 const int mapOffset = 200;
234 const int verifyOffset = mapOffset+mapWriteOffs;
246 fillWithRandomBytes(refBuf.getPtr(mapOffset+mapWriteOffs), mapSize-mapWriteOffs, dataSeed&0xabcdef);
248 void* ptr = glMapBufferRange(m_bufferTarget, mapOffset, mapSize, GL_MAP_WRITE_BIT|GL_MAP_INVALIDATE_BUFFER_BIT);
252 deMemcpy((deUint8*)ptr+mapWriteOffs, refBuf.getPtr(mapOffset+mapWriteOffs), mapSize-mapWriteOffs);
290 const int mapOffset = 200
    [all...]
  /frameworks/av/media/codec2/vndk/
C2AllocatorIon.cpp 235 size_t mapOffset = offset - alignmentBytes;
239 c2_status_t err = mapInternal(mapSize, mapOffset, alignmentBytes, prot, flags, &(map.addr), addr);
311 virtual c2_status_t mapInternal(size_t mapSize, size_t mapOffset, size_t alignmentBytes,
316 flags, mapOffset, (unsigned char**)base, &mMapFd);
319 mIonFd, mBuffer, mapSize, prot, flags, mapOffset, ret);
328 *base = mmap(nullptr, mapSize, prot, flags, mMapFd, mapOffset);
331 mapSize, prot, flags, mMapFd, mapOffset, errno);
381 virtual c2_status_t mapInternal(size_t mapSize, size_t mapOffset, size_t alignmentBytes,
384 *base = mmap(nullptr, mapSize, prot, flags, mHandle.bufferFd(), mapOffset);
387 mapSize, prot, flags, mHandle.bufferFd(), mapOffset, errno)
    [all...]

Completed in 193 milliseconds