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

  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_receiver_help.cc 61 uint16_t copySize = size;
63 copySize = kRtcpAppCode_DATA_SIZE;
66 applicationLength += copySize;
72 memcpy(applicationData+oldLength, data, copySize);
76 memcpy(applicationData, data, copySize);
  /external/deqp/modules/gles3/functional/
es3fBufferCopyTests.cpp 61 int copySize,
72 , m_copySize (copySize)
184 int copySize;
197 int copySize = copyRanges[ndx].copySize;
207 deMemcpy(ref.getPtr()+dstOffset, ref.getPtr()+srcOffset, copySize);
210 glCopyBufferSubData(m_srcTarget, m_dstTarget, srcOffset, dstOffset, copySize);
289 int copySize;
292 // srcSize dstSize srcOffs dstOffs copySize
312 cases[ndx].srcOffset, cases[ndx].dstOffset, cases[ndx].copySize,
    [all...]
  /external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
GrAndroidPathRenderer.cpp 81 size_t copySize = vsize*vertCount;
82 memcpy(geo.vertices(), vertices.getBuffer(), copySize);
  /external/skia/experimental/AndroidPathRenderer/
GrAndroidPathRenderer.cpp 81 size_t copySize = vsize*vertCount;
82 memcpy(geo.vertices(), vertices.getBuffer(), copySize);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.c 200 const size_t copySize = (oldSize < newSize) ? oldSize : newSize;
202 if (newBuf && oldBuffer && copySize > 0) {
203 memcpy(newBuf, oldBuffer, copySize);
217 const size_t copySize = (oldSize < newSize) ? oldSize : newSize;
219 if (newBuffer && oldBuffer && copySize > 0)
220 memcpy(newBuffer, oldBuffer, copySize);
  /external/mesa3d/src/mesa/main/
imports.c 200 const size_t copySize = (oldSize < newSize) ? oldSize : newSize;
202 if (newBuf && oldBuffer && copySize > 0) {
203 memcpy(newBuf, oldBuffer, copySize);
217 const size_t copySize = (oldSize < newSize) ? oldSize : newSize;
219 if (newBuffer && oldBuffer && copySize > 0)
220 memcpy(newBuffer, oldBuffer, copySize);
  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 259 int copySize = (size > trailerSize) ? trailerSize : size;
261 System.arraycopy(buf, len - size, b, 0, copySize);
262 Streams.readFully(in, b, copySize, trailerSize - copySize);
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL_program.cpp 166 size_t copySize = (purgeIdx - entryIdx) * sizeof(Entry*);
167 memmove(fEntries + entryIdx + 1, fEntries + entryIdx, copySize);
174 size_t copySize = (entryIdx - purgeIdx - 1) * sizeof(Entry*);
175 memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1, copySize);
  /external/skia/src/gpu/gl/
GrGpuGL_program.cpp 163 size_t copySize = (purgeIdx - entryIdx) * sizeof(Entry*);
164 memmove(fEntries + entryIdx + 1, fEntries + entryIdx, copySize);
171 size_t copySize = (entryIdx - purgeIdx - 1) * sizeof(Entry*);
172 memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1, copySize);
  /external/eigen/Eigen/src/SparseCore/
CompressedStorage.h 209 size_t copySize = (std::min)(size, m_size);
211 internal::smart_copy(m_values, m_values+copySize, newValues);
212 internal::smart_copy(m_indices, m_indices+copySize, newIndices);
  /frameworks/base/core/java/android/view/
GhostView.java 126 copySize(viewGroup, parent);
127 copySize(viewGroup, ghostView);
160 private static void copySize(View from, View to) {
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/
Exynos_OMX_Vdec.c 355 OMX_U32 copySize = 0;
482 OMX_U32 copySize = 0;
521 copySize = checkInputStreamLen;
524 if (((srcInputData->allocSize) - (srcInputData->dataLen)) >= copySize) {
525 if (copySize > 0) {
527 checkInputStream, copySize);
530 inputUseBuffer->dataLen -= copySize;
531 inputUseBuffer->remainDataLen -= copySize;
532 inputUseBuffer->usedDataLen += copySize;
534 srcInputData->dataLen += copySize;
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/enc/
Exynos_OMX_Venc.c 426 OMX_U32 copySize = 0;
517 copySize = checkInputStreamLen;
520 if (((srcInputData->allocSize) - (srcInputData->dataLen)) >= copySize) {
521 if ((copySize > 0) || (inputUseBuffer->nFlags & OMX_BUFFERFLAG_EOS)) {
523 if (copySize > 0)
526 inputUseBuffer->dataLen -= copySize;
527 inputUseBuffer->remainDataLen -= copySize;
528 inputUseBuffer->usedDataLen += copySize;
530 srcInputData->dataLen += copySize;
531 srcInputData->remainDataLen += copySize;
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/audio/dec/
Exynos_OMX_Adec.c 589 OMX_U32 copySize = 0;
611 copySize = checkedSize;
616 if (((inputData->allocSize) - (inputData->dataLen)) >= copySize) {
617 if (copySize > 0)
618 Exynos_OSAL_Memcpy(inputData->buffer.singlePlaneBuffer.dataBuffer + inputData->dataLen, checkInputStream, copySize);
620 inputUseBuffer->dataLen -= copySize;
621 inputUseBuffer->remainDataLen -= copySize;
622 inputUseBuffer->usedDataLen += copySize;
624 inputData->dataLen += copySize;
625 inputData->remainDataLen += copySize;
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
VertexBuffer9.cpp 124 size_t copySize = static_cast<size_t>(count) * static_cast<size_t>(inputStride);
125 memcpy(mapPtr, input, copySize);
  /external/chromium_org/third_party/skia/src/core/
SkTextBlob.cpp 95 size_t copySize = initialCount * sizeof(SkScalar) * ScalarsPerGlyph(fPositioning);
96 SkASSERT((uint8_t*)posBuffer() + copySize <= (uint8_t*)Next(this));
99 memmove(posBuffer(), initialPosBuffer, copySize);
  /packages/apps/Email/provider_src/com/android/email/
LegacyConversions.java 335 final long copySize;
339 copySize = IOUtils.copyLarge(in, out);
353 localAttachment.mSize = copySize;
358 cv.put(AttachmentColumns.SIZE, copySize);
  /bionic/libc/bionic/
malloc_debug_leak.cpp 442 size_t copySize = (oldSize <= bytes) ? oldSize : bytes;
443 memcpy(newMem, oldMem, copySize);
  /external/chromium_org/third_party/angle/src/common/
mathutil.h 143 size_t copySize = std::min(sizeof(destType), sizeof(sourceType));
145 memcpy(&output, &source, copySize);
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAlloc.cpp     [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
Blit11.cpp 775 unsigned int copySize = pixelSize;
779 copySize = dxgiFormatInfo.stencilBits / 8;
    [all...]
  /frameworks/rs/
rsAllocation.cpp 685 uint32_t copySize = faceSize * t->getElementSizeBytes();
691 t->getDimX(), 1, sourcePtr + strideBytes * dI, copySize, 0);
695 sourcePtr += copySize;
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.h     [all...]

Completed in 1681 milliseconds