Lines Matching +defs:index +defs:extension
678 LOG(ERROR) << "ANeuralNetworks_getDevice passed an invalid device index";
962 uint32_t index, float frequency) {
970 return mb->addRole(*c, IOType::INPUT, index, frequency);
975 uint32_t index, float frequency) {
983 return mb->addRole(*c, IOType::OUTPUT, index, frequency);
1129 int ANeuralNetworksModel_setOperandValue(ANeuralNetworksModel* model, int32_t index,
1137 return m->setOperandValue(index, buffer, length);
1140 int ANeuralNetworksModel_setOperandValueFromMemory(ANeuralNetworksModel* model, int32_t index,
1150 return m->setOperandValueFromMemory(index, mem, offset, length);
1153 int ANeuralNetworksModel_setOperandValueFromModel(ANeuralNetworksModel* model, int32_t index,
1162 return m->setOperandValueFromModel(index, val);
1179 ANeuralNetworksModel* model, int32_t index,
1188 return m->setOperandSymmPerChannelQuantParams(index, *channelQuant);
1322 int32_t index, uint32_t* rank) {
1329 return r->getOutputOperandRank(index, rank);
1333 int32_t index, uint32_t* dimensions) {
1340 return r->getOutputOperandDimensions(index, dimensions);
1343 int ANeuralNetworksExecution_setInput(ANeuralNetworksExecution* execution, int32_t index,
1352 return r->setInput(index, type, buffer, length);
1355 int ANeuralNetworksExecution_setInputFromMemory(ANeuralNetworksExecution* execution, int32_t index,
1367 return r->setInputFromMemory(index, type, m, offset, length);
1370 int ANeuralNetworksExecution_setOutput(ANeuralNetworksExecution* execution, int32_t index,
1379 return r->setOutput(index, type, buffer, length);
1382 int ANeuralNetworksExecution_setOutputFromMemory(ANeuralNetworksExecution* execution, int32_t index,
1394 return r->setOutputFromMemory(index, type, m, offset, length);
1521 int ANeuralNetworksModel_setOperandExtensionData(ANeuralNetworksModel* model, int32_t index,
1529 return m->setOperandExtensionData(index, data, length);
1692 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* alignment) {
1701 return c->getPreferredMemoryAlignmentForInput(index, alignment);
1705 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* padding) {
1714 return c->getPreferredMemoryPaddingForInput(index, padding);
1718 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* alignment) {
1727 return c->getPreferredMemoryAlignmentForOutput(index, alignment);
1731 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* padding) {
1740 return c->getPreferredMemoryPaddingForOutput(index, padding);
1885 const auto& extension = extensions[vendorExtensionIndex];
1887 *extensionName = extension.name.c_str();