HomeSort by relevance Sort by last modified time
    Searched refs:alignedPos (Results 1 - 2 of 2) sorted by null

  /external/webrtc/src/system_wrappers/source/
aligned_malloc.cc 86 uintptr_t alignedPos = (alignStartPos + alignment - 1) & ~(alignment - 1);
88 // alignedPos is the address sought for.
89 returnValue->alignedBuffer = (void*)alignedPos;
93 uintptr_t headerPos = alignedPos;
108 uintptr_t alignedPos = (uintptr_t)memBlock;
109 uintptr_t headerPos = alignedPos - sizeof(uintptr_t);
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 103 UInt64 alignedPos = VirtPos & mask2;
104 if (BufferSize > 0 && BufferStartPos == alignedPos)
134 if (alignedPos != PhyPos)
137 bool result = File.Seek(alignedPos, FILE_BEGIN, realNewPosition);
143 BufferStartPos = alignedPos;

Completed in 321 milliseconds