Searched refs:copySize (Results 1 - 25 of 30) sorted by relevance

12

/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DSimpleInputStream.java72 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;
H A DSimpleOutputStream.java60 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;
H A DUncompressedLZMA2OutputStream.java59 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/
H A DLZDecoder.java108 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;
H A DLZEncoder.java160 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/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_receiver_help.cc61 uint16_t copySize = size; local
63 copySize = kRtcpAppCode_DATA_SIZE;
66 applicationLength += copySize;
72 memcpy(applicationData+oldLength, data, copySize);
76 memcpy(applicationData, data, copySize);
/external/deqp/modules/gles3/functional/
H A Des3fBufferCopyTests.cpp61 int copySize,
72 , m_copySize (copySize)
184 int copySize; member in struct:deqp::gles3::Functional::SingleBufferCopyCase::__anon5056
197 int copySize = copyRanges[ndx].copySize; local
207 deMemcpy(ref.getPtr()+dstOffset, ref.getPtr()+srcOffset, copySize);
210 glCopyBufferSubData(m_srcTarget, m_dstTarget, srcOffset, dstOffset, copySize);
289 int copySize; member in struct:deqp::gles3::Functional::__anon5057
292 // srcSize dstSize srcOffs dstOffs copySize
312 cases[ndx].srcOffset, cases[ndx].dstOffset, cases[ndx].copySize,
50 BasicBufferCopyCase(Context& context, const char* name, const char* desc, deUint32 srcTarget, int srcSize, deUint32 srcHint, deUint32 dstTarget, int dstSize, deUint32 dstHint, int copySrcOffset, int copyDstOffset, int copySize, VerifyType verifyType) argument
[all...]
/external/tpm2/
H A DCpriHash.c18 INT16 copySize; member in struct:__anon27010
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 >
[all...]
/external/mesa3d/src/mesa/main/
H A Dimports.c203 const size_t copySize = (oldSize < newSize) ? oldSize : newSize;
205 if (newBuf && oldBuffer && copySize > 0) {
206 memcpy(newBuf, oldBuffer, copySize);
/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h236 Index copySize = (std::min)(size, m_size); local
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/lz4/lib/
H A Dlz4frame.c992 size_t copySize = 64 KB - dctxPtr->tmpOutSize; local
994 if (dctxPtr->tmpOutSize > 64 KB) copySize = 0;
995 if (copySize > preserveSize) copySize = preserveSize;
997 memcpy(dctxPtr->tmpOutBuffer + preserveSize - copySize, oldDictEnd - copySize, copySize);
1388 size_t copySize = 64 KB - dctxPtr->tmpOutSize; local
1390 if (dctxPtr->tmpOutSize > 64 KB) copySize = 0;
1391 if (copySize > preserveSiz
[all...]
H A Dlz4.c1194 size_t const copySize = (size_t)(lowPrefix-match); local
1195 size_t const restSize = length - copySize;
1196 memcpy(op, dictEnd - copySize, copySize);
1197 op += copySize;
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DByteString.java972 int copySize = buffer.length - bufferPos;
973 System.arraycopy(b, offset, buffer, bufferPos, copySize);
974 offset += copySize;
975 length -= copySize;
/external/deqp/framework/common/
H A DtcuCompressedTexture.cpp1068 const IVec3 copySize (de::min(blockPixelSize.x(), dst.getWidth() - blockPos.x() * blockPixelSize.x()),
1075 copy(getSubregion(dst, dstPixelPos.x(), dstPixelPos.y(), dstPixelPos.z(), copySize.x(), copySize.y(), copySize.z()), getSubregion(blockAccess, 0, 0, 0, copySize.x(), copySize.y(), copySize.z()));
/external/deqp/external/vulkancts/modules/vulkan/multiview/
H A DvktMultiViewRenderTests.cpp915 deUint32 copySize = 1u; local
916 deUint32 layerSize = m_parameters.extent.width * m_parameters.extent.height - copySize;
921 deMemcpy(dataDes, dataSrc, copySize * sizeof(ColorDataRGBA));
922 dataDes = dataDes + copySize;
923 layerSize = layerSize - copySize;
924 copySize = 2u * copySize;
925 if (copySize >= layerSize)
926 copySize = layerSize;
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureFilteringExplicitLodTests.cpp374 const std::size_t copySize = local
379 deMemcpy(bufCurPtr, pba[level].getDataPtr(), copySize);
381 flushMappedMemoryRange(vkd, dev, bufMem->getMemory(), bufMem->getOffset() + (bufCurPtr - bufMapPtr), copySize);
403 bufCurPtr += copySize;
/external/skia/src/core/
H A DSkTextBlob.cpp280 size_t copySize = initialCount * sizeof(SkScalar) * ScalarsPerGlyph(positioning()); local
281 SkASSERT((uint8_t*)posBuffer() + copySize <= (uint8_t*)NextUnchecked(this));
284 memmove(posBuffer(), initialPosBuffer, copySize); local
/external/skqp/src/core/
H A DSkTextBlob.cpp280 size_t copySize = initialCount * sizeof(SkScalar) * ScalarsPerGlyph(positioning()); local
281 SkASSERT((uint8_t*)posBuffer() + copySize <= (uint8_t*)NextUnchecked(this));
284 memmove(posBuffer(), initialPosBuffer, copySize); local
/external/deqp/modules/gles31/functional/
H A Des31fCopyImageTests.cpp1014 const IVec3& copySize)
1029 const IVec3 copyTexelBlockCount = copySize / srcTexelBlockPixelSize;
1035 DE_ASSERT((copySize.x() % srcTexelBlockPixelSize.x()) == 0);
1036 DE_ASSERT((copySize.y() % srcTexelBlockPixelSize.y()) == 0);
1037 DE_ASSERT((copySize.z() % srcTexelBlockPixelSize.z()) == 0);
1114 const IVec3& copySize)
1118 copySize.x(), copySize.y(), copySize.z());
1123 srcImageData, srcImageInfo, srcLevel, srcPos, copySize);
[all...]
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
H A DvktYCbCrCopyTests.cpp661 const UVec2 copySize (copyBlockSize * srcBlockSize);
690 copySize.x(),
691 copySize.y(),
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderBuiltinVarTests.cpp967 const UVec2 copySize = UVec2(m_renderSize.x() * m_samples, m_renderSize.y()); local
1004 copySize.x(), // uint32_t bufferRowLength
1005 copySize.y(), // uint32_t bufferImageHeight
1014 copySize.x(), // uint32_t width
1015 copySize.y(), // uint32_t height,
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemStorageBufferTests.cpp128 deUint32 copySize)
154 copySize // VkDeviceSize size
123 addBufferCopyCmd(const vk::DeviceInterface& vk, vk::VkCommandBuffer cmdBuffer, deUint32 queueFamilyIndex, vk::VkBuffer srcBuffer, vk::VkBuffer dstBuffer, deUint32 copySize) argument
/external/kotlinc/lib/
H A Dkotlin-reflect.jarMETA-INF/MANIFEST.MF kotlin/reflect/jvm/internal/ReflectProperties$LazyVal.class ReflectProperties.java package ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 648 milliseconds

12