OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:copySize
(Results
1 - 13
of
13
) sorted by null
/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);
/libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java
184
int
copySize
= (size > trailerSize) ? trailerSize : size;
186
System.arraycopy(buf, len - size, b, 0,
copySize
);
187
readFully(b,
copySize
, trailerSize -
copySize
);
/bionic/libc/bionic/
malloc_debug_leak.cpp
363
size_t
copySize
= (oldSize <= bytes) ? oldSize : bytes;
364
memcpy(newMem, oldMem,
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/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL_program.cpp
162
size_t
copySize
= (purgeIdx - entryIdx) * sizeof(Entry*);
163
memmove(fEntries + entryIdx + 1, fEntries + entryIdx,
copySize
);
170
size_t
copySize
= (entryIdx - purgeIdx - 1) * sizeof(Entry*);
171
memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1,
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
);
/external/skia/src/gpu/gl/
GrGpuGL_program.cpp
162
size_t
copySize
= (purgeIdx - entryIdx) * sizeof(Entry*);
163
memmove(fEntries + entryIdx + 1, fEntries + entryIdx,
copySize
);
170
size_t
copySize
= (entryIdx - purgeIdx - 1) * sizeof(Entry*);
171
memmove(fEntries + purgeIdx, fEntries + purgeIdx + 1,
copySize
);
/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
...]
/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
425
OMX_U32
copySize
= 0;
515
copySize
= checkInputStreamLen;
518
if (((srcInputData->allocSize) - (srcInputData->dataLen)) >=
copySize
) {
519
if ((
copySize
> 0) || (inputUseBuffer->nFlags & OMX_BUFFERFLAG_EOS)) {
521
if (
copySize
> 0)
524
inputUseBuffer->dataLen -=
copySize
;
525
inputUseBuffer->remainDataLen -=
copySize
;
526
inputUseBuffer->usedDataLen +=
copySize
;
528
srcInputData->dataLen +=
copySize
;
529
srcInputData->remainDataLen +=
copySize
;
[
all
...]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ByteString.java
756
int
copySize
= buffer.length - bufferPos;
757
System.arraycopy(b, offset, buffer, bufferPos,
copySize
);
758
offset +=
copySize
;
759
length -=
copySize
;
[
all
...]
/frameworks/rs/
rsAllocation.cpp
644
uint32_t
copySize
= faceSize * t->getElementSizeBytes();
650
t->getDimX(), 1, sourcePtr + strideBytes * dI,
copySize
, 0);
654
sourcePtr +=
copySize
;
/packages/apps/Email/src/com/android/email/
LegacyConversions.java
311
long
copySize
= IOUtils.copy(in, out);
319
localAttachment.mSize =
copySize
;
324
cv.put(AttachmentColumns.SIZE,
copySize
);
Completed in 1352 milliseconds