Searched refs:newOffset (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/jni/android/graphics/
H A DUtils.cpp46 off64_t newOffset = fAsset->seek(size, SEEK_CUR); local
47 if (-1 == newOffset) {
51 amount = newOffset - oldOffset;
H A DTypeface.cpp94 off64_t newOffset = fAsset->seek(size, SEEK_CUR);
95 if (-1 == newOffset)
98 amount = newOffset - oldOffset;
/frameworks/base/libs/utils/
H A DAsset.cpp317 off64_t newOffset; local
321 newOffset = offset;
324 newOffset = curPosn + offset;
327 newOffset = maxPosn + offset;
336 if (newOffset < 0 || newOffset > maxPosn) {
338 (long) newOffset, (long) maxPosn);
342 return newOffset;

Completed in 409 milliseconds