Home | History | Annotate | Download | only in fxcrt

Lines Matching refs:newPos

235         FX_SAFE_SIZE_T newPos = size;
236 newPos += offset;
237 if (!newPos.IsValid() || newPos.ValueOrDefault(0) == 0 || newPos.ValueOrDie() > m_nCurSize) {
241 m_nCurPos = newPos.ValueOrDie();
287 FX_SAFE_SIZE_T newPos = size;
288 newPos += offset;
289 if (!newPos.IsValid())
292 m_nCurPos = newPos.ValueOrDie();
313 FX_SAFE_SIZE_T newPos = size;
314 newPos += offset;
315 if (!newPos.IsValid()) {
319 if (!ExpandBlocks(newPos.ValueOrDie())) {
322 m_nCurPos = newPos.ValueOrDie();