Home
last modified time | relevance | path

Searched defs:Operand (Results 1 – 16 of 16) sorted by relevance

/aosp12/packages/modules/NeuralNetworks/common/include/nnapi/
H A DTypes.h423 struct Operand { struct
427 enum class LifeTime {
486 using NoParams = std::monostate;
491 struct SymmPerChannelQuantParams {
518 OperandType type{}; argument
567 * See {@link OperandType}. argument
576 * See {@link OperandType}. argument
578 int32_t zeroPoint = 0;
616 DataLocation location;
621 ExtraParams extraParams;
/aosp12/packages/modules/NeuralNetworks/runtime/test/specs/V1_3/
H A Dcast_identity.mod.py19 Operand = collections.namedtuple( variable
/aosp12/frameworks/compile/mclinker/include/mcld/Script/
H A DNullaryOp.h18 class Operand; variable
H A DUnaryOp.h20 class Operand; variable
H A DTernaryOp.h20 class Operand; variable
H A DBinaryOp.h18 class Operand; variable
H A DOperator.h19 class Operand; variable
/aosp12/packages/modules/NeuralNetworks/runtime/test/specs/V1_2/
H A Dcast.mod.py20 Operand = collections.namedtuple( variable
/aosp12/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h127 Operand() : rex_(0), length_(0), fixup_(nullptr) { } in Operand() function
174 explicit Operand(CpuRegister reg) : rex_(0), length_(0), fixup_(nullptr) { SetModRM(3, reg); } in Operand() function
/aosp12/art/compiler/utils/x86/
H A Dassembler_x86.h99 Operand() : length_(0), disp_(0), fixup_(nullptr) { } in Operand() function
145 explicit Operand(Register reg) : disp_(0), fixup_(nullptr) { SetModRM(3, reg); } in Operand() function
/aosp12/frameworks/compile/mclinker/lib/Script/
H A DOperand.cpp24 Operand::Operand(Type pType) : ExprToken(ExprToken::OPERAND), m_Type(pType) { in Operand() function in mcld::Operand
/aosp12/packages/modules/NeuralNetworks/runtime/test/android_fuzzing/
H A DModel.proto163 message Operand { message
/aosp12/packages/modules/NeuralNetworks/runtime/
H A DExecutionPlan.cpp1954 forEachDynamicTemporary([&ret](SourceOperandIndex dynTemp, const Operand&, uint32_t) { in forTest_flatGetDynamicTemporaries()
2062 const std::function<void(SourceOperandIndex, const Operand&, uint32_t definingStepIndex)>& in forEachDynamicTemporary() argument
/aosp12/packages/modules/NeuralNetworks/tools/test_generator/
H A Dtest_generator.py255 class Operand(NamedVariable): class
/aosp12/packages/modules/NeuralNetworks/common/
H A DLegacyHalUtils.cpp759 bool compliantWithV1_3(const V1_3::Operand& /*operand*/) { in compliantWithV1_3()
/aosp12/packages/modules/NeuralNetworks/runtime/test/
H A DTestPartitioning.cpp169 using Operand = ::android::nn::Operand; typedef