HomeSort by relevance Sort by last modified time
    Searched full:remainingbytes (Results 1 - 10 of 10) 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/libnfc-nxp/src/
phFriNfc_MifareStdMap.c     [all...]
phFriNfc_MifareULMap.c     [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);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 408 unsigned RemainingBytes = SrcVT.getStoreSize();
411 while (RemainingBytes > 0) {
415 if (RemainingBytes >= LoadBytes) {
422 while (RemainingBytes < LoadBytes) {
432 RemainingBytes -= LoadBytes;
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_Utils.c     [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
unigram_dictionary.cpp 139 const unsigned int remainingBytes = sizeof(codesDest[0]) * codesRemain;
140 if (0 != remainingBytes) {
141 memcpy(codesDest, codesSrc, remainingBytes);
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEnc_Utils.c     [all...]

Completed in 1317 milliseconds