/external/v8/src/s390/ |
D | disasm-s390.cc | 688 #define DECODE_RR_INSTRUCTIONS(name, opcode_name, opcode_value) \ in DecodeGeneric() argument 689 case opcode_name: \ in DecodeGeneric() 696 #define DECODE_RS_A_INSTRUCTIONS(name, opcode_name, opcode_value) \ in DecodeGeneric() argument 697 case opcode_name: \ in DecodeGeneric() 703 #define DECODE_RSI_INSTRUCTIONS(name, opcode_name, opcode_value) \ in DecodeGeneric() argument 704 case opcode_name: \ in DecodeGeneric() 710 #define DECODE_RI_A_INSTRUCTIONS(name, opcode_name, opcode_value) \ in DecodeGeneric() argument 711 case opcode_name: \ in DecodeGeneric() 717 #define DECODE_RI_B_INSTRUCTIONS(name, opcode_name, opcode_value) \ in DecodeGeneric() argument 718 case opcode_name: \ in DecodeGeneric() [all …]
|
D | assembler-s390.h | 1408 #define DECLARE_VRR_A_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument 1423 #define DECLARE_VRR_C_INSTRUCTIONS(name, opcode_name, opcode_value) \ argument
|
D | constants-s390.h | 1654 #define DECLARE_OPCODES(name, opcode_name, opcode_value) \ argument 1655 opcode_name = opcode_value,
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_opcode.cc | 25 #define CASE_OPCODE_STRING(enum_name, opcode_name, ...) \ in HloOpcodeString() argument 27 return opcode_name; in HloOpcodeString() 33 StatusOr<HloOpcode> StringToHloOpcode(const string& opcode_name) { in StringToHloOpcode() argument 35 #define STRING_TO_OPCODE_ENTRY(enum_name, opcode_name, ...) \ in StringToHloOpcode() argument 36 {opcode_name, HloOpcode::enum_name}, in StringToHloOpcode() 40 auto it = opcode_map->find(opcode_name); in StringToHloOpcode() 42 return InvalidArgument("Unknown opcode: %s", opcode_name); in StringToHloOpcode() 53 #define CASE_IS_VARIADIC(enum_name, opcode_name, arity, ...) \ in HloOpcodeIsVariadic() argument 63 #define CASE_ARITY(enum_name, opcode_name, arity, ...) \ in HloOpcodeArity() argument
|
D | hlo_opcode.h | 148 #define DECLARE_ENUM(enum_name, opcode_name, ...) enum_name, argument 169 StatusOr<HloOpcode> StringToHloOpcode(const string& opcode_name);
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_constants.cpp | 39 std::string opcode_name = std::string("Op") + spvOpcodeString(inst->opcode()); in ValidateConstantComposite() local 44 << opcode_name << " Result Type <id> '" in ValidateConstantComposite() 55 << opcode_name in ValidateConstantComposite() 75 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 83 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 95 << opcode_name in ValidateConstantComposite() 126 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 137 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 146 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 154 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_constants.cpp | 39 std::string opcode_name = std::string("Op") + spvOpcodeString(inst->opcode()); in ValidateConstantComposite() local 44 << opcode_name << " Result Type <id> '" in ValidateConstantComposite() 55 << opcode_name in ValidateConstantComposite() 75 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 83 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 95 << opcode_name in ValidateConstantComposite() 126 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 137 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 146 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() 154 << opcode_name << " Constituent <id> '" in ValidateConstantComposite() [all …]
|
/external/tensorflow/tensorflow/lite/schema/ |
D | upgrade_schema.py | 208 def RemapOperator(opcode_name): argument 228 return (old_name_to_new_name[opcode_name] 229 if opcode_name in old_name_to_new_name else opcode_name)
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | README | 6 go in a file called {opcode_name,intrinsic_name}.ll (e.g. fadd.ll)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | README | 6 go in a file called {opcode_name,intrinsic_name}.ll (e.g. fadd.ll)
|
/external/v8/src/ppc/ |
D | disasm-ppc.cc | 1127 #define DECODE_XX3_INSTRUCTIONS(name, opcode_name, opcode_value) \ in DecodeExt6() argument 1128 case opcode_name: { \ in DecodeExt6() 1136 #define DECODE_XX2_INSTRUCTIONS(name, opcode_name, opcode_value) \ in DecodeExt6() argument 1137 case opcode_name: { \ in DecodeExt6()
|
D | constants-ppc.h | 2547 #define DECLARE_INSTRUCTION(name, opcode_name, opcode_value) \ argument 2548 opcode_name = opcode_value, 2813 #define OPCODE_CASES(name, opcode_name, opcode_value) \ argument 2814 case opcode_name:
|
/external/swiftshader/third_party/SPIRV-Tools/source/ |
D | text.cpp | 316 const char* opcode_name = "opcode"; in spvTextEncodeOperand() local 318 opcode_name = d->name; in spvTextEncodeOperand() 321 << "Type for " << opcode_name in spvTextEncodeOperand()
|
/external/deqp-deps/SPIRV-Tools/source/ |
D | text.cpp | 316 const char* opcode_name = "opcode"; in spvTextEncodeOperand() local 318 opcode_name = d->name; in spvTextEncodeOperand() 321 << "Type for " << opcode_name in spvTextEncodeOperand()
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/CommandGuide/ |
D | llvm-exegesis.rst | 50 opcode_name: ADD64rr 98 cluster_id,opcode_name,config,sched_class
|
/external/mesa3d/src/mapi/glapi/gen/ |
D | glX_XML.py | 425 def opcode_name(self): member in glx_function 467 return self.opcode_name()
|
D | glX_proto_send.py | 457 print '#define %s %d' % (func.opcode_name(), func.opcode_value()) 759 print ' %s __glXSetupSingleRequest(gc, %s, cmdlen);' % (pc_decl, f.opcode_name()) 862 print ' %s(%s, %u%s );' % (self.pixel_stubs[f.name] , f.opcode_name(), dim, p_string)
|
/external/f2fs-tools/tools/sg_write_buffer/ |
D | sg_cmds_extra.c | 2292 const char * opcode_name = "Extended copy (LID1)"; in sg_ll_extended_copy() local 2298 pr2ws(" %s cdb: ", opcode_name); in sg_ll_extended_copy() 2303 pr2ws(" %s parameter list:\n", opcode_name); in sg_ll_extended_copy() 2308 if (NULL == ((ptvp = create_pt_obj(opcode_name)))) in sg_ll_extended_copy() 2314 ret = sg_cmds_process_resp(ptvp, opcode_name, res, SG_NO_DATA_IN, sense_b, in sg_ll_extended_copy()
|
/external/freetype/src/truetype/ |
D | ttinterp.c | 946 const char* const opcode_name[256] = variable 7877 FT_TRACE6(( opcode_name[exc->opcode] + 2 )); in TT_RunIns() 7878 FT_TRACE7(( "%*s", *opcode_name[exc->opcode] == 'A' in TT_RunIns() 7880 : 12 - ( *opcode_name[exc->opcode] - '0' ), in TT_RunIns()
|
/external/freetype/ |
D | ChangeLog.27 | 1943 * src/truetype/ttinterp.c (opcode_name): Updated. 1956 * src/truetype/ttinterp.c (Pop_Push_Count, opcode_name): Updated. 1977 (opcode_name) [TT_CONFIG_OPTION_GX_VAR_SUPPORT]: Updated.
|
D | ChangeLog | 125 * src/truetype/ttinterp.c (opcode_name): Fix typos.
|
D | ChangeLog.26 | 4139 (opcode_name): Add string lengths.
|
D | ChangeLog.24 | 5826 * src/truetype/ttinterp.c (opcode_name) [FT_DEBUG_LEVEL_TRACE]: New
|