Home
last modified time | relevance | path

Searched refs:operandType (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
DEDOperand.cpp35 uint8_t operandType = inst.ThisInstInfo->operandTypes[opIndex]; in EDOperand() local
37 switch (operandType) { in EDOperand()
59 uint8_t operandType = inst.ThisInstInfo->operandTypes[opIndex]; in EDOperand() local
61 switch (operandType) { in EDOperand()
127 uint8_t operandType = Inst.ThisInstInfo->operandTypes[OpIndex]; in evaluate() local
134 switch (operandType) { in evaluate()
206 switch (operandType) { in evaluate()
262 uint8_t operandType = Inst.ThisInstInfo->operandTypes[OpIndex]; in isMemory() local
264 switch (operandType) { in isMemory()
/external/deqp/modules/gles31/functional/
Des31fShaderAtomicOpTests.cpp68 …xt& context, const char* name, const char* funcName, AtomicOperandType operandType, DataType type,…
96 …xt& context, const char* name, const char* funcName, AtomicOperandType operandType, DataType type,… in ShaderAtomicOpCase() argument
99 , m_operandType (operandType) in ShaderAtomicOpCase()
258 …ShaderAtomicAddCase (Context& context, const char* name, AtomicOperandType operandType, DataType t… in ShaderAtomicAddCase() argument
259 : ShaderAtomicOpCase(context, name, "atomicAdd", operandType, type, precision, UVec3(3,2,1)) in ShaderAtomicAddCase()
412 …ShaderAtomicMinCase (Context& context, const char* name, AtomicOperandType operandType, DataType t… in ShaderAtomicMinCase() argument
413 : ShaderAtomicOpCase(context, name, "atomicMin", operandType, type, precision, UVec3(3,2,1)) in ShaderAtomicMinCase()
493 …ShaderAtomicMaxCase (Context& context, const char* name, AtomicOperandType operandType, DataType t… in ShaderAtomicMaxCase() argument
494 : ShaderAtomicOpCase(context, name, "atomicMax", operandType, type, precision, UVec3(3,2,1)) in ShaderAtomicMaxCase()
575 …ShaderAtomicAndCase (Context& context, const char* name, AtomicOperandType operandType, DataType t… in ShaderAtomicAndCase() argument
[all …]
Des31fShaderAtomicOpTests.hpp47 ShaderAtomicOpTests (Context& context, const char* name, AtomicOperandType operandType);
/external/skia/src/sksl/
DSkSLSPIRVCodeGenerator.cpp2009 const Type& operandType, SpvId lhs, in writeBinaryOperation() argument
2013 if (is_float(fContext, operandType)) { in writeBinaryOperation()
2015 } else if (is_signed(fContext, operandType)) { in writeBinaryOperation()
2017 } else if (is_unsigned(fContext, operandType)) { in writeBinaryOperation()
2019 } else if (operandType == *fContext.fBool_Type) { in writeBinaryOperation()
2022 ABORT("invalid operandType: %s", operandType.description().c_str()); in writeBinaryOperation()
2049 SpvId SPIRVCodeGenerator::foldToBool(SpvId id, const Type& operandType, OutputStream& out) { in foldToBool() argument
2050 if (operandType.kind() == Type::kVector_Kind) { in foldToBool()
2058 SpvId SPIRVCodeGenerator::writeMatrixComparison(const Type& operandType, SpvId lhs, SpvId rhs, in writeMatrixComparison() argument
2061 SpvOp_ compareOp = is_float(fContext, operandType) ? floatOperator : intOperator; in writeMatrixComparison()
[all …]
DSkSLSPIRVCodeGenerator.h188 SpvId foldToBool(SpvId id, const Type& operandType, OutputStream& out);
190 SpvId writeMatrixComparison(const Type& operandType, SpvId lhs, SpvId rhs, SpvOp_ floatOperator,
193 SpvId writeBinaryOperation(const Type& resultType, const Type& operandType, SpvId lhs,
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_vgpu10.c343 unsigned operandType, unsigned index) in check_register_index() argument
347 switch (operandType) { in check_register_index()
415 operandType, index); in check_register_index()
696 operand.operandType = VGPU10_OPERAND_TYPE_NULL; in emit_null_dst_register()
753 if (operand0.operandType == VGPU10_OPERAND_TYPE_IMMEDIATE32 || in setup_operand0_indexing()
754 operand0.operandType == VGPU10_OPERAND_TYPE_INPUT_PRIMITIVEID) { in setup_operand0_indexing()
762 operand0.operandType == VGPU10_OPERAND_TYPE_CONSTANT_BUFFER) { in setup_operand0_indexing()
828 operand0.operandType = VGPU10_OPERAND_TYPE_TEMP; in emit_indirect_register()
897 operand0.operandType = VGPU10_OPERAND_TYPE_OUTPUT_DEPTH; in emit_dst_register()
942 operand0.operandType = translate_register_file(file, tempArrayId > 0); in emit_dst_register()
[all …]
/external/mesa3d/src/gallium/drivers/svga/include/
DVGPU10ShaderTokens.h403 unsigned int operandType : 8; /* VGPU10_OPERAND_TYPE */ member