Home
last modified time | relevance | path

Searched refs:testSize (Results 1 – 25 of 59) sorted by relevance

123

/external/lz4/tests/
Dframetest.c181 size_t cSize, testSize; in basicTests() local
204 testSize = 0; in basicTests()
206 …4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuffer, testSize, NU… in basicTests()
227 testSize = COMPRESSIBLE_NOISE_LENGTH; in basicTests()
233 …4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuffer, testSize, &f… in basicTests()
234 DISPLAYLEVEL(3, "Compressed %u bytes into a %u bytes frame \n", (U32)testSize, (U32)cSize); in basicTests()
238 …4F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, NULL), CNBuffer, testSize, NU… in basicTests()
239 DISPLAYLEVEL(3, "Compressed %u bytes into a %u bytes frame \n", (U32)testSize, (U32)cSize); in basicTests()
359 …F_compressFrame(compressedBuffer, LZ4F_compressFrameBound(testSize, &prefs), CNBuffer, testSize, &… in basicTests()
360 DISPLAYLEVEL(3, "Compressed %i bytes into a %i bytes frame \n", (int)testSize, (int)cSize); in basicTests()
[all …]
/external/OpenCL-CTS/test_conformance/basic/
Dtest_local_kernel_scope.cpp81 size_t testSize = workGroupSize; in test_local_kernel_scope() local
82 while( testSize < 1024 ) in test_local_kernel_scope()
83 testSize += workGroupSize; in test_local_kernel_scope()
84 size_t numGroups = testSize / workGroupSize; in test_local_kernel_scope()
88 cl_uint *inputData = (cl_uint*)malloc( testSize * sizeof(cl_uint) ); in test_local_kernel_scope()
89 generate_random_data( kUInt, testSize, randSeed, inputData ); in test_local_kernel_scope()
91 …streams[ 0 ] = clCreateBuffer( context, CL_MEM_READ_ONLY | CL_MEM_COPY_HOST_PTR, testSize * sizeof… in test_local_kernel_scope()
105 …error = clEnqueueNDRangeKernel( queue, kernel, 1, NULL, &testSize, &workGroupSize, 0, NULL, NULL ); in test_local_kernel_scope()
/external/deqp/modules/gles3/functional/
Des3fShaderTextureFunctionTests.cpp1105 bool TextureSizeCase::testTextureSize (const TestSize& testSize) in testTextureSize() argument
1123 const bool isSquare = testSize.textureSize.x() == testSize.textureSize.y(); in testTextureSize()
1124 …2DLodValid = (testSize.textureSize.x() >> (testSize.lod + testSize.lodBase)) != 0 || (testSize.tex… in testTextureSize()
1147 const int maxLevel = testSize.lod + testSize.lodBase; in testTextureSize()
1156 gl.texParameteri(textureTarget, GL_TEXTURE_BASE_LEVEL, testSize.lodBase); in testTextureSize()
1164 …:Message << "Testing image size " << testSize.textureSize.x() << "x" << testSize.textureSize.y() <… in testTextureSize()
1165 …tContext().getLog() << TestLog::Message << "Lod: " << testSize.lod << ", base level: " << testSize in testTextureSize()
1166 …estLog::Message << "Expecting: " << testSize.expectedSize.x() << "x" << testSize.expectedSize.y() … in testTextureSize()
1168 gl.uniform3iv(sizeLoc, 1, testSize.expectedSize.m_data); in testTextureSize()
1169 gl.uniform1iv(lodLoc, 1, &testSize.lod); in testTextureSize()
[all …]
/external/skia/tests/
DDescriptorTest.cpp60 const size_t testSize = 32; in DEF_TEST() local
62 sizeof(SkScalerContextRec) + effectSize + testSize; in DEF_TEST()
68 desc->addEntry(SkSetFourByteTag('t', 'e', 's', 't'), testSize, nullptr); in DEF_TEST()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/testers/
DCollectionSizeTester.java32 public void testSize() { in testSize() method in CollectionSizeTester
DMapSizeTester.java32 public void testSize() { in testSize() method in MapSizeTester
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DCollectionSizeTester.java32 public void testSize() { in testSize() method in CollectionSizeTester
DMapSizeTester.java32 public void testSize() { in testSize() method in MapSizeTester
/external/clang/test/Analysis/
Dbuiltin-functions.cpp9 void testSize() { in testSize() function
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSurfaceTests.cpp1199 const UVec2& testSize = sizes[sizeNdx]; in createSurfaceInitialSizeTest() local
1200 const UniquePtr<Window> nativeWindow (createWindow(*nativeDisplay, tcu::just(testSize))); in createSurfaceInitialSizeTest()
1210 results.check(capabilities.currentExtent.width == testSize.x() && in createSurfaceInitialSizeTest()
1211 capabilities.currentExtent.height == testSize.y(), in createSurfaceInitialSizeTest()
1212 …:toString(capabilities.currentExtent) + " doesn't match requested size " + de::toString(testSize)); in createSurfaceInitialSizeTest()
1246 const UVec2 testSize = sizes[sizeNdx]; in resizeSurfaceTest() local
1250 nativeWindow->resize(testSize); in resizeSurfaceTest()
1265 results.check(capabilities.currentExtent.width == testSize.x() && in resizeSurfaceTest()
1266 capabilities.currentExtent.height == testSize.y(), in resizeSurfaceTest()
1267 …:toString(capabilities.currentExtent) + " doesn't match requested size " + de::toString(testSize)); in resizeSurfaceTest()
/external/llvm-project/clang/test/Analysis/
Dbuiltin-functions.cpp10 void testSize() { in testSize() function
/external/guava/guava-tests/test/com/google/common/cache/
DForwardingCacheTest.java83 public void testSize() { in testSize() method in ForwardingCacheTest
DForwardingLoadingCacheTest.java91 public void testSize() { in testSize() method in ForwardingLoadingCacheTest
/external/guava/guava-tests/test/com/google/common/collect/
DEmptyImmutableTableTest.java63 public void testSize() { in testSize() method in EmptyImmutableTableTest
DSingletonImmutableTableTest.java123 public void testSize() { in testSize() method in SingletonImmutableTableTest
DAbstractTableReadTest.java113 public void testSize() { in testSize() method in AbstractTableReadTest
/external/guava/android/guava-tests/test/com/google/common/cache/
DForwardingCacheTest.java83 public void testSize() { in testSize() method in ForwardingCacheTest
DForwardingLoadingCacheTest.java91 public void testSize() { in testSize() method in ForwardingLoadingCacheTest
/external/guava/android/guava-tests/test/com/google/common/collect/
DEmptyImmutableTableTest.java63 public void testSize() { in testSize() method in EmptyImmutableTableTest
DSingletonImmutableTableTest.java123 public void testSize() { in testSize() method in SingletonImmutableTableTest
/external/dng_sdk/source/
Ddng_mosaic_info.cpp1711 int32 testSize = SizeForDownScale (testScale); in DownScale() local
1713 if (Abs_int32 (testSize - (int32) prefSize) <= in DownScale()
1717 bestSize = testSize; in DownScale()
1743 testSize = SizeForDownScale (testScale); in DownScale()
1745 if (Abs_int32 (testSize - (int32) prefSize) <= in DownScale()
1749 bestSize = testSize; in DownScale()
/external/lzma/CPP/7zip/Archive/7z/
D7zOut.cpp240 int testSize; in GetVolPureSize() local
242 testSize = volSize - headersSizeBase; in GetVolPureSize()
244 testSize = 1; in GetVolPureSize()
245 UInt32 headersSize = COutArchive::GetVolHeadersSize(testSize, nameLength, props); in GetVolPureSize()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapSizeTester.java42 public void testSize() { in testSize() method in MultimapSizeTester
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultimapSizeTester.java42 public void testSize() { in testSize() method in MultimapSizeTester
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryDeviceMemoryReportTests.cpp1753 const VkDeviceSize testSize = 1024; in vkDeviceMemoryAllocateAndFreeTest() local
1767 testSize, // VkDeviceSize allocationSize; in vkDeviceMemoryAllocateAndFreeTest()
1774 … return tcu::TestStatus::fail("Unable to allocate " + de::toString(testSize) + " bytes of memory"); in vkDeviceMemoryAllocateAndFreeTest()
1799 …TCU_CHECK_MSG(record.size >= testSize, ("record.size=" + de::toString(record.size) + ", testSize="… in vkDeviceMemoryAllocateAndFreeTest()
1834 const VkDeviceSize testSize = std::numeric_limits<deUint64>::max(); in vkDeviceMemoryAllocationFailedTest() local
1847 testSize, // VkDeviceSize allocationSize; in vkDeviceMemoryAllocationFailedTest()
1871 …TCU_CHECK_MSG(record.size >= testSize, ("record.size=" + de::toString(record.size) + ", testSize="… in vkDeviceMemoryAllocationFailedTest()

123