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

  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 188 int copySize = (size > trailerSize) ? trailerSize : size;
190 System.arraycopy(buf, len - size, b, 0, copySize);
191 readFully(b, copySize, trailerSize - copySize);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/dec/
Exynos_OMX_Vdec.c 247 OMX_U32 copySize = 0;
366 OMX_U32 copySize = 0;
405 copySize = checkInputStreamLen;
408 if (((srcInputData->allocSize) - (srcInputData->dataLen)) >= copySize) {
409 if (copySize > 0) {
411 checkInputStream, copySize);
414 inputUseBuffer->dataLen -= copySize;
415 inputUseBuffer->remainDataLen -= copySize;
416 inputUseBuffer->usedDataLen += copySize;
418 srcInputData->dataLen += copySize;
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/component/video/enc/
Exynos_OMX_Venc.c 321 OMX_U32 copySize = 0;
411 copySize = checkInputStreamLen;
414 if (((srcInputData->allocSize) - (srcInputData->dataLen)) >= copySize) {
415 if ((copySize > 0) || (inputUseBuffer->nFlags & OMX_BUFFERFLAG_EOS)) {
417 if (copySize > 0)
420 inputUseBuffer->dataLen -= copySize;
421 inputUseBuffer->remainDataLen -= copySize;
422 inputUseBuffer->usedDataLen += copySize;
424 srcInputData->dataLen += copySize;
425 srcInputData->remainDataLen += copySize;
    [all...]
  /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);
  /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...]
  /bionic/libc/bionic/
malloc_debug_leak.cpp 347 size_t copySize = (oldSize <= bytes) ? oldSize : bytes;
348 memcpy(newMem, oldMem, copySize);
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 304 long copySize = IOUtils.copy(in, out);
312 localAttachment.mSize = copySize;
317 cv.put(AttachmentColumns.SIZE, copySize);
  /dalvik/vm/alloc/
Copying.cpp     [all...]
  /frameworks/rs/
rsAllocation.cpp 602 uint32_t copySize = faceSize * t->getElementSizeBytes();
608 t->getDimX(), 1, sourcePtr + strideBytes * dI, copySize, 0);
612 sourcePtr += copySize;

Completed in 1351 milliseconds