Home
last modified time | relevance | path

Searched refs:alignedPos (Results 1 – 2 of 2) sorted by relevance

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