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

  /frameworks/base/packages/PrintSpooler/jni/
com_android_printspooler_util_BitmapSerializeUtils.cpp 31 size_t remainingBytes = byteCount;
32 while (remainingBytes > 0) {
33 ssize_t writtenByteCount = write(fd, writeBuffer, remainingBytes);
42 remainingBytes -= writtenByteCount;
50 size_t remainingBytes = byteCount;
51 while (remainingBytes > 0) {
52 ssize_t readByteCount = read(fd, readBuffer, remainingBytes);
61 remainingBytes -= readByteCount;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ProgressTracker.cpp 159 long long remainingBytes, estimatedBytesForPendingRequests;
169 remainingBytes = ((m_totalPageAndResourceBytesToLoad + estimatedBytesForPendingRequests) - m_totalBytesReceived);
170 if (remainingBytes > 0) // Prevent divide by 0.
171 percentOfRemainingBytes = (double)bytesReceived / (double)remainingBytes;
  /frameworks/base/core/jni/android/graphics/pdf/
PdfEditor.cpp 107 size_t remainingBytes = byteCount;
108 while (remainingBytes > 0) {
109 ssize_t writtenByteCount = write(fd, writeBuffer, remainingBytes);
118 remainingBytes -= writtenByteCount;
  /frameworks/av/media/libstagefright/
MP3Extractor.cpp 101 ssize_t remainingBytes = 0;
112 if (remainingBytes < 4) {
116 memcpy(buf, tmp, remainingBytes);
117 bytesToRead = kMaxReadBytes - remainingBytes;
124 totalBytesRead = source->readAt(pos + remainingBytes,
125 buf + remainingBytes,
131 totalBytesRead += remainingBytes;
132 remainingBytes = totalBytesRead;
143 --remainingBytes;
154 --remainingBytes;
    [all...]
OMXCodec.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp 738 void GIFImageReader::setRemainingBytes(size_t remainingBytes)
740 ASSERT(remainingBytes <= m_data->size());
741 m_bytesRead = m_data->size() - remainingBytes;
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_Utils.c     [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEnc_Utils.c     [all...]
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.8.1/
commons-compress-1.8.1.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js 504 var totalBytesLeft = mandreel_result_lzma.totalSize - mandreel_result_lzma.remainingBytes;
806 var totalBytesLeft = mandreel_result_lzma.totalSize - mandreel_result_lzma.remainingBytes;
    [all...]

Completed in 667 milliseconds