Searched defs:alignedPos (Results 1 - 2 of 2) sorted by relevance

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

Completed in 437 milliseconds