HomeSort by relevance Sort by last modified time
    Searched defs:copySize (Results 1 - 25 of 31) sorted by null

1 2

  /external/webrtc/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/eigen/Eigen/src/SparseCore/
CompressedStorage.h 236 Index copySize = (std::min)(size, m_size);
237 if (copySize>0) {
238 internal::smart_copy(m_values, m_values+copySize, newValues.ptr());
239 internal::smart_copy(m_indices, m_indices+copySize, newIndices.ptr());
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SimpleInputStream.java 72 int copySize = Math.min(filtered, len);
73 System.arraycopy(filterBuf, pos, buf, off, copySize);
74 pos += copySize;
75 filtered -= copySize;
76 off += copySize;
77 len -= copySize;
78 size += copySize;
SimpleOutputStream.java 60 int copySize = Math.min(len, FILTER_BUF_SIZE - (pos + unfiltered));
61 System.arraycopy(buf, off, filterBuf, pos + unfiltered, copySize);
62 off += copySize;
63 len -= copySize;
64 unfiltered += copySize;
UncompressedLZMA2OutputStream.java 59 int copySize = Math.min(uncompBuf.length - uncompPos, len);
60 System.arraycopy(buf, off, uncompBuf, uncompPos, copySize);
61 len -= copySize;
62 uncompPos += copySize;
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lz/
LZDecoder.java 108 int copySize = Math.min(buf.length - pos, len);
109 inData.readFully(buf, pos, copySize);
110 pos += copySize;
117 int copySize = pos - start;
121 System.arraycopy(buf, start, out, outOff, copySize);
124 return copySize;
LZEncoder.java 160 int copySize = Math.min(presetDict.length, dictSize);
161 int offset = presetDict.length - copySize;
162 System.arraycopy(presetDict, offset, buf, 0, copySize);
163 writePos += copySize;
164 skip(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/tpm2/
CpriHash.c 18 INT16 copySize;
280 o->copySize = i->copySize;
328 if((state->copySize = MarshalHashState(context, stateData)) == 0)
333 retVal = state->copySize;
334 state->copySize = 0;
340 state->copySize = -1;
343 state->copySize = 0;
367 if(state->copySize == 0)
369 if(state->copySize > 0
    [all...]
  /frameworks/av/media/libaudioprocessing/
BufferProviders.cpp 548 size_t copySize = mFrameSize * *dstFrames;
549 memcpy(dstBuffer, srcBuffer, copySize);
  /frameworks/base/core/java/android/view/
GhostView.java 120 copySize(viewGroup, parent);
121 copySize(viewGroup, ghostView);
154 private static void copySize(View from, View to) {
  /external/skia/src/core/
SkTextBlob.cpp 263 size_t copySize = initialCount * sizeof(SkScalar) * ScalarsPerGlyph(positioning());
264 SkASSERT((uint8_t*)posBuffer() + copySize <= (uint8_t*)NextUnchecked(this));
267 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);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ByteString.java     [all...]
  /frameworks/rs/
rsAllocation.cpp 802 uint32_t copySize = faceSize * t->getElementSizeBytes();
808 t->getDimX(), 1, sourcePtr + strideBytes * dI, copySize, 0);
812 sourcePtr += copySize;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderBuiltinVarTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureFilteringExplicitLodTests.cpp 374 const std::size_t copySize =
379 deMemcpy(bufCurPtr, pba[level].getDataPtr(), copySize);
381 flushMappedMemoryRange(vkd, dev, bufMem->getMemory(), bufMem->getOffset() + (bufCurPtr - bufMapPtr), copySize);
403 bufCurPtr += copySize;
    [all...]
  /external/lz4/lib/
lz4.c     [all...]
lz4frame.c     [all...]
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 
  /prebuilts/misc/common/robolectric/lib/
protobuf-java-2.6.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.5.0/
protobuf-java-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.6.1/
protobuf-java-2.6.1.jar 
  /prebuilts/tools/common/offline-m2/com/google/protobuf/protobuf-java/2.5.0/
protobuf-java-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/
protobuf-java-3.0.0-beta-2.jar 

Completed in 1280 milliseconds

1 2