Home
last modified time | relevance | path

Searched refs:InstType (Results 1 – 5 of 5) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/util/
DCXX11Meta.h485 template<class InstType, typename ArrType, std::size_t N, bool Reverse, typename... Ps>
488 template<class InstType, typename ArrType, std::size_t N, typename... Ps>
489 struct h_instantiate_by_c_array<InstType, ArrType, N, false, Ps...>
491 static InstType run(ArrType* arr, Ps... args)
493 …return h_instantiate_by_c_array<InstType, ArrType, N - 1, false, Ps..., ArrType>::run(arr + 1, arg…
497 template<class InstType, typename ArrType, std::size_t N, typename... Ps>
498 struct h_instantiate_by_c_array<InstType, ArrType, N, true, Ps...>
500 static InstType run(ArrType* arr, Ps... args)
502 …return h_instantiate_by_c_array<InstType, ArrType, N - 1, false, ArrType, Ps...>::run(arr + 1, arr…
506 template<class InstType, typename ArrType, typename... Ps>
[all …]
/external/llvm/lib/Target/AMDGPU/
DSIInsertWaits.cpp50 } InstType; typedef
89 InstType LastOpcodeType;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp313 StringRef InstType) { in ParseOperandStartingWithInteger() argument
326 if (ParseReg(Operands, InstType)) return true; in ParseOperandStartingWithInteger()
/external/swiftshader/third_party/subzero/src/
DIceAssemblerARM32.h723 void emitType01(CondARM32::Cond Cond, IValueT InstType, IValueT Opcode,
745 void emitMemOp(CondARM32::Cond Cond, IValueT InstType, bool IsLoad,
DIceAssemblerARM32.cpp794 void AssemblerARM32::emitType01(CondARM32::Cond Cond, IValueT InstType, in emitType01() argument
808 (InstType << kTypeShift) | (Opcode << kOpcodeShift) | in emitType01()
933 void AssemblerARM32::emitMemOp(CondARM32::Cond Cond, IValueT InstType, in emitMemOp() argument
939 (InstType << kTypeShift) | (IsLoad ? L : 0) | in emitMemOp()