Home
last modified time | relevance | path

Searched refs:operandSize (Results 1 – 6 of 6) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessBufferAccessTests.cpp1174 deUint32 operandSize = 0; in verifyResult() local
1179 operandSize = 4; // Size of scalar in verifyResult()
1183operandSize = 4 * ((m_bufferFormat == vk::VK_FORMAT_R64_UINT || m_bufferFormat == vk::VK_FORMAT_R… in verifyResult()
1187 operandSize = 4 * 16; // Size of mat4 in verifyResult()
1191 operandSize = mapVkFormat(m_bufferFormat).getPixelSize(); in verifyResult()
1199 || (((offsetInBytes / operandSize + 1) * operandSize) > (maxAccessRange - 16)); in verifyResult()
DvktRobustBufferAccessWithVariablePointersTests.cpp1641 deUint32 operandSize = 0; in verifyResult() local
1646 operandSize = unsplitElementSize; // Size of scalar in verifyResult()
1650 operandSize = unsplitElementSize * 4; // Size of vec4 in verifyResult()
1654 operandSize = unsplitElementSize * 16; // Size of mat4 in verifyResult()
1661 isOutOfBoundsAccess = (((offsetInBytes / operandSize) + 1) * operandSize > maxAccessRange); in verifyResult()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmTrinaryMinMaxTests.cpp100 deUint32 operandSize () const; // In bytes.
106 deUint32 TestParams::operandSize () const in operandSize() function in vkt::SpirVAssembly::__anon13c548fd0111::TestParams
314 , m_operandSize {params.operandSize()}
528 const deUint32 opSize = m_params.operandSize(); in getSpirVReplacements()
713 …ze kInputBufferSize = static_cast<vk::VkDeviceSize>(kNumOperations * 3u * m_params.operandSize()); in iterate()
714 …utBufferSize = static_cast<vk::VkDeviceSize>(kNumOperations * m_params.operandSize()); // Single o… in iterate()
/external/llvm-project/mlir/include/mlir/IR/
DOpImplementation.h625 size_t operandSize = std::distance(operands.begin(), operands.end()); in resolveOperands() local
627 if (operandSize != typeSize) in resolveOperands()
629 << operandSize << " operands present, but expected " << typeSize; in resolveOperands()
/external/capstone/arch/X86/
DX86DisassemblerDecoder.c1870 insn->operandSize = size; in readOpcodeRegister()
2387 if (insn->operandSize == 0) in decodeInstruction()
2388 insn->operandSize = insn->registerSize; in decodeInstruction()
DX86DisassemblerDecoder.h560 uint8_t operandSize; member