HomeSort by relevance Sort by last modified time
    Searched refs:nextSize (Results 1 - 4 of 4) sorted by null

  /frameworks/base/libs/androidfw/
ZipUtils.cpp 110 const unsigned long nextSize = reader.read(&nextBuffer, getSize);
112 if (nextSize < getSize || nextBuffer == NULL) {
113 ALOGD("inflate read failed (%ld vs %ld)\n", nextSize, getSize);
117 compRemaining -= nextSize;
120 zstream.avail_in = nextSize;
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 167 final float nextSize = Math.min(lastFitTextSize + mStepTextSize, mMaximumTextSize);
168 mTempPaint.setTextSize(nextSize);
172 lastFitTextSize = nextSize;
  /development/ndk/platforms/android-9/samples/native-audio/jni/
native-audio-jni.c 101 static unsigned nextSize;
121 if (--nextCount > 0 && NULL != nextBuffer && 0 != nextSize) {
124 result = (*bqPlayerBufferQueue)->Enqueue(bqPlayerBufferQueue, nextBuffer, nextSize);
519 nextSize = 0;
523 nextSize = sizeof(hello);
527 nextSize = sizeof(android);
531 nextSize = sizeof(sawtoothBuffer);
544 nextSize = recorderSize;
548 nextSize = 0;
552 if (nextSize > 0)
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
mpeg_parser.js 296 var nextSize = MpegParser.readAtomSize(br);
302 filePos += nextSize - MpegParser.HEADER_SIZE;
303 nextSize = MpegParser.HEADER_SIZE;
306 this.requestRead(file, filePos, nextSize, nextName, onError, onSuccess);

Completed in 248 milliseconds