Home
last modified time | relevance | path

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

/external/capstone/arch/X86/
DX86DisassemblerDecoder.c1678 insn->operandSize = 1; \
1681 insn->operandSize = 2; \
1684 insn->operandSize = 4; \
1687 insn->operandSize = 8; \
1690 insn->operandSize = 64; \
1693 insn->operandSize = 32; \
1696 insn->operandSize = 16; \
1699 insn->operandSize = 8; \
1702 insn->operandSize = 4; \
1705 insn->operandSize = 2; \
[all …]
DX86DisassemblerDecoder.h555 uint8_t operandSize; member
/external/deqp/external/vulkancts/modules/vulkan/robustness/
DvktRobustnessBufferAccessTests.cpp1157 deUint32 operandSize = 0; in verifyResult() local
1162 operandSize = 4; // Size of scalar in verifyResult()
1166 operandSize = 4 * 4; // Size of vec4 in verifyResult()
1170 operandSize = 4 * 16; // Size of mat4 in verifyResult()
1174 operandSize = mapVkFormat(m_bufferFormat).getPixelSize(); in verifyResult()
1182 || (((offsetInBytes / operandSize + 1) * operandSize) > (maxAccessRange - 16)); in verifyResult()
DvktRobustBufferAccessWithVariablePointersTests.cpp1588 deUint32 operandSize = 0; in verifyResult() local
1593 operandSize = 4; // Size of scalar in verifyResult()
1597 operandSize = 4 * 4; // Size of vec4 in verifyResult()
1601 operandSize = 4 * 16; // Size of mat4 in verifyResult()
1608 isOutOfBoundsAccess = (((offsetInBytes / operandSize) + 1) * operandSize > maxAccessRange); in verifyResult()