Searched defs:dataSize (Results 76 - 100 of 158) sorted by relevance

1234567

/external/sonivox/arm-wt-22k/lib_src/
H A Djet.c331 EAS_I32 dataSize = 0; /* make lint happy */ local
354 result = EAS_HWGetDWord(easHandle->hwInstData, easHandle->jetHandle->jetFileHandle, &dataSize, EAS_FALSE);
359 while ((result == EAS_SUCCESS) && (pos < dataSize))
/external/swiftshader/src/OpenGL/compiler/
H A DOutputASM.h84 UniformBlock(const std::string& name, unsigned int dataSize, unsigned int arraySize,
88 unsigned int dataSize; member in struct:glsl::UniformBlock
/external/tpm2/
H A DCpriHash.c167 // int dataSize = sizeof(osslState->u.data);
355 UINT32 dataSize, // IN: the size of data to be added to the
377 if(EVP_DigestUpdate(context, data, dataSize) != 1)
503 UINT32 dataSize, // IN: size of buffer to hash
524 || (EVP_DigestUpdate(&hashContext, data, dataSize) != 1))
353 _cpri__UpdateHash( CPRI_HASH_STATE *hashState, UINT32 dataSize, BYTE *data ) argument
501 _cpri__HashBlock( TPM_ALG_ID hashAlg, UINT32 dataSize, BYTE *data, UINT32 digestSize, BYTE *digest ) argument
H A DNV.c1444 pAssert(nvIndex->publicArea.dataSize >= offset + size);
1506 UINT16 dataSize, digestSize;
1517 dataSize = TPMS_NV_PUBLIC_Marshal(&nvIndex.publicArea, &buffer, &bufferSize);
1520 CryptUpdateDigest(&hashState, dataSize, marshalBuffer);
1550 entrySize = sizeof(TPM_HANDLE) + sizeof(NV_INDEX) + publicArea->dataSize;
1559 && !NvTestRAMSpace(publicArea->dataSize))
1572 NvAddRAM(publicArea->nvIndex, publicArea->dataSize);
1504 UINT16 dataSize, digestSize; local
/external/valgrind/lackey/
H A Dlk_main.c880 Int dataSize; local
886 dataSize = sizeofIRType(dataTy);
888 dataSize *= 2; /* since it's a doubleword-CAS */
890 addEvent_Dr( sbOut, cas->addr, dataSize );
891 addEvent_Dw( sbOut, cas->addr, dataSize );
/external/deqp/external/vulkancts/modules/vulkan/draw/
H A DvktDrawInstancedTests.cpp126 const vk::VkDeviceSize dataSize = data.size() * sizeof(T); local
128 BufferCreateInfo(dataSize, usage),
134 deMemcpy(ptr, &data[0], static_cast<size_t>(dataSize));
H A DvktBasicDrawTests.cpp410 const vk::VkDeviceSize dataSize = m_data.vertices.size() * sizeof(PositionColorVertex); local
411 m_vertexBuffer = Buffer::createAndAlloc(m_vk, device, BufferCreateInfo(dataSize,
415 deMemcpy(ptr, &(m_data.vertices[0]), static_cast<size_t>(dataSize));
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolStatisticsTests.cpp769 const VkDeviceSize dataSize = static_cast<VkDeviceSize>(deAlignSize(static_cast<size_t>( m_data.size() * sizeof(VertexData)), local
772 de::SharedPtr<Buffer> vertexBuffer = Buffer::createAndAlloc(vk, device, BufferCreateInfo(dataSize,
778 flushMappedMemoryRange(vk, device, vertexBuffer->getBoundMemory().getMemory(), vertexBuffer->getBoundMemory().getOffset(), dataSize);
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
H A DvktSynchronizationUtil.cpp789 deUintptr dataSize = 0; local
791 VK_CHECK(vk.getPipelineCacheData(device, pipelineCache, &dataSize, DE_NULL));
793 m_data.resize(dataSize);
795 if (dataSize > 0)
796 VK_CHECK(vk.getPipelineCacheData(device, pipelineCache, &dataSize, &m_data[0]));
/external/libvncserver/libvncserver/tightvnc-filetransfer/
H A Drfbtightproto.h401 uint16_t dataSize; member in struct:_rfbFileListDataMsg
/external/lzma/CPP/7zip/Archive/7z/
H A D7zOut.cpp219 UInt32 COutArchive::GetVolHeadersSize(UInt64 dataSize, int nameLength, bool props) argument
221 UInt32 result = GetBigNumberSize(dataSize) * 2 + 41;
477 const UInt64 dataSize = (UInt64)numDefined * itemSize + bvSize + 2; local
478 SkipAlign(3 + (unsigned)bvSize + (unsigned)GetBigNumberSize(dataSize), itemSize);
481 WriteNumber(dataSize);
739 const UInt64 dataSize = (UInt64)db.Files.Size() * 4 + bvSize + 1;
740 SkipAlign(2 + (unsigned)bvSize + (unsigned)GetBigNumberSize(dataSize), 4);
743 WriteNumber(dataSize);
/external/lzma/CPP/7zip/UI/Common/
H A DArchiveExtractCallback.cpp718 UInt32 dataSize; local
721 _arc->GetRawProps->GetRawProp(_index, kpidNtReparse, &data, &dataSize, &propType);
723 if (dataSize != 0)
729 isOkReparse = reparse.Parse((const Byte *)data, dataSize);
1473 UInt32 dataSize; local
1475 _arc->GetRawProps->GetRawProp(_index, kpidNtSecure, &data, &dataSize, &propType);
1476 if (dataSize != 0)
1480 if (CheckNtSecure((const Byte *)data, dataSize))
/external/python/cpython2/Mac/Modules/ae/
H A D_AEmodule.c270 Size dataSize; local
280 &dataSize);
284 dataSize);
425 Size dataSize; local
435 &dataSize);
439 dataSize);
530 Size dataSize; local
540 &dataSize);
544 dataSize);
782 PyDoc_STR("(long index) -> (DescType typeCode, Size dataSize)")},
[all...]
/external/python/cpython2/Mac/Modules/drag/
H A D_Dragmodule.c345 Size dataSize; local
356 &dataSize);
359 dataSize);
700 PyDoc_STR("(ItemReference theItemRef, FlavorType theType) -> (Size dataSize)")},
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowParcel.java65 return dataSize() - dataPosition();
74 public int dataSize() { method in class:ShadowParcel
80 return dataSize();
/external/skia/src/core/
H A DSkStream.cpp330 size_t dataSize = fData->size(); local
332 if (size > dataSize - fOffset) {
333 size = dataSize - fOffset;
/external/skia/third_party/gif/
H A DSkGifImageReader.h231 int dataSize() const { return m_dataSize; } function in class:SkGIFFrameContext
/external/skqp/src/core/
H A DSkStream.cpp312 size_t dataSize = fData->size(); local
314 if (size > dataSize - fOffset) {
315 size = dataSize - fOffset;
/external/skqp/third_party/gif/
H A DSkGifImageReader.h231 int dataSize() const { return m_dataSize; } function in class:SkGIFFrameContext
/external/swiftshader/tests/unittests/
H A Dunittests.cpp808 void writeColor(void* data, size_t dataSize) argument
812 memcpy(IOSurfaceGetBaseAddress(ioSurface), data, dataSize); local
848 void writeColor(void* data, size_t dataSize) argument
850 memcpy(clientBuffer, data, dataSize);
911 void doClearTest(EGLClientBufferWrapper& clientBufferWrapper, GLenum internalFormat, GLenum type, void *data, size_t dataSize) argument
913 ASSERT_TRUE(dataSize <= 4);
937 for(size_t i = 0; i < dataSize; ++i)
947 void doSampleTest(EGLClientBufferWrapper& clientBufferWrapper, GLenum internalFormat, GLenum type, void *data, size_t dataSize) argument
949 ASSERT_TRUE(dataSize <= 4);
951 clientBufferWrapper.writeColor(data, dataSize);
[all...]
/external/aac/libAACenc/src/
H A Daacenc_lib.cpp215 UINT dataSize[(1)][(8)]; /*!< extension payload data size in bits */ member in struct:__anon262
1890 ((mpsExtensionPayload.dataSize != 0))) {
1904 hAacEncoder->pSbrPayload->dataSize[nPayload],
1911 if (hAacEncoder->pSbrPayload->dataSize[nPayload][i] > 0) {
1915 hAacEncoder->extPayload[nExtensions].dataSize =
1916 hAacEncoder->pSbrPayload->dataSize[nPayload][i];
1933 hAacEncoder->extPayload[nExtensions].dataSize = inargs->numAncBytes * 8;
1955 (hAacEncoder->extPayload[ancDataExtIdx].dataSize >> 3);
/external/deqp/external/vulkancts/modules/vulkan/api/
H A DvktApiCommandBuffersTests.cpp2492 const deUint32 dataSize = 8; local
2494 const Unique<VkBuffer> buffer(createDataBuffer(context, offset, addressableSize, 0x00, dataSize, 0x5A, &bufferMem));
2665 const deUint32 dataSize = 8; local
2667 const Unique<VkBuffer> buffer(createDataBuffer(context, offset, addressableSize, 0x00, dataSize, 0x5A, &bufferMem));
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineCacheTests.cpp1483 size_t dataSize = 0u; local
1485 VK_CHECK(vk.getPipelineCacheData(vkDevice, *m_cache, (deUintptr*)&dataSize, DE_NULL));
1487 m_data = new deUint8[dataSize];
1489 VK_CHECK(vk.getPipelineCacheData(vkDevice, *m_cache, (deUintptr*)&dataSize, (void*)m_data));
1496 dataSize, // deUintptr initialDataSize;
1547 size_t dataSize = 0u; local
1548 VK_CHECK(vk.getPipelineCacheData(vkDevice, *m_cache, (deUintptr*)&dataSize, DE_NULL));
1550 if (dataSize == 0)
1553 dataSize--;
1555 m_data = new deUint8[dataSize];
1633 size_t dataSize = 0u; local
1708 size_t dataSize = 0u; local
1782 size_t dataSize = 0u; local
[all...]
H A DvktPipelineSpecConstantTests.cpp219 m_specialization.dataSize = sizeof(GenericValue) * m_data.size();
1309 const int dataSize = getDataTypeScalarSizeBytes(dataType); local
1310 expectedValues.push_back(OffsetValue(dataSize, dataSize * combNdx, makeValue(dataType, sum)));
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRender.cpp826 void ShaderRenderCaseInstance::addUniform (deUint32 bindingLocation, vk::VkDescriptorType descriptorType, size_t dataSize, const void* data) argument
831 setupUniformData(bindingLocation, dataSize, data);

Completed in 788 milliseconds

1234567