Home
last modified time | relevance | path

Searched defs:operand (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/ml/nn/runtime/
DModelBuilder.cpp109 Operand& operand = mOperands[index]; in setOperandValue() local
178 Operand& operand = mOperands[index]; in setOperandSymmPerChannelQuantParams() local
211 Operand& operand = mOperands[index]; in setOperandExtensionData() local
247 Operand& operand = mOperands[l.operandIndex]; in copyLargeValuesToSharedMemory() local
270 Operand& operand = mOperands[l.operandIndex]; in copyLargeValuesToSharedMemory() local
291 Operand& operand = mOperands[index]; in setOperandValueFromMemory() local
397 Operand& operand = mOperands[operandIndex]; in identifyInputsAndOutputs() local
564 for (const auto& operand : mOperands) { in getExtensionNameToPrefixMap() local
DTypeManager.h68 uint32_t getSizeOfData(const Operand& operand) const { in getSizeOfData()
DExecutionBuilder.cpp47 static bool checkDimensionInfo(const Operand& operand, const ANeuralNetworksOperandType* newType, in checkDimensionInfo()
82 int ModelArgumentInfo::setFromPointer(const Operand& operand, in setFromPointer()
110 int ModelArgumentInfo::setFromMemory(const Operand& operand, const ANeuralNetworksOperandType* type, in setFromMemory()
128 int ModelArgumentInfo::setFromTemporaryMemory(const Operand& operand, uint32_t poolIndex, in setFromTemporaryMemory()
150 int ModelArgumentInfo::updateDimensionInfo(const Operand& operand, in updateDimensionInfo()
DExecutionPlan.cpp286 const Operand& operand = fromModel.getOperand(fromOperandIndex); in addOperand() local
528 const Operand& operand = mSubModel.getOperand(subModelOutput.second); in finishSubModel() local
1139 V1_0::Operand convertTo<V1_0::Operand>(Operand operand) { in convertTo()
1337 uint32_t getIndex(Operand operand) { in initializeSlice()
DManager.cpp203 const Operand& operand = hidlModel.operands[operandIndex]; in getSupportedOperations() local
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
DInMatcher.java66 public static <T> Matcher<T> in(T... operand) { in in()
71 public static <T> Matcher<T> in(Collection<T> operand) { in in()
/frameworks/ml/nn/runtime/test/fuzzing/
DRandomGraphGenerator.cpp39 RandomOperand::RandomOperand(const OperandSignature& operand, Type dataType, uint32_t rank) in RandomOperand()
143 static bool asConstant(const std::shared_ptr<RandomOperand>& operand, float prob = 0.5f) { in asConstant()
175 for (auto& operand : mOperands) { in generateValue() local
179 for (auto& operand : mOperands) { in generateValue() local
211 for (auto& operand : mOperands) { in createModel() local
254 for (const auto& operand : mOperands) { in createRequest() local
DRandomGraphGeneratorUtils.cpp62 for (auto& operand : operands) dump(operand); in dump() local
71 for (auto& operand : operands) { in dump() local
/frameworks/ml/nn/common/
DValidateHal.cpp74 static bool validateOperandExtraParams(const V1_2::Operand& operand, uint32_t index) { in validateOperandExtraParams()
153 V1_2::Operand operand = convertToV1_2(versionedOperand); in validateOperands() local
403 const Operand& operand = operands[i]; in validateOperations() local
421 const Operand& operand = operands[i]; in validateOperations() local
464 const Operand& operand = operands[i]; in validateModelInputOutputs() local
531 const Operand& operand = operands[operandIndex]; in validateRequestArguments() local
DExecutionBurstServer.cpp119 for (const auto& operand : outputShapes) { in serialize() local
178 for (size_t operand = 0; operand < numberOfInputOperands; ++operand) { in deserialize() local
219 for (size_t operand = 0; operand < numberOfOutputOperands; ++operand) { in deserialize() local
DUtils.cpp182 const Operand* operand = getInputOperand(index); in getInputShape() local
196 const Operand* operand = getOutputOperand(index); in getOutputShape() local
308 bool tensorHasUnspecifiedDimensions(const Operand& operand) { in tensorHasUnspecifiedDimensions()
2079 bool compliantWithV1_0(const V1_2::Operand& operand) { in compliantWithV1_0()
2276 V1_2::Operand convertToV1_2(const V1_0::Operand& operand) { in convertToV1_2()
2286 V1_2::Operand convertToV1_2(const V1_2::Operand& operand) { in convertToV1_2()
2290 V1_0::Operand convertToV1_0(const V1_2::Operand& operand) { in convertToV1_0()
2305 [](const V1_0::Operand& operand) { return convertToV1_2(operand); }); in convertToV1_2()
2316 [](const V1_2::Operand& operand) { return convertToV1_0(operand); }); in convertToV1_0()
DExecutionBurstController.cpp165 for (size_t operand = 0; operand < numberOfOperands; ++operand) { in deserialize() local
/frameworks/ml/nn/common/operations/
DBidirectionalSequenceLSTM.cpp32 inline T* GetBuffer(RunTimeOperandInfo* operand) { in GetBuffer()
37 inline const T* GetBuffer(const RunTimeOperandInfo* operand) { in GetBuffer()
42 inline const T* GetOptionalBuffer(const RunTimeOperandInfo* operand) { in GetOptionalBuffer()
DMultinomial.cpp36 inline T* GetBuffer(RunTimeOperandInfo* operand) { in GetBuffer()
41 inline const T* GetBuffer(const RunTimeOperandInfo* operand) { in GetBuffer()
DQuantizedLSTM.cpp33 inline T* GetBuffer(RunTimeOperandInfo* operand) { in GetBuffer()
38 inline const T* GetBuffer(const RunTimeOperandInfo* operand) { in GetBuffer()
DLSTM.cpp33 inline T* GetBuffer(RunTimeOperandInfo* operand) { in GetBuffer()
38 inline const T* GetBuffer(const RunTimeOperandInfo* operand) { in GetBuffer()
43 inline const T* GetOptionalBuffer(const RunTimeOperandInfo* operand) { in GetOptionalBuffer()
/frameworks/rs/rsov/compiler/spirit/
Dinstructions.h42 inline uint16_t WordCount(const std::string &operand) { in WordCount()
97 bool DeserializeExactlyOne(InputWordStream &IS, T *operand) { in DeserializeExactlyOne()
110 bool DeserializeOptionallyOne(InputWordStream &IS, T **operand) { in DeserializeOptionallyOne()
/frameworks/ml/nn/common/include/
DCpuExecutor.h253 inline size_t NumDimensions(const RunTimeOperandInfo *operand) { in NumDimensions()
257 inline uint32_t SizeOfDimension(const RunTimeOperandInfo *operand, int i) { in SizeOfDimension()
DUtils.h199 inline uint32_t nonExtensionOperandSizeOfData(const Operand& operand) { in nonExtensionOperandSizeOfData()
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/
DLockFindingClassVisitor.java129 BasicValue operand = (BasicValue) f.getStack(f.getStackSize() - 1); in visitEnd() local
143 BasicValue operand = (BasicValue) f.getStack(f.getStackSize() - 1); in visitEnd() local
/frameworks/ml/nn/tools/
Dsync_enums_to_hal.py234 operand = [] variable
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
DStubCallMethodAdapter.java320 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
DDelegateMethodAdapter.java403 public void visitIntInsn(int opcode, int operand) { in visitIntInsn()
/frameworks/base/services/core/java/com/android/server/notification/
DValidateNotificationPeople.java531 public void applyChangesLocked(NotificationRecord operand) { in applyChangesLocked()
/frameworks/ml/nn/runtime/test/
DTestPartitioning.cpp616 uint32_t operand = addOperand(WrapperType::INT32); in addIntOperand() local
623 uint32_t addOperandOfSameType(uint32_t operand, Dimensioned dimensioned = Dimensioned::YES) { in addOperandOfSameType()
876 const Operand& operand = model->getOperand(i); in buildDefinitionMap() local

12