Searched refs:InstType (Results 1 – 5 of 5) sorted by relevance
/external/eigen/unsupported/Eigen/CXX11/src/util/ |
D | CXX11Meta.h | 485 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/ |
D | SIInsertWaits.cpp | 50 } InstType; typedef 89 InstType LastOpcodeType;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 313 StringRef InstType) { in ParseOperandStartingWithInteger() argument 326 if (ParseReg(Operands, InstType)) return true; in ParseOperandStartingWithInteger()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceAssemblerARM32.h | 723 void emitType01(CondARM32::Cond Cond, IValueT InstType, IValueT Opcode, 745 void emitMemOp(CondARM32::Cond Cond, IValueT InstType, bool IsLoad,
|
D | IceAssemblerARM32.cpp | 794 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()
|