Home
last modified time | relevance | path

Searched refs:getUint64 (Results 1 – 19 of 19) sorted by relevance

/external/deqp/framework/common/
DtcuRandomValueIterator.hpp51 template <> inline deUint64 getRandomValue<deUint64> (de::Random& rnd) { return rnd.getUint64(); … in getRandomValue()
55 …e <> inline deInt64 getRandomValue<deInt64> (de::Random& rnd) { return (deInt64)rnd.getUint64(); } in getRandomValue()
/external/deqp/framework/delibs/decpp/
DdeRandom.cpp84 DE_TEST_ASSERT(expected[i] == rnd.getUint64()); in Random_selfTest()
DdeRandom.hpp52 …deUint64 getUint64 (void) { deUint32 upper = getUint32(); return (deUint64)upper << 32ull | (… in getUint64() function in de::Random
/external/libchrome/mojo/public/js/lib/
Dbuffer.js67 Buffer.prototype.getUint64 = function(offset) { method in Buffer
Dvalidator.js367 var pointerValue = this.message.buffer.getUint64(offset);
Dcodec.js100 var result = this.buffer.getUint64(this.next);
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktAtomicOperationTests.cpp239 m_ptr->inout[i] = static_cast<dataTypeT>(rnd.getUint64()); in fillWithTestData()
248 m_ptr->input[i] = static_cast<dataTypeT>(rnd.getUint64()); in fillWithTestData()
DvktShaderBuiltinPrecisionTests.cpp5430 deUint64 intFraction = rnd.getUint64() & ((1 << fractionBits) - 1); in genRandom()
5571 deUint64 intFraction = rnd.getUint64() & ((1 << fractionBits) - 1); in genRandom()
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryMappingTests.cpp790 const size_t pos = (size_t)(rng.getUint64() % (deUint64)m_range.size); in randomRead()
803 const size_t pos = (size_t)(rng.getUint64() % (deUint64)m_range.size); in randomWrite()
817 const size_t pos = (size_t)(rng.getUint64() % (deUint64)m_range.size); in randomModify()
833 ? atomSize * (1 + (VkDeviceSize)(rng.getUint64() % (deUint64)maxSizeInAtoms)) in randomSize()
842 ? atomSize * (VkDeviceSize)(rng.getUint64() % (deUint64)(maxOffsetInAtoms + 1)) in randomOffset()
DvktMemoryAllocationTests.cpp633 const VkDeviceSize allocationSize = 1 + (m_rng.getUint64() % maxAllocSize); in iterate()
DvktMemoryPipelineBarrierTests.cpp7931 size_t nextLayoutNdx = ((size_t)rng.getUint64()) % (previousLayout == vk::VK_IMAGE_LAYOUT_UNDEFINED in getRandomNextLayout()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmWorkgroupMemoryTests.cpp497 inputData.push_back(rnd.getUint64()); in addComputeWorkgroupMemoryTests()
DvktSpvAsmUtils.cpp273 data.push_back(static_cast<deInt64>(rnd.getUint64())); in getInt64s()
DvktSpvAsmTypeTests.cpp2483 input.push_back(static_cast<deInt64>(m_rnd.getUint64())); in getDataset()
2683 input.push_back(m_rnd.getUint64()); in getDataset()
DvktSpvAsmInstructionTests.cpp135 deInt64 val = rnd.getUint64(); in randomInt64LogDistributed()
/external/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp182 bool getUint64(uint64_t &Result);
1647 bool MIParser::getUint64(uint64_t &Result) { in getUint64() function in MIParser
1789 if (getUint64(Size)) in parseMachineMemoryOperand()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/MIRParser/
DMIParser.cpp263 bool getUint64(uint64_t &Result);
2228 bool MIParser::getUint64(uint64_t &Result) { in getUint64() function in MIParser
2468 if (getUint64(Size)) in parseMachineMemoryOperand()
/external/flatbuffers/dart/lib/
Dflat_buffers.dart64 _buffer.getUint64(offset, Endian.little);
/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp4317 deUint64 intFraction = rnd.getUint64() & ((1 << fractionBits) - 1); in genRandom()