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

  /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/webkit/Source/WebCore/loader/
ProgressTracker.cpp 192 long long remainingBytes, estimatedBytesForPendingRequests;
202 remainingBytes = ((m_totalPageAndResourceBytesToLoad + estimatedBytesForPendingRequests) - m_totalBytesReceived);
203 if (remainingBytes > 0) // Prevent divide by 0.
204 percentOfRemainingBytes = (double)bytesReceived / (double)remainingBytes;
  /external/webkit/Source/WebCore/plugins/
PluginStream.cpp 378 int remainingBytes = totalBytes - totalBytesDelivered;
379 memmove(m_deliveryData->data(), m_deliveryData->data() + totalBytesDelivered, remainingBytes);
380 m_deliveryData->resize(remainingBytes);
  /packages/inputmethods/LatinIME/native/jni/src/
unigram_dictionary.cpp 155 const unsigned int remainingBytes = BYTES_IN_ONE_CHAR * codesRemain;
156 if (0 != remainingBytes) {
157 memcpy(codesDest, codesSrc, remainingBytes);
    [all...]
  /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...]

Completed in 366 milliseconds