Searched defs:operands (Results 1 - 25 of 227) sorted by relevance

12345678910

/external/capstone/bindings/ocaml/
H A Dmips.ml23 operands: mips_op array; Record field in type:cs_mips
H A Dsparc.ml25 operands: sparc_op array; Record field in type:cs_sparc
H A Dsystemz.ml26 operands: sysz_op array; Record field in type:cs_sysz
H A Dxcore.ml24 operands: xcore_op array; Record field in type:cs_xcore
H A Dppc.ml32 operands: ppc_op array; Record field in type:cs_ppc
H A Darm.ml51 operands: arm_op array; Record field in type:cs_arm
H A Darm64.ml45 operands: arm64_op array; Record field in type:cs_arm64
H A Dx86.ml44 operands: x86_op array; Record field in type:cs_x86
/external/llvm/include/llvm/IR/
H A DOperandTraits.h12 // the operands in the most efficient manner.
38 static unsigned operands(const User*) { function in struct:llvm::FixedNumOperandTraits
47 /// OptionalOperandTraits - when the number of operands may change at runtime.
52 static unsigned operands(const User *U) { function in struct:llvm::OptionalOperandTraits
73 static unsigned operands(const User *U) { function in struct:llvm::VariadicOperandTraits
100 static unsigned operands(const User *U) { function in struct:llvm::HungoffOperandTraits
137 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
143 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
148 return OperandTraits<CLASS>::operands(this); \
/external/llvm/utils/TableGen/
H A DX86DisassemblerShared.h20 operands[llvm::X86Disassembler::X86_MAX_OPERANDS]; member in struct:InstructionSpecifier
27 memset(operands, 0, sizeof(operands));
/external/swiftshader/third_party/LLVM/include/llvm/
H A DOperandTraits.h12 // the operands in the most efficient manner.
38 static unsigned operands(const User*) { function in struct:llvm::FixedNumOperandTraits
47 /// OptionalOperandTraits - when the number of operands may change at runtime.
52 static unsigned operands(const User *U) { function in struct:llvm::OptionalOperandTraits
73 static unsigned operands(const User *U) { function in struct:llvm::VariadicOperandTraits
100 static unsigned operands(const User *U) { function in struct:llvm::HungoffOperandTraits
137 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
143 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
148 return OperandTraits<CLASS>::operands(this); \
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DOperandTraits.h12 // the operands in the most efficient manner.
38 static unsigned operands(const User*) { function in struct:llvm::FixedNumOperandTraits
47 /// OptionalOperandTraits - when the number of operands may change at runtime.
52 static unsigned operands(const User *U) { function in struct:llvm::OptionalOperandTraits
73 static unsigned operands(const User *U) { function in struct:llvm::VariadicOperandTraits
100 static unsigned operands(const User *U) { function in struct:llvm::HungoffOperandTraits
137 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
143 assert(i_nocapture < OperandTraits<CLASS>::operands(this) \
148 return OperandTraits<CLASS>::operands(this); \
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_matchers.cc35 const auto& operands = instruction->operands(); local
36 if (operands.size() != operands_.size()) {
38 << (operands.size() > operands_.size() ? "many" : "few")
39 << " operands (got " << operands.size() << ", want "
43 for (int index = 0; index < operands.size(); index++) {
45 if (!operands_[index].MatchAndExplain(operands[index], &inner_listener)) {
48 << operands[index]->ToString()
H A Dimplicit_broadcast_remover.cc63 // Iterates through the operands of 'hlo' and replace any operands which are
71 std::vector<HloInstruction*> operands; local
79 operands.push_back(new_operand);
82 operands.push_back(operand);
89 hlo->CloneWithNewOperands(hlo->shape(), operands));
112 // HLO instructions with implicitly broadcast operands are cloned and left
H A Dhlo_constant_folding_test.cc119 std::vector<HloInstruction*> operands; local
126 operands.push_back(insn);
131 shape, operands, test_config.concat_dimension));
H A Dreshape_mover.cc33 // Most elementwise instructions support implicit broadcast of scalar operands,
99 for (HloInstruction* operand : hlo->operands()) {
130 // Returns true if all operands of `instruction` can easily change shape.
132 // from the same shape. Additionally, operands like constant, rng, and any
138 VLOG(3) << "** Checking whether all operands have easy shape changes: "
140 // Check whether all operands:
147 // output shapes as all other reshaped or transposed operands.
151 for (const HloInstruction* operand : instruction->operands()) {
174 // TODO(someone): Look into supporting general ops for the operands as
182 VLOG(3) << "All operands hav
265 auto operands = instruction->operands(); local
[all...]
H A Duser_computation_test.cc196 const auto& operands = hlo_computation->root_instruction()->operands(); local
197 ASSERT_EQ(2, operands.size());
198 EXPECT_TRUE(operands[0]->opcode() == HloOpcode::kBroadcast ||
199 operands[1]->opcode() == HloOpcode::kBroadcast);
333 const auto& operands = hlo_computation->root_instruction()->operands(); local
334 ASSERT_EQ(2, operands.size());
335 EXPECT_TRUE(operands[0]->opcode() == HloOpcode::kBroadcast &&
336 operands[
[all...]
H A Dhlo_matchers.h28 std::vector<::testing::Matcher<const HloInstruction*>> operands)
29 : opcode_(opcode), operands_(operands) {}
45 : HloMatcher(HloOpcode::kParameter, /*operands=*/{}),
61 : HloMatcher(HloOpcode::kGetTupleElement, /*operands=*/{operand}),
77 std::vector<::testing::Matcher<const HloInstruction*>> operands)
78 : HloMatcher(HloOpcode::kCustomCall, operands),
89 // HloInstruction* matchers for opcode and operands. Example:
96 ::testing::Matcher<const ::xla::HloInstruction*> opcode(M... operands) { \
98 ::xla::HloOpcode::k##opcode, {operands...})); \
169 // HloInstruction, beyond just its opcode and operands
27 HloMatcher(HloOpcode opcode, std::vector<::testing::Matcher<const HloInstruction*>> operands) argument
75 HloCustomCallMatcher( ::testing::Matcher<string> call_target_matcher, std::vector<::testing::Matcher<const HloInstruction*>> operands) argument
212 CustomCall( ::testing::Matcher<string> call_target_matcher, M... operands) argument
[all...]
/external/ImageMagick/MagickWand/
H A Dwandcli.c287 operands;
299 va_start(operands,format);
300 status=LogMagickEventList(type,module,function,line,new_format,operands);
301 va_end(operands);
335 operands;
349 va_start(operands,format);
351 line,severity,tag,new_format,operands);
352 va_end(operands);
282 operands; local
329 operands; local
/external/vixl/test/aarch32/
H A Dtest-assembler-negative-cond-rd-rn-operand-rm-shift-rs-a32.cc95 // The `operands` field represents what to pass to the assembler to
97 Operands operands; member in struct:vixl::aarch32::__anon30031::TestData
98 // Description of the operands, used for error reporting.
3120 Condition cond = kTests[i].operands.cond;
3121 Register rd = kTests[i].operands.rd;
3122 Register rn = kTests[i].operands.rn;
3123 Register rm = kTests[i].operands.rm;
3124 ShiftType shift = kTests[i].operands.shift;
3125 Register rs = kTests[i].operands.rs;
H A Dtest-macro-assembler-cond-rd-rn-a32.cc84 // The `operands` field represents what to pass to the assembler to
86 Operands operands; member in struct:vixl::aarch32::__anon30034::TestData
87 // Description of the operands, used for error reporting.
641 Condition cond = kTests[i].operands.cond;
642 Register rd = kTests[i].operands.rd;
643 Register rn = kTests[i].operands.rn;
H A Dtest-macro-assembler-cond-rd-rn-pc-a32.cc77 // The `operands` field represents what to pass to the assembler to
79 Operands operands; member in struct:vixl::aarch32::__anon30035::TestData
80 // Description of the operands, used for error reporting.
599 Condition cond = kTests[i].operands.cond;
600 Register rd = kTests[i].operands.rd;
601 Register rn = kTests[i].operands.rn;
H A Dtest-macro-assembler-cond-rd-rn-t32.cc84 // The `operands` field represents what to pass to the assembler to
86 Operands operands; member in struct:vixl::aarch32::__anon30036::TestData
87 // Description of the operands, used for error reporting.
641 Condition cond = kTests[i].operands.cond;
642 Register rd = kTests[i].operands.rd;
643 Register rn = kTests[i].operands.rn;
H A Dtest-assembler-cond-dt-drt-drd-drn-drm-float-f32-only-a32.cc85 // The `operands` field represents what to pass to the assembler to
87 Operands operands; member in struct:vixl::aarch32::__anon29966::TestData
93 // Description of the operands, used for error reporting.
240 DataType dt = kTests[i].operands.dt;
241 DRegister rd = kTests[i].operands.rd;
242 DRegister rn = kTests[i].operands.rn;
243 DRegister rm = kTests[i].operands.rm;
292 printf("Error when testing \"%s\" with operands \"%s\":\n",
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
H A Dtuple_ops.cc74 tensorflow::gtl::ArraySlice<llvm::Value*> operands,
76 for (size_t i = 0; i < operands.size(); ++i) {
78 ir_builder->CreatePointerCast(operands[i],
73 EmitTuple(IrArray tuple, tensorflow::gtl::ArraySlice<llvm::Value*> operands, llvm::IRBuilder<>* ir_builder, llvm::Module* module) argument

Completed in 615 milliseconds

12345678910