HomeSort by relevance Sort by last modified time
    Searched full:bytestocopy (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
SharedBuffer.cpp 267 unsigned bytesToCopy = std::min(length, segmentFreeSpace);
270 memcpy(segment, data, bytesToCopy);
271 if (static_cast<unsigned>(length) == bytesToCopy)
274 length -= bytesToCopy;
275 data += bytesToCopy;
278 bytesToCopy = std::min(length, segmentSize);
322 unsigned bytesToCopy = std::min(bytesLeft, segmentSize);
323 m_buffer.append(m_segments[i], bytesToCopy);
324 bytesLeft -= bytesToCopy;
  /external/chromium_org/third_party/skia/src/utils/
SkFrontBufferedStream.cpp 106 const size_t bytesToCopy = SkTMin(size, fBufferedSoFar - fOffset);
108 memcpy(dst, fBuffer + fOffset, bytesToCopy);
113 fOffset += bytesToCopy;
116 return bytesToCopy;
  /external/skia/src/utils/
SkFrontBufferedStream.cpp 106 const size_t bytesToCopy = SkTMin(size, fBufferedSoFar - fOffset);
108 memcpy(dst, fBuffer + fOffset, bytesToCopy);
113 fOffset += bytesToCopy;
116 return bytesToCopy;
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.cpp 40 unsigned bytesToCopy = std::min(bufferLength - bytesExtracted, moreDataLength);
41 memcpy(buffer + bytesExtracted, moreData, bytesToCopy);
42 bytesExtracted += bytesToCopy;
45 offset += bytesToCopy;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
ProtocolParamsReaderActivity.java 167 int bytesToCopy = ats.length - atsIndex;
168 byte[] historical_bytes = new byte[bytesToCopy];
169 System.arraycopy(ats, atsIndex, historical_bytes, 0, bytesToCopy);
  /external/chromium_org/third_party/libjpeg_turbo/
jchuff.c 439 bytestocopy = min(bytes, state->free_in_buffer); \
440 MEMCOPY(state->next_output_byte, buffer, bytestocopy); \
441 state->next_output_byte += bytestocopy; \
442 buffer += bytestocopy; \
443 state->free_in_buffer -= bytestocopy; \
446 bytes -= bytestocopy; \
461 size_t bytes, bytestocopy; int localbuf = 0; local
491 size_t bytes, bytestocopy; int localbuf = 0; local
  /external/guava/guava/src/com/google/common/hash/
AbstractStreamingHashFunction.java 154 int bytesToCopy = bufferSize - buffer.position();
155 for (int i = 0; i < bytesToCopy; i++) {
  /external/chromium_org/third_party/webrtc/modules/video_capture/windows/
device_info_ds.cc 723 uint32_t bytesToCopy = (uint32_t)(pos - startPos);
724 if (pos && (bytesToCopy <= productUniqueIdUTF8Length) && bytesToCopy
728 (char*) startPos, bytesToCopy);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageReader.cpp 298 const size_t bytesToCopy = rowIter - rowBegin;
299 memcpy(rowBuffer.begin(), rowBegin, bytesToCopy);
300 rowIter = rowBuffer.begin() + bytesToCopy;
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
ThreadState.cpp     [all...]
  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.cpp     [all...]
  /external/skia/src/core/
SkBitmap.cpp 988 size_t bytesToCopy = tmpDst.width() * tmpDst.bytesPerPixel();
990 memcpy(dstP, srcP, bytesToCopy);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ndis.h     [all...]
  /external/libnfc-nxp/src/
phFriNfc_FelicaMap.c 560 /*copy bytesToCopy to internal buffer*/
    [all...]
  /packages/services/Telecomm/libs/
guava.jar 

Completed in 2248 milliseconds