Home
last modified time | relevance | path

Searched refs:uiOffset (Results 1 – 25 of 136) sorted by relevance

123456

/dports/games/hllib/HLLib/
H A DMapping.cpp18uiOffset, hlULongLong uiLength) : pMapping(pMapping), lpView(lpView), uiAllocationOffset(uiAllocat… in CView() argument
20 assert(this->uiOffset + this->uiLength <= this->uiAllocationLength); in CView()
35 return (hlByte *)this->lpView + this->uiOffset; in GetView()
40 return this->uiOffset; in GetOffset()
149 hlBool CMapping::Map(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in Map() argument
165 …if(uiOffset >= pView->GetAllocationOffset() && uiOffset + uiLength <= pView->GetAllocationOffset()… in Map()
167 pView->uiOffset = uiOffset - pView->GetAllocationOffset(); in Map()
173 if(this->Unmap(pView) && this->MapInternal(pView, uiOffset, uiLength)) in Map()
220 hlBool CMapping::Commit(CView &View, hlULongLong uiOffset, hlULongLong uiLength) in Commit() argument
228 if(uiOffset + uiLength > View.GetLength()) in Commit()
[all …]
H A DStreamMapping.cpp77 hlBool CStreamMapping::MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in MapInternal() argument
81 if(uiOffset + uiLength > this->Stream.GetStreamSize()) in MapInternal()
84 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0, thi… in MapInternal()
86 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0, thi… in MapInternal()
91 if(Stream.Seek(static_cast<hlLongLong>(uiOffset), HL_SEEK_BEGINNING) != uiOffset) in MapInternal()
104 pView = new CView(this, lpData, uiOffset, uiLength); in MapInternal()
117 hlBool CStreamMapping::CommitInternal(CView &View, hlULongLong uiOffset, hlULongLong uiLength) in CommitInternal() argument
121 hlULongLong uiFileOffset = View.GetAllocationOffset() + View.GetOffset() + uiOffset; in CommitInternal()
128 …if(Stream.Write((const hlByte *)View.GetView() + uiOffset, static_cast<hlUInt>(uiLength)) != uiLen… in CommitInternal()
H A DMappingStream.cpp209 hlULongLong uiOffset = 0; in Read() local
222 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
224 uiOffset += uiBytes; in Read()
229 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
231 uiOffset += uiViewBytes; in Read()
236 return static_cast<hlUInt>(uiOffset); in Read()
299 hlULongLong uiOffset = 0; in Write() local
312 …this->pView->GetView())) + uiViewPointer, static_cast<const hlByte *>(lpData) + uiOffset, uiBytes); in Write()
314 uiOffset += uiBytes; in Write()
321 uiOffset += uiViewBytes; in Write()
[all …]
H A DVBSPFile.cpp92 pHeader->lpLumps[i].uiVersion = this->pHeader->lpLumps[i].uiOffset; in MapDataStructures()
93 pHeader->lpLumps[i].uiOffset = this->pHeader->lpLumps[i].uiLength; in MapDataStructures()
101 hlUInt uiTest, uiOffset = this->pHeader->lpLumps[HL_VBSP_LUMP_PAKFILE].uiOffset; in MapDataStructures() local
102 …while(uiOffset < this->pHeader->lpLumps[HL_VBSP_LUMP_PAKFILE].uiOffset + this->pHeader->lpLumps[HL… in MapDataStructures()
106 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(hlUInt))) in MapDataStructures()
119 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPEndOfCentralDirectoryRecord))) in MapDataStructures()
144 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPFileHeader))) in MapDataStructures()
158 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPLocalFileHeader))) in MapDataStructures()
255 hlUInt uiTest, uiOffset = 0; in CreateRoot() local
258 uiTest = *(hlUInt *)((hlByte *)this->pFileHeaderView->GetView() + uiOffset); in CreateRoot()
[all …]
H A DGCFStream.cpp205 hlULongLong uiOffset = 0; in Read() local
218 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
220 uiOffset += uiBytes; in Read()
225 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
227 uiOffset += uiViewBytes; in Read()
232 return static_cast<hlUInt>(uiOffset); in Read()
295 hlULongLong uiOffset = 0; in Write() local
308 …this->pView->GetView())) + uiViewPointer, static_cast<const hlByte *>(lpData) + uiOffset, uiBytes); in Write()
310 uiOffset += uiBytes; in Write()
317 uiOffset += uiViewBytes; in Write()
[all …]
H A DMapping.h31 hlULongLong uiOffset; variable
37 …ongLong uiAllocationOffset, hlULongLong uiAllocationLength, hlULongLong uiOffset = 0, hlULongLong …
77 hlBool Map(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength);
81 hlBool Commit(CView &View, hlULongLong uiOffset, hlULongLong uiLength);
87 virtual hlBool MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) = 0;
90 virtual hlBool CommitInternal(CView &View, hlULongLong uiOffset, hlULongLong uiLength);
H A DFileMapping.cpp262 hlBool CFileMapping::MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in MapInternal() argument
268 if(uiOffset + uiLength > this->uiViewSize) in MapInternal()
271 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0ULL, … in MapInternal()
273 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0ULL, … in MapInternal()
278 pView = new CView(this, (hlByte *)this->lpView, 0, this->uiViewSize, uiOffset, uiLength); in MapInternal()
284 if(uiOffset + uiLength > uiMappingSize) in MapInternal()
287 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0ULL, … in MapInternal()
289 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0ULL, … in MapInternal()
296 hlULongLong uiGrainOffset = uiOffset % static_cast<hlULongLong>(this->uiAllocationGranularity); in MapInternal()
297 hlULongLong uiFileOffset = uiOffset - uiGrainOffset; in MapInternal()
H A DMemoryMapping.cpp87 hlBool CMemoryMapping::MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in MapInternal() argument
91 if(uiOffset + uiLength > this->uiBufferSize) in MapInternal()
94 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0, thi… in MapInternal()
96 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0, thi… in MapInternal()
101 pView = new CView(this, this->lpData, 0, this->uiBufferSize, uiOffset, uiLength); in MapInternal()
H A DZIPFile.cpp125 hlULongLong uiOffset = 0, uiLength = this->pMapping->GetMappingSize(); in MapDataStructures() local
126 while(uiOffset < uiLength - sizeof(uiTest)) in MapDataStructures()
130 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(hlUInt))) in MapDataStructures()
143 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPEndOfCentralDirectoryRecord))) in MapDataStructures()
168 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPFileHeader))) in MapDataStructures()
182 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPLocalFileHeader))) in MapDataStructures()
218 hlUInt uiTest, uiOffset = 0; in CreateRoot() local
219 while(uiOffset < this->pEndOfCentralDirectoryRecord->uiCentralDirectorySize - sizeof(uiTest)) in CreateRoot()
221 uiTest = *(hlUInt *)((hlByte *)this->pFileHeaderView->GetView() + uiOffset); in CreateRoot()
227 … = static_cast<ZIPFileHeader *>((hlVoid *)((hlByte *)this->pFileHeaderView->GetView() + uiOffset)); in CreateRoot()
[all …]
/dports/archivers/hlextract/HLLib/
H A DMapping.cpp18uiOffset, hlULongLong uiLength) : pMapping(pMapping), lpView(lpView), uiAllocationOffset(uiAllocat… in CView() argument
20 assert(this->uiOffset + this->uiLength <= this->uiAllocationLength); in CView()
35 return (hlByte *)this->lpView + this->uiOffset; in GetView()
40 return this->uiOffset; in GetOffset()
149 hlBool CMapping::Map(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in Map() argument
165 …if(uiOffset >= pView->GetAllocationOffset() && uiOffset + uiLength <= pView->GetAllocationOffset()… in Map()
167 pView->uiOffset = uiOffset - pView->GetAllocationOffset(); in Map()
173 if(this->Unmap(pView) && this->MapInternal(pView, uiOffset, uiLength)) in Map()
220 hlBool CMapping::Commit(CView &View, hlULongLong uiOffset, hlULongLong uiLength) in Commit() argument
228 if(uiOffset + uiLength > View.GetLength()) in Commit()
[all …]
H A DStreamMapping.cpp77 hlBool CStreamMapping::MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in MapInternal() argument
81 if(uiOffset + uiLength > this->Stream.GetStreamSize()) in MapInternal()
84 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0, thi… in MapInternal()
86 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0, thi… in MapInternal()
91 if(Stream.Seek(static_cast<hlLongLong>(uiOffset), HL_SEEK_BEGINNING) != uiOffset) in MapInternal()
104 pView = new CView(this, lpData, uiOffset, uiLength); in MapInternal()
117 hlBool CStreamMapping::CommitInternal(CView &View, hlULongLong uiOffset, hlULongLong uiLength) in CommitInternal() argument
121 hlULongLong uiFileOffset = View.GetAllocationOffset() + View.GetOffset() + uiOffset; in CommitInternal()
128 …if(Stream.Write((const hlByte *)View.GetView() + uiOffset, static_cast<hlUInt>(uiLength)) != uiLen… in CommitInternal()
H A DMappingStream.cpp209 hlULongLong uiOffset = 0; in Read() local
222 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
224 uiOffset += uiBytes; in Read()
229 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
231 uiOffset += uiViewBytes; in Read()
236 return static_cast<hlUInt>(uiOffset); in Read()
299 hlULongLong uiOffset = 0; in Write() local
312 …this->pView->GetView())) + uiViewPointer, static_cast<const hlByte *>(lpData) + uiOffset, uiBytes); in Write()
314 uiOffset += uiBytes; in Write()
321 uiOffset += uiViewBytes; in Write()
[all …]
H A DVBSPFile.cpp92 pHeader->lpLumps[i].uiVersion = this->pHeader->lpLumps[i].uiOffset; in MapDataStructures()
93 pHeader->lpLumps[i].uiOffset = this->pHeader->lpLumps[i].uiLength; in MapDataStructures()
101 hlUInt uiTest, uiOffset = this->pHeader->lpLumps[HL_VBSP_LUMP_PAKFILE].uiOffset; in MapDataStructures() local
102 …while(uiOffset < this->pHeader->lpLumps[HL_VBSP_LUMP_PAKFILE].uiOffset + this->pHeader->lpLumps[HL… in MapDataStructures()
106 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(hlUInt))) in MapDataStructures()
119 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPEndOfCentralDirectoryRecord))) in MapDataStructures()
144 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPFileHeader))) in MapDataStructures()
158 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPLocalFileHeader))) in MapDataStructures()
255 hlUInt uiTest, uiOffset = 0; in CreateRoot() local
258 uiTest = *(hlUInt *)((hlByte *)this->pFileHeaderView->GetView() + uiOffset); in CreateRoot()
[all …]
H A DGCFStream.cpp205 hlULongLong uiOffset = 0; in Read() local
218 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
220 uiOffset += uiBytes; in Read()
225 …memcpy(static_cast<hlByte *>(lpData) + uiOffset, static_cast<const hlByte *>(this->pView->GetView(… in Read()
227 uiOffset += uiViewBytes; in Read()
232 return static_cast<hlUInt>(uiOffset); in Read()
295 hlULongLong uiOffset = 0; in Write() local
308 …this->pView->GetView())) + uiViewPointer, static_cast<const hlByte *>(lpData) + uiOffset, uiBytes); in Write()
310 uiOffset += uiBytes; in Write()
317 uiOffset += uiViewBytes; in Write()
[all …]
H A DMapping.h31 hlULongLong uiOffset; variable
37 …ongLong uiAllocationOffset, hlULongLong uiAllocationLength, hlULongLong uiOffset = 0, hlULongLong …
77 hlBool Map(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength);
81 hlBool Commit(CView &View, hlULongLong uiOffset, hlULongLong uiLength);
87 virtual hlBool MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) = 0;
90 virtual hlBool CommitInternal(CView &View, hlULongLong uiOffset, hlULongLong uiLength);
H A DFileMapping.cpp262 hlBool CFileMapping::MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in MapInternal() argument
268 if(uiOffset + uiLength > this->uiViewSize) in MapInternal()
271 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0ULL, … in MapInternal()
273 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0ULL, … in MapInternal()
278 pView = new CView(this, (hlByte *)this->lpView, 0, this->uiViewSize, uiOffset, uiLength); in MapInternal()
284 if(uiOffset + uiLength > uiMappingSize) in MapInternal()
287 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0ULL, … in MapInternal()
289 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0ULL, … in MapInternal()
296 hlULongLong uiGrainOffset = uiOffset % static_cast<hlULongLong>(this->uiAllocationGranularity); in MapInternal()
297 hlULongLong uiFileOffset = uiOffset - uiGrainOffset; in MapInternal()
H A DMemoryMapping.cpp87 hlBool CMemoryMapping::MapInternal(CView *&pView, hlULongLong uiOffset, hlULongLong uiLength) in MapInternal() argument
91 if(uiOffset + uiLength > this->uiBufferSize) in MapInternal()
94 …sted view (%I64u, %I64u) does not fit inside mapping, (%I64u, %I64u).", uiOffset, uiLength, 0, thi… in MapInternal()
96 …equested view (%llu, %llu) does not fit inside mapping, (%llu, %llu).", uiOffset, uiLength, 0, thi… in MapInternal()
101 pView = new CView(this, this->lpData, 0, this->uiBufferSize, uiOffset, uiLength); in MapInternal()
H A DZIPFile.cpp125 hlULongLong uiOffset = 0, uiLength = this->pMapping->GetMappingSize(); in MapDataStructures() local
126 while(uiOffset < uiLength - sizeof(uiTest)) in MapDataStructures()
130 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(hlUInt))) in MapDataStructures()
143 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPEndOfCentralDirectoryRecord))) in MapDataStructures()
168 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPFileHeader))) in MapDataStructures()
182 if(!this->pMapping->Map(pTestView, uiOffset, sizeof(ZIPLocalFileHeader))) in MapDataStructures()
218 hlUInt uiTest, uiOffset = 0; in CreateRoot() local
219 while(uiOffset < this->pEndOfCentralDirectoryRecord->uiCentralDirectorySize - sizeof(uiTest)) in CreateRoot()
221 uiTest = *(hlUInt *)((hlByte *)this->pFileHeaderView->GetView() + uiOffset); in CreateRoot()
227 … = static_cast<ZIPFileHeader *>((hlVoid *)((hlByte *)this->pFileHeaderView->GetView() + uiOffset)); in CreateRoot()
[all …]
/dports/multimedia/cmrtlib/media-driver-intel-media-20.1.1/media_driver/agnostic/common/hw/
H A Dmhw_vebox.cpp98 uint32_t uiOffset; in AssignVeboxState() local
224 uint32_t uiOffset; in CreateHeap() local
244 uiOffset = 0; in CreateHeap()
245 m_veboxHeap->uiDndiStateOffset = uiOffset; in CreateHeap()
246 uiOffset += m_veboxSettings.uiDndiStateSize; in CreateHeap()
248 m_veboxHeap->uiIecpStateOffset = uiOffset; in CreateHeap()
249 uiOffset += m_veboxSettings.uiIecpStateSize; in CreateHeap()
251 m_veboxHeap->uiGamutStateOffset = uiOffset; in CreateHeap()
263 m_veboxHeap->ui3DLUTStateOffset = uiOffset; in CreateHeap()
266 m_veboxHeap->ui1DLUTStateOffset = uiOffset; in CreateHeap()
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/openh264/src/codec/decoder/core/src/
H A Dcabac_decoder.cpp81 pDecEngine->uiOffset <<= 16; in InitCabacDecEngineFromBS()
142 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBinCabac() local
169 pDecEngine->uiOffset = uiOffset; in DecodeBinCabac()
175 pDecEngine->uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBinCabac()
186 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBypassCabac() local
194 uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBypassCabac()
202 if (uiOffset >= uiRangeValue) { in DecodeBypassCabac()
204 pDecEngine->uiOffset = uiOffset - uiRangeValue; in DecodeBypassCabac()
209 pDecEngine->uiOffset = uiOffset; in DecodeBypassCabac()
217 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeTerminateCabac() local
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/openh264/src/codec/decoder/core/src/
H A Dcabac_decoder.cpp81 pDecEngine->uiOffset <<= 16; in InitCabacDecEngineFromBS()
142 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBinCabac() local
169 pDecEngine->uiOffset = uiOffset; in DecodeBinCabac()
175 pDecEngine->uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBinCabac()
186 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBypassCabac() local
194 uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBypassCabac()
202 if (uiOffset >= uiRangeValue) { in DecodeBypassCabac()
204 pDecEngine->uiOffset = uiOffset - uiRangeValue; in DecodeBypassCabac()
209 pDecEngine->uiOffset = uiOffset; in DecodeBypassCabac()
217 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeTerminateCabac() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/openh264/src/codec/decoder/core/src/
H A Dcabac_decoder.cpp81 pDecEngine->uiOffset <<= 16; in InitCabacDecEngineFromBS()
142 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBinCabac() local
169 pDecEngine->uiOffset = uiOffset; in DecodeBinCabac()
175 pDecEngine->uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBinCabac()
186 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBypassCabac() local
194 uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBypassCabac()
202 if (uiOffset >= uiRangeValue) { in DecodeBypassCabac()
204 pDecEngine->uiOffset = uiOffset - uiRangeValue; in DecodeBypassCabac()
209 pDecEngine->uiOffset = uiOffset; in DecodeBypassCabac()
217 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeTerminateCabac() local
[all …]
/dports/multimedia/openh264/openh264-2.1.1/codec/decoder/core/src/
H A Dcabac_decoder.cpp81 pDecEngine->uiOffset <<= 16; in InitCabacDecEngineFromBS()
142 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBinCabac() local
169 pDecEngine->uiOffset = uiOffset; in DecodeBinCabac()
175 pDecEngine->uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBinCabac()
186 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeBypassCabac() local
194 uiOffset = (uiOffset << iNumBitsRead) | uiVal; in DecodeBypassCabac()
202 if (uiOffset >= uiRangeValue) { in DecodeBypassCabac()
204 pDecEngine->uiOffset = uiOffset - uiRangeValue; in DecodeBypassCabac()
209 pDecEngine->uiOffset = uiOffset; in DecodeBypassCabac()
217 uint64_t uiOffset = pDecEngine->uiOffset; in DecodeTerminateCabac() local
[all …]
/dports/multimedia/libva-intel-media-driver/media-driver-intel-media-22.1.1/media_driver/agnostic/common/hw/
H A Dmhw_vebox.cpp98 uint32_t uiOffset; in AssignVeboxState() local
224 uint32_t uiOffset; in CreateHeap() local
253 uiOffset = 0; in CreateHeap()
254 m_veboxHeap->uiDndiStateOffset = uiOffset; in CreateHeap()
255 uiOffset += m_veboxSettings.uiDndiStateSize; in CreateHeap()
257 m_veboxHeap->uiIecpStateOffset = uiOffset; in CreateHeap()
258 uiOffset += m_veboxSettings.uiIecpStateSize; in CreateHeap()
260 m_veboxHeap->uiGamutStateOffset = uiOffset; in CreateHeap()
272 m_veboxHeap->uiHdrStateOffset = uiOffset; in CreateHeap()
273 uiOffset += m_veboxSettings.uiHdrStateSize; in CreateHeap()
[all …]
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/src/game/Utils/
H A DSTIConvert.cc350 UINT32 uiOffset; in ETRLECompressSubImage() local
354 pCurrent = p8BPPBuffer + uiOffset; in ETRLECompressSubImage()
494 UINT32 uiOffset; in GoToNextSubImage() local
499 pCurrent = p8BPPBuffer + uiOffset; in GoToNextSubImage()
570 UINT32 uiOffset; in DetermineSubImageSize() local
581 pCurrent = p8BPPBuffer + uiOffset; in DetermineSubImageSize()
590 pCurrent = p8BPPBuffer + uiOffset; in DetermineSubImageSize()
666 UINT32 uiOffset; in CheckForDataInRows() local
689 pCurrent = p8BPPBuffer + uiOffset; in CheckForDataInRows()
706 UINT32 uiOffset; in CheckForDataInCols() local
[all …]

123456