/third_party/vk-gl-cts/framework/delibs/debase/ |
D | deRandom.h | 45 } deRandom; typedef 47 void deRandom_init (deRandom* rnd, deUint32 seed); 48 deUint32 deRandom_getUint32 (deRandom* rnd); 49 deUint64 deRandom_getUint64 (deRandom* rnd); 50 float deRandom_getFloat (deRandom* rnd); 51 double deRandom_getDouble (deRandom* rnd); 52 deBool deRandom_getBool (deRandom* rnd);
|
D | deRandom.c | 36 void deRandom_init (deRandom* rnd, deUint32 seed) in deRandom_init() 49 deUint32 deRandom_getUint32 (deRandom* rnd) in deRandom_getUint32() 67 deUint64 deRandom_getUint64 (deRandom* rnd) in deRandom_getUint64() 78 float deRandom_getFloat (deRandom* rnd) in deRandom_getFloat() 88 double deRandom_getDouble (deRandom* rnd) in deRandom_getDouble() 100 deBool deRandom_getBool (deRandom* rnd) in deRandom_getBool()
|
D | CMakeLists.txt | 21 deRandom.c 22 deRandom.h
|
D | deMathTest.c | 80 deRandom rnd; in testInt32ToFloat()
|
D | BUILD.gn | 41 "//third_party/vk-gl-cts/framework/delibs/debase/deRandom.c",
|
D | deInt32Test.c | 71 deRandom rnd; in deInt32_selfTest()
|
D | deFloat16Test.c | 63 deRandom rnd; in deFloat16_selfTest()
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
D | deRandom.cpp | 26 inline bool operator== (const deRandom& a, const deRandom& b) in operator ==() 31 inline bool operator!= (const deRandom& a, const deRandom& b) in operator !=()
|
D | CMakeLists.txt | 39 deRandom.cpp 40 deRandom.hpp
|
D | deRandom.hpp | 76 deRandom m_rnd;
|
D | BUILD.gn | 43 "//third_party/vk-gl-cts/framework/delibs/decpp/deRandom.cpp",
|
/third_party/vk-gl-cts/modules/glshared/ |
D | glsVertexArrayTests.cpp | 220 inline T getRandom (deRandom& rnd, T min, T max); 223 inline GLValue::Float getRandom (deRandom& rnd, GLValue::Float min, GLValue::Float max) in getRandom() 232 inline GLValue::Short getRandom (deRandom& rnd, GLValue::Short min, GLValue::Short max) in getRandom() 241 inline GLValue::Ushort getRandom (deRandom& rnd, GLValue::Ushort min, GLValue::Ushort max) in getRandom() 250 inline GLValue::Byte getRandom (deRandom& rnd, GLValue::Byte min, GLValue::Byte max) in getRandom() 259 inline GLValue::Ubyte getRandom (deRandom& rnd, GLValue::Ubyte min, GLValue::Ubyte max) in getRandom() 268 inline GLValue::Fixed getRandom (deRandom& rnd, GLValue::Fixed min, GLValue::Fixed max) in getRandom() 277 inline GLValue::Half getRandom (deRandom& rnd, GLValue::Half min, GLValue::Half max) in getRandom() 289 inline GLValue::Int getRandom (deRandom& rnd, GLValue::Int min, GLValue::Int max) in getRandom() 298 inline GLValue::Uint getRandom (deRandom& rnd, GLValue::Uint min, GLValue::Uint max) in getRandom() [all …]
|
D | glsDrawTest.cpp | 686 inline T getRandom (deRandom& rnd, T min, T max); 689 inline GLValue::Float getRandom (deRandom& rnd, GLValue::Float min, GLValue::Float max) in getRandom() 698 inline GLValue::Double getRandom (deRandom& rnd, GLValue::Double min, GLValue::Double max) in getRandom() 707 inline GLValue::Short getRandom (deRandom& rnd, GLValue::Short min, GLValue::Short max) in getRandom() 716 inline GLValue::Ushort getRandom (deRandom& rnd, GLValue::Ushort min, GLValue::Ushort max) in getRandom() 725 inline GLValue::Byte getRandom (deRandom& rnd, GLValue::Byte min, GLValue::Byte max) in getRandom() 734 inline GLValue::Ubyte getRandom (deRandom& rnd, GLValue::Ubyte min, GLValue::Ubyte max) in getRandom() 743 inline GLValue::Fixed getRandom (deRandom& rnd, GLValue::Fixed min, GLValue::Fixed max) in getRandom() 752 inline GLValue::Half getRandom (deRandom& rnd, GLValue::Half min, GLValue::Half max) in getRandom() 764 inline GLValue::Int getRandom (deRandom& rnd, GLValue::Int min, GLValue::Int max) in getRandom() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
D | vktApiMemoryRequirementInvarianceTests.cpp | 76 BufferAllocator (deRandom& random, deBool dedicated, std::vector<int>& memoryTypes); 90 BufferAllocator::BufferAllocator (deRandom& random, deBool dedicated, std::vector<int>& memoryTypes) in BufferAllocator() 150 …ImageAllocator (deRandom& random, deBool dedicated, std::vector<int>& linearformats, std::vector<i… 165 ImageAllocator::ImageAllocator (deRandom& random, deBool dedicated, std::vector<int>& linearformats… in ImageAllocator() 241 deRandom m_random;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
D | vktApiMemoryRequirementInvarianceTests.cpp | 76 BufferAllocator (deRandom& random, deBool dedicated, std::vector<int>& memoryTypes); 90 BufferAllocator::BufferAllocator (deRandom& random, deBool dedicated, std::vector<int>& memoryTypes) in BufferAllocator() 150 …ImageAllocator (deRandom& random, deBool dedicated, std::vector<int>& linearformats, std::vector<i… 165 ImageAllocator::ImageAllocator (deRandom& random, deBool dedicated, std::vector<int>& linearformats… in ImageAllocator() 241 deRandom m_random;
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fPrerequisiteTests.cpp | 131 deRandom rnd; in iterate() 185 deRandom rnd; in iterate()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fPrerequisiteTests.cpp | 131 deRandom rnd; in iterate() 185 deRandom rnd; in iterate()
|
/third_party/vk-gl-cts/framework/delibs/deutil/ |
D | deTimerTest.c | 45 deRandom rnd; in deTimer_selfTest()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
D | vktBindingDescriptorSetRandomTests.cpp | 463 deInt32 randRange(deRandom *rnd, deInt32 min, deInt32 max) in randRange() 471 void chooseWritesRandomly(vk::VkDescriptorType type, RandomLayout& randomLayout, deRandom& rnd, deU… in chooseWritesRandomly() 494 void generateRandomLayout(RandomLayout& randomLayout, const CaseDef &caseDef, deRandom& rnd) in generateRandomLayout() 767 CheckDecider (deRandom& rnd, deUint32 descriptorCount) in CheckDecider() 799 deRandom& m_rnd; 809 deRandom rnd; in initPrograms() 1437 deRandom rnd; in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
D | vktBindingDescriptorSetRandomTests.cpp | 463 deInt32 randRange(deRandom *rnd, deInt32 min, deInt32 max) in randRange() 471 void chooseWritesRandomly(vk::VkDescriptorType type, RandomLayout& randomLayout, deRandom& rnd, deU… in chooseWritesRandomly() 494 void generateRandomLayout(RandomLayout& randomLayout, const CaseDef &caseDef, deRandom& rnd) in generateRandomLayout() 767 CheckDecider (deRandom& rnd, deUint32 descriptorCount) in CheckDecider() 799 deRandom& m_rnd; 809 deRandom rnd; in initPrograms() 1437 deRandom rnd; in iterate()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/fragment_shading_rate/ |
D | esextcFragmentShadingRateBasic.cpp | 176 deRandom rnd; in setupTest()
|
D | esextcFragmentShadingRateAttachmentTests.cpp | 306 deRandom rnd; in setupTest()
|
D | esextcFragmentShadingRateCombinedTests.cpp | 352 deRandom rnd; in setupTest()
|
/third_party/vk-gl-cts/framework/delibs/depool/ |
D | deMemPool.c | 100 deRandom failRandom; /*!< RNG for failing allocations. */
|
/third_party/vk-gl-cts/framework/delibs/dethread/ |
D | deThreadTest.c | 369 deRandom random; in producerThread()
|