Home
last modified time | relevance | path

Searched refs:nRealPos (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/py-gdal/gdal-3.3.3/port/
H A Dcpl_vsil_stdin.cpp65 static GUIntBig nRealPos = 0; variable
136 CPLAssert(nCurOff == nRealPos); in ReadAndCache()
140 if( nRealPos < BUFFER_SIZE ) in ReadAndCache()
149 nRealPos = nCurOff; in ReadAndCache()
165 if( nRealPos < BUFFER_SIZE ) in Seek()
167 nRealPos += fread(pabyBuffer + nRealPos, 1, in Seek()
169 nBufferLen = static_cast<int>(nRealPos); in Seek()
195 if( nRealPos > nBufferLen && nOffset < nRealPos ) in Seek()
215 nCurOff = nRealPos; in Seek()
324 nRealPos = 0; in VSIStdinFilesystemHandler()
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/port/
H A Dcpl_vsil_stdin.cpp65 static GUIntBig nRealPos = 0; variable
136 CPLAssert(nCurOff == nRealPos); in ReadAndCache()
140 if( nRealPos < BUFFER_SIZE ) in ReadAndCache()
149 nRealPos = nCurOff; in ReadAndCache()
165 if( nRealPos < BUFFER_SIZE ) in Seek()
167 nRealPos += fread(pabyBuffer + nRealPos, 1, in Seek()
169 nBufferLen = static_cast<int>(nRealPos); in Seek()
195 if( nRealPos > nBufferLen && nOffset < nRealPos ) in Seek()
215 nCurOff = nRealPos; in Seek()
324 nRealPos = 0; in VSIStdinFilesystemHandler()
[all …]
/dports/graphics/gdal/gdal-3.3.3/port/
H A Dcpl_vsil_stdin.cpp65 static GUIntBig nRealPos = 0; variable
136 CPLAssert(nCurOff == nRealPos); in ReadAndCache()
140 if( nRealPos < BUFFER_SIZE ) in ReadAndCache()
149 nRealPos = nCurOff; in ReadAndCache()
165 if( nRealPos < BUFFER_SIZE ) in Seek()
167 nRealPos += fread(pabyBuffer + nRealPos, 1, in Seek()
169 nBufferLen = static_cast<int>(nRealPos); in Seek()
195 if( nRealPos > nBufferLen && nOffset < nRealPos ) in Seek()
215 nCurOff = nRealPos; in Seek()
324 nRealPos = 0; in VSIStdinFilesystemHandler()
[all …]
/dports/devel/upp/upp/bazaar/plugin/gdal/port/
H A Dcpl_vsil_stdin.cpp49 static GUIntBig nRealPos; variable
132 CPLAssert(nCurOff == nRealPos); in ReadAndCache()
136 if (nRealPos < BUFFER_SIZE) in ReadAndCache()
138 int nToCopy = MIN(BUFFER_SIZE - (int)nRealPos, nRead); in ReadAndCache()
139 memcpy(pabyBuffer + nRealPos, pBuffer, nToCopy); in ReadAndCache()
144 nRealPos = nCurOff; in ReadAndCache()
161 nRealPos = nBufferLen = fread(pabyBuffer, 1, BUFFER_SIZE, stdin); in Seek()
186 if (nRealPos > nBufferLen && nOffset < nRealPos) in Seek()
206 nCurOff = nRealPos; in Seek()
312 nRealPos = 0; in VSIStdinFilesystemHandler()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/control/
H A Dcombobox.cxx886 sal_Int32 nRealPos; in InsertEntry() local
888 nRealPos = nPos; in InsertEntry()
893 nRealPos = nPos + nMRUCount; in InsertEntry()
896 nRealPos = m_pImpl->m_pImplLB->InsertEntry( nRealPos, rStr ); in InsertEntry()
897 nRealPos -= m_pImpl->m_pImplLB->GetEntryList()->GetMRUCount(); in InsertEntry()
899 return nRealPos; in InsertEntry()
907 sal_Int32 nRealPos; in InsertEntryWithImage() local
909 nRealPos = nPos; in InsertEntryWithImage()
914 nRealPos = nPos + nMRUCount; in InsertEntryWithImage()
917 nRealPos = m_pImpl->m_pImplLB->InsertEntry( nRealPos, rStr, rImage ); in InsertEntryWithImage()
[all …]
H A Dlistbox.cxx939 …sal_Int32 nRealPos = mpImplLB->InsertEntry( nPos + mpImplLB->GetEntryList()->GetMRUCount(), rStr ); in InsertEntry() local
940 nRealPos = sal::static_int_cast<sal_Int32>(nRealPos - mpImplLB->GetEntryList()->GetMRUCount()); in InsertEntry()
941 CallEventListeners( VclEventId::ListboxItemAdded, reinterpret_cast<void*>(nRealPos) ); in InsertEntry()
942 return nRealPos; in InsertEntry()
947 …sal_Int32 nRealPos = mpImplLB->InsertEntry( nPos + mpImplLB->GetEntryList()->GetMRUCount(), rStr, … in InsertEntry() local
948 nRealPos = sal::static_int_cast<sal_Int32>(nRealPos - mpImplLB->GetEntryList()->GetMRUCount()); in InsertEntry()
949 CallEventListeners( VclEventId::ListboxItemAdded, reinterpret_cast<void*>(nRealPos) ); in InsertEntry()
950 return nRealPos; in InsertEntry()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/control/
H A Dcombobox.cxx872 sal_Int32 nRealPos; in InsertEntry() local
874 nRealPos = nPos; in InsertEntry()
879 nRealPos = nPos + nMRUCount; in InsertEntry()
882 nRealPos = m_pImpl->m_pImplLB->InsertEntry( nRealPos, rStr ); in InsertEntry()
883 nRealPos -= m_pImpl->m_pImplLB->GetEntryList()->GetMRUCount(); in InsertEntry()
885 return nRealPos; in InsertEntry()
893 sal_Int32 nRealPos; in InsertEntryWithImage() local
895 nRealPos = nPos; in InsertEntryWithImage()
900 nRealPos = nPos + nMRUCount; in InsertEntryWithImage()
903 nRealPos = m_pImpl->m_pImplLB->InsertEntry( nRealPos, rStr, rImage ); in InsertEntryWithImage()
[all …]
H A Dlistbox.cxx947 …sal_Int32 nRealPos = mpImplLB->InsertEntry( nPos + mpImplLB->GetEntryList()->GetMRUCount(), rStr ); in InsertEntry() local
948 nRealPos = sal::static_int_cast<sal_Int32>(nRealPos - mpImplLB->GetEntryList()->GetMRUCount()); in InsertEntry()
949 CallEventListeners( VclEventId::ListboxItemAdded, reinterpret_cast<void*>(nRealPos) ); in InsertEntry()
950 return nRealPos; in InsertEntry()
955 …sal_Int32 nRealPos = mpImplLB->InsertEntry( nPos + mpImplLB->GetEntryList()->GetMRUCount(), rStr, … in InsertEntry() local
956 nRealPos = sal::static_int_cast<sal_Int32>(nRealPos - mpImplLB->GetEntryList()->GetMRUCount()); in InsertEntry()
957 CallEventListeners( VclEventId::ListboxItemAdded, reinterpret_cast<void*>(nRealPos) ); in InsertEntry()
958 return nRealPos; in InsertEntry()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/aig/gia/
H A DgiaMfs.c69 int nRealPos = nBoxes ? Tim_ManPoNum(pManTime) : Gia_ManPoNum(p); in Gia_ManExtractMfs() local
140 if ( i < Gia_ManCoNum(p) - nRealPos ) // internal PO in Gia_ManExtractMfs()
262 curCo += nRealPos; in Gia_ManExtractMfs()
273 …return Sfm_NtkConstruct( vFanins, nBbOuts + nRealPis, nRealPos + nBbIns, vFixed, vEmpty, vTruths, … in Gia_ManExtractMfs()
294 int nRealPos = nBoxes ? Tim_ManPoNum(pManTime) : Gia_ManPoNum(p); in Gia_ManInsertMfs() local
340 curCo += nRealPos; in Gia_ManInsertMfs()
429 if ( i < Gia_ManCoNum(p) - nRealPos ) // internal COs in Gia_ManInsertMfs()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/ui/view/
H A Dtabcont.cxx147 SCTAB nRealPos = static_cast<SCTAB>(nPos); in GetPrivatDropPos() local
156 nRealPos = nCount; in GetPrivatDropPos()
172 nRealPos =j; in GetPrivatDropPos()
178 return nRealPos ; in GetPrivatDropPos()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/ui/view/
H A Dtabcont.cxx143 SCTAB nRealPos = static_cast<SCTAB>(nPos); in GetPrivatDropPos() local
152 nRealPos = nCount; in GetPrivatDropPos()
168 nRealPos =j; in GetPrivatDropPos()
174 return nRealPos ; in GetPrivatDropPos()
/dports/editors/libreoffice/libreoffice-7.2.6.2/basic/source/runtime/
H A Diosys.cxx241 sal_uInt64 nRealPos(0); in SeekPos() local
242 rc = maFile.getPos( nRealPos ); in SeekPos()
244 return nRealPos; in SeekPos()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/basic/source/runtime/
H A Diosys.cxx239 sal_uInt64 nRealPos(0); in SeekPos() local
240 rc = maFile.getPos( nRealPos ); in SeekPos()
242 return nRealPos; in SeekPos()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/proof/acec/
H A DacecFadds.c911 int i, nRealPis, nRealPos; in Gia_ManDupWithArtificalFaddBoxes() local
1001 nRealPos = Gia_ManBoxNum(p) ? Tim_ManPoNum((Tim_Man_t *)p->pManTime) : Gia_ManCoNum(p); in Gia_ManDupWithArtificalFaddBoxes()
1002 pNew->pManTime = Gia_ManGenerateTim( nRealPis, nRealPos, nBoxes, 3, 2 ); in Gia_ManDupWithArtificalFaddBoxes()
/dports/editors/libreoffice/libreoffice-7.2.6.2/svx/source/fmcomp/
H A Dgridctrl.cxx1398 sal_uInt16 nRealPos = nModelPos; in AppendColumn() local
1410 nModelPos = nRealPos; in AppendColumn()
1412 nRealPos = nViewPos + 1; in AppendColumn()
1421 EditBrowseBox::AppendColumn(rName, nWidth, nRealPos, nId); in AppendColumn()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/svx/source/fmcomp/
H A Dgridctrl.cxx1649 sal_uInt16 nRealPos = nModelPos; in AppendColumn() local
1661 nModelPos = nRealPos; in AppendColumn()
1663 nRealPos = nViewPos + 1; in AppendColumn()
1672 EditBrowseBox::AppendColumn(rName, nWidth, nRealPos, nId); in AppendColumn()