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

  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c 715 UChar resultBuffer[512];
730 unum_format(f, (int32_t)123456789L, resultBuffer, 512 , &pos, &status);
732 if ((u_strcmp(resultBuffer, buffer) != 0) || U_FAILURE(status))
734 log_err("Fail: Formatting \"#,##,###\" pattern with 123456789 got %s, expected %s\n", resultBuffer, "12,34,56,789");
739 memset(resultBuffer,0, sizeof(UChar)*512);
740 unum_toPattern(f, FALSE, resultBuffer, 512, &status);
742 if ((u_strcmp(resultBuffer, buffer) != 0) || U_FAILURE(status))
744 log_err("Fail: toPattern() got %s, expected %s\n", resultBuffer, "#,##,###");
746 memset(resultBuffer,0, sizeof(UChar)*512);
754 unum_format(f, (int32_t)123456789L, resultBuffer, 512 , &pos, &status)
    [all...]
  /external/lz4/programs/
bench.c 167 void* const resultBuffer = malloc(srcSize);
174 if (!compressedBuffer || !resultBuffer || !blockTable)
197 char* resPtr = (char*)resultBuffer;
282 if (!dCompleted) memset(resultBuffer, 0xD6, srcSize); /* warm result buffer */
317 { U64 const crcCheck = XXH64(resultBuffer, srcSize, 0);
322 if (((const BYTE*)srcBuffer)[u] != ((const BYTE*)resultBuffer)[u]) {
357 free(resultBuffer);
  /external/deqp/modules/gles31/functional/
es31fIndirectComputeDispatchTests.cpp 347 glu::Buffer resultBuffer (renderCtx);
362 createResultBuffer(*resultBuffer);
375 gl.bindBufferRange(GL_SHADER_STORAGE_BUFFER, 0, *resultBuffer, (glw::GLintptr)curOffset, resultBlockAlignedSize);
384 if (verifyResultBuffer(*resultBuffer))
es31fSynchronizationTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageAtomicOperationTests.cpp 661 tcu::ConstPixelBufferAccess resultBuffer(m_format, gridSize.x(), gridSize.y(), gridSize.z(), outputBufferAllocation.getHostPtr());
663 for (deInt32 z = 0; z < resultBuffer.getDepth(); z++)
664 for (deInt32 y = 0; y < resultBuffer.getHeight(); y++)
665 for (deInt32 x = 0; x < resultBuffer.getWidth(); x++)
667 deInt32 resultValue = resultBuffer.getPixelInt(x, y, z).x();
    [all...]
vktImageMultisampleLoadStoreTests.cpp 286 UniquePtr<Buffer> resultBuffer (new Buffer(vk, device, allocator, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_TRANSFER_DST_BIT),
290 const Allocation& alloc = resultBuffer->getAllocation();
418 vk.cmdCopyImageToBuffer(*cmdBuffer, **checksumImage, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, **resultBuffer, 1u, &copyRegion);
423 makeBufferMemoryBarrier(VK_ACCESS_TRANSFER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, **resultBuffer, 0ull, resultBufferSizeBytes),
435 const Allocation& alloc = resultBuffer->getAllocation();
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationInternallySynchronizedObjectsTests.cpp 335 Buffer resultBuffer (vk, device, *queues.m_allocator, makeBufferCreateInfo(BUFFER_SIZE, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
336 const VkBufferMemoryBarrier bufferBarrier = makeBufferMemoryBarrier(VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, BUFFER_SIZE);
341 const Allocation& alloc = resultBuffer.getAllocation();
354 const VkDescriptorBufferInfo resultDescriptorInfo = makeDescriptorBufferInfo(*resultBuffer, 0ull, BUFFER_SIZE);
378 const Allocation& resultAlloc = resultBuffer.getAllocation();
410 Buffer resultBuffer (vk, device, *queues.m_allocator, makeBufferCreateInfo(BUFFER_SIZE, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
411 const VkBufferMemoryBarrier bufferBarrier = makeBufferMemoryBarrier(VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, BUFFER_SIZE);
422 const VkDescriptorBufferInfo outputBufferDescriptorInfo = makeDescriptorBufferInfo(*resultBuffer, 0ull, BUFFER_SIZE);
429 const Allocation& alloc = resultBuffer.getAllocation();
476 const Allocation& resultAlloc = resultBuffer.getAllocation()
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeIndirectComputeDispatchTests.cpp 135 deBool verifyResultBuffer (const Buffer& resultBuffer,
222 Buffer resultBuffer(
228 const vk::Allocation& alloc = resultBuffer.getAllocation();
264 vk::VK_ACCESS_SHADER_WRITE_BIT, vk::VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, resultBufferSize);
295 const vk::VkDescriptorBufferInfo resultDescriptorInfo = makeDescriptorBufferInfo(*resultBuffer, curOffset, resultBlockSize);
323 if (verifyResultBuffer(resultBuffer, resultBlockSize, resultBufferSize))
329 deBool IndirectDispatchInstanceBufferUpload::verifyResultBuffer (const Buffer& resultBuffer,
334 const vk::Allocation& alloc = resultBuffer.getAllocation();
vktComputeShaderBuiltinVarTests.cpp 414 Buffer resultBuffer(m_vki, m_device, m_context.getDefaultAllocator(), makeBufferCreateInfo(resultBufferSize, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
440 VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, resultBufferSize);
453 const VkDescriptorBufferInfo resultDescriptorInfo = makeDescriptorBufferInfo(*resultBuffer, 0ull, resultBufferSize);
477 const Allocation& resultAlloc = resultBuffer.getAllocation();
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationFractionalSpacingTests.cpp 447 const Buffer resultBuffer (vk, device, allocator, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
468 const VkDescriptorBufferInfo resultBufferInfo = makeDescriptorBufferInfo(resultBuffer.get(), 0ull, resultBufferSizeBytes);
509 const Allocation& alloc = resultBuffer.getAllocation();
527 VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, resultBufferSizeBytes);
540 const Allocation& resultAlloc = resultBuffer.getAllocation();
vktTessellationPrimitiveDiscardTests.cpp 423 const Buffer resultBuffer (vk, device, allocator, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
426 const Allocation& alloc = resultBuffer.getAllocation();
457 const VkDescriptorBufferInfo resultBufferInfo = makeDescriptorBufferInfo(resultBuffer.get(), 0ull, resultBufferSizeBytes);
548 VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, resultBufferSizeBytes);
568 const Allocation& resultAlloc = resultBuffer.getAllocation();
vktTessellationCoordinatesTests.cpp 504 const Buffer resultBuffer (vk, device, allocator, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
521 const VkDescriptorBufferInfo resultBufferInfo = makeDescriptorBufferInfo(resultBuffer.get(), 0ull, resultBufferSizeBytes);
562 const Allocation& alloc = resultBuffer.getAllocation();
580 VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, resultBufferSizeBytes);
591 const Allocation& resultAlloc = resultBuffer.getAllocation();
vktTessellationInvarianceTests.cpp     [all...]
vktTessellationUserDefinedIO.cpp 787 const Buffer resultBuffer (vk, device, allocator, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
790 const Allocation& alloc = resultBuffer.getAllocation();
820 const VkDescriptorBufferInfo resultBufferInfo = makeDescriptorBufferInfo(resultBuffer.get(), 0ull, resultBufferSizeBytes);
    [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3Channel.h 215 virtual void reprocessCbRoutine(buffer_handle_t *resultBuffer,
249 void issueChannelCb(buffer_handle_t *resultBuffer,
445 virtual void reprocessCbRoutine(buffer_handle_t *resultBuffer,
QCamera3Channel.cpp 796 buffer_handle_t *resultBuffer;
832 resultBuffer = (buffer_handle_t *)mMemory.getBufferHandle(frameIndex);
868 result.buffer = resultBuffer;
    [all...]
  /device/huawei/angler/camera/QCamera2/HAL3/
QCamera3Channel.h 178 virtual void reprocessCbRoutine(buffer_handle_t *resultBuffer,
206 void issueChannelCb(buffer_handle_t *resultBuffer,
390 virtual void reprocessCbRoutine(buffer_handle_t *resultBuffer,
QCamera3Channel.cpp 592 buffer_handle_t *resultBuffer;
609 resultBuffer = (buffer_handle_t *)mMemory.getBufferHandle(frameIndex);
613 result.buffer = resultBuffer;
    [all...]
  /device/lge/bullhead/camera/QCamera2/HAL3/
QCamera3Channel.h 178 virtual void reprocessCbRoutine(buffer_handle_t *resultBuffer,
206 void issueChannelCb(buffer_handle_t *resultBuffer,
390 virtual void reprocessCbRoutine(buffer_handle_t *resultBuffer,
QCamera3Channel.cpp 592 buffer_handle_t *resultBuffer;
609 resultBuffer = (buffer_handle_t *)mMemory.getBufferHandle(frameIndex);
613 result.buffer = resultBuffer;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineSpecConstantTests.cpp 474 const Buffer resultBuffer(vk, device, allocator, makeBufferCreateInfo(m_ssboSize, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
485 const VkDescriptorBufferInfo descriptorBufferInfo = makeDescriptorBufferInfo(resultBuffer.get(), 0ull, m_ssboSize);
513 VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, m_ssboSize);
524 const Allocation& resultAlloc = resultBuffer.getAllocation();
599 const Buffer resultBuffer(vk, device, allocator, makeBufferCreateInfo(m_ssboSize, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT), MemoryRequirement::HostVisible);
610 const VkDescriptorBufferInfo descriptorBufferInfo = makeDescriptorBufferInfo(resultBuffer.get(), 0ull, m_ssboSize);
679 VK_ACCESS_SHADER_WRITE_BIT, VK_ACCESS_HOST_READ_BIT, *resultBuffer, 0ull, m_ssboSize);
690 const Allocation& resultAlloc = resultBuffer.getAllocation();
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsEarlyFragmentTests.cpp 646 const Unique<VkBuffer> resultBuffer (makeBuffer(vk, device, makeBufferCreateInfo(resultBufferSizeBytes, VK_BUFFER_USAGE_STORAGE_BUFFER_BIT)));
647 const UniquePtr<Allocation> resultBufferAlloc (bindBuffer(vk, device, allocator, *resultBuffer, MemoryRequirement::HostVisible));
673 const VkDescriptorBufferInfo resultBufferDescriptorInfo = makeDescriptorBufferInfo(resultBuffer.get(), 0ull, resultBufferSizeBytes);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 802 milliseconds