Home
last modified time | relevance | path

Searched refs:AddOperator (Results 1 – 25 of 41) sorted by relevance

12

/external/tensorflow/tensorflow/lite/tools/
Dverifier_test.cc93 void AddOperator(const std::vector<int32_t>& inputs, in AddOperator() function in tflite::TfLiteFlatbufferModelBuilder
153 builder.AddOperator({0, 1}, {3}, BuiltinOperator_CUSTOM, "test"); in TEST()
167 builder.AddOperator({0, 1}, {2}, BuiltinOperator_CUSTOM, "test"); in TEST()
333 builder.AddOperator({0, 1}, {2}, BuiltinOperator_ADD, nullptr); in TEST()
334 builder.AddOperator({0, 1}, {3}, BuiltinOperator_CUSTOM, "CustomOp"); in TEST()
345 builder.AddOperator({0, 1}, {2}, BuiltinOperator_ADD, nullptr); in TEST()
358 builder.AddOperator({0, 1}, {2}, BuiltinOperator_CUSTOM, "Not supported"); in TEST()
368 builder.AddOperator({1, 2}, {3}, BuiltinOperator_CUSTOM, "test"); in TEST()
388 builder.AddOperator({0, 1}, {2}, BuiltinOperator_ADD, nullptr); in TEST()
390 builder.AddOperator({0, 1}, {2}, BuiltinOperator_CUSTOM, "CustomOp"); in TEST()
[all …]
/external/pdfium/core/fpdfapi/page/
Dcpdf_psengine.cpp125 AddOperator(word); in Parse()
161 AddOperator(word); in AddOperatorForTesting()
164 void CPDF_PSProc::AddOperator(const ByteStringView& word) { in AddOperator() function in CPDF_PSProc
Dcpdf_psengine_unittest.cpp8 TEST(CPDF_PSProc, AddOperator) { in TEST() argument
Dcpdf_psengine.h102 void AddOperator(const ByteStringView& word);
/external/swiftshader/third_party/LLVM/include/llvm/
DOperator.h188 class AddOperator
190 ~AddOperator(); // DO NOT IMPLEMENT
/external/tensorflow/tensorflow/lite/toco/graph_transformations/
Dconvert_trivial_addn_to_add.cc41 auto* add_op = new AddOperator; in Run()
Dresolve_batch_normalization.cc64 auto* add_op = new AddOperator; in Run()
/external/llvm/include/llvm/Analysis/
DValueTracking.h27 class AddOperator; variable
339 OverflowResult computeOverflowForSignedAdd(AddOperator *Add,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DValueTracking.h29 class AddOperator; variable
426 OverflowResult computeOverflowForSignedAdd(const AddOperator *Add,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DNaryReassociate.cpp343 if (AddOperator *AO = dyn_cast<AddOperator>(IndexToSplit)) { in tryReassociateGEPAtIndex()
/external/llvm/lib/Transforms/Scalar/
DNaryReassociate.cpp346 if (AddOperator *AO = dyn_cast<AddOperator>(IndexToSplit)) { in tryReassociateGEPAtIndex()
/external/tensorflow/tensorflow/lite/toco/tflite/
Dexport_test.cc54 auto* op = new AddOperator; in AddOperatorsByName()
136 auto* op = new AddOperator; in BuildQuantizableTestModel()
Doperator_test.cc162 AddOperator op; in TEST_F()
824 TEST_F(OperatorTest, VersioningAddTest) { SimpleVersioningTest<AddOperator>(); } in TEST_F()
/external/llvm/include/llvm/IR/
DOperator.h333 class AddOperator
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DOperator.h399 class AddOperator
/external/tensorflow/tensorflow/lite/toco/
Dmodel.h816 struct AddOperator : Operator {
817 AddOperator() : Operator(OperatorType::kAdd) {}
Dimport_tensorflow.cc811 auto* biasadd = new AddOperator; in ConvertBiasAddOperator()
1734 auto* epsilon_add_op = new AddOperator; in ConvertFusedBatchNormOperator()
2416 {"Add", ConvertSimpleOperator<AddOperator, 2, 1>}, in GetTensorFlowNodeConverterMap()
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMFastISel.cpp773 if (isa<AddOperator>(Op) && in ARMComputeAddress()
777 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) { in ARMComputeAddress()
781 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); in ARMComputeAddress()
784 Op = cast<AddOperator>(Op)->getOperand(0); in ARMComputeAddress()
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86FastISel.cpp420 if (isa<AddOperator>(Op) && in X86SelectAddress()
424 isa<ConstantInt>(cast<AddOperator>(Op)->getOperand(1))) { in X86SelectAddress()
428 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); in X86SelectAddress()
431 Op = cast<AddOperator>(Op)->getOperand(0); in X86SelectAddress()
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp257 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); in computeAddress()
260 Op = cast<AddOperator>(Op)->getOperand(0); in computeAddress()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp288 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); in computeAddress()
291 Op = cast<AddOperator>(Op)->getOperand(0); in computeAddress()
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp1711 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(1))) in OptimizeMax()
1716 if (AddOperator *BO = dyn_cast<AddOperator>(Sel->getOperand(2))) in OptimizeMax()
/external/llvm/lib/Target/Mips/
DMipsFastISel.cpp468 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); in computeAddress()
471 Op = cast<AddOperator>(Op)->getOperand(0); in computeAddress()
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp2145 if (!isa<AddOperator>(Add)) in canFoldAddIntoGEP()
2156 return isa<ConstantInt>(cast<AddOperator>(Add)->getOperand(1)); in canFoldAddIntoGEP()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsFastISel.cpp508 cast<ConstantInt>(cast<AddOperator>(Op)->getOperand(1)); in computeAddress()
511 Op = cast<AddOperator>(Op)->getOperand(0); in computeAddress()

12