Lines Matching +defs:index +defs:extension

661         LOG(ERROR) << "ANeuralNetworks_getDevice passed an invalid device index";
945 uint32_t index, float frequency) {
953 return mb->addRole(*c, IOType::INPUT, index, frequency);
958 uint32_t index, float frequency) {
966 return mb->addRole(*c, IOType::OUTPUT, index, frequency);
1100 int ANeuralNetworksModel_setOperandValue(ANeuralNetworksModel* model, int32_t index,
1108 return m->setOperandValue(index, buffer, length);
1111 int ANeuralNetworksModel_setOperandValueFromMemory(ANeuralNetworksModel* model, int32_t index,
1121 return m->setOperandValueFromMemory(index, mem, offset, length);
1124 int ANeuralNetworksModel_setOperandValueFromModel(ANeuralNetworksModel* model, int32_t index,
1133 return m->setOperandValueFromModel(index, val);
1150 ANeuralNetworksModel* model, int32_t index,
1159 return m->setOperandSymmPerChannelQuantParams(index, *channelQuant);
1294 int32_t index, uint32_t* rank) {
1301 return r->getOutputOperandRank(index, rank);
1305 int32_t index, uint32_t* dimensions) {
1312 return r->getOutputOperandDimensions(index, dimensions);
1315 int ANeuralNetworksExecution_setInput(ANeuralNetworksExecution* execution, int32_t index,
1324 return r->setInput(index, type, buffer, length);
1327 int ANeuralNetworksExecution_setInputFromMemory(ANeuralNetworksExecution* execution, int32_t index,
1339 return r->setInputFromMemory(index, type, m, offset, length);
1342 int ANeuralNetworksExecution_setOutput(ANeuralNetworksExecution* execution, int32_t index,
1351 return r->setOutput(index, type, buffer, length);
1354 int ANeuralNetworksExecution_setOutputFromMemory(ANeuralNetworksExecution* execution, int32_t index,
1366 return r->setOutputFromMemory(index, type, m, offset, length);
1493 int ANeuralNetworksModel_setOperandExtensionData(ANeuralNetworksModel* model, int32_t index,
1501 return m->setOperandExtensionData(index, data, length);
1624 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* alignment) {
1633 return c->getPreferredMemoryAlignmentForInput(index, alignment);
1637 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* padding) {
1646 return c->getPreferredMemoryPaddingForInput(index, padding);
1650 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* alignment) {
1659 return c->getPreferredMemoryAlignmentForOutput(index, alignment);
1663 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* padding) {
1672 return c->getPreferredMemoryPaddingForOutput(index, padding);
1817 const auto& extension = extensions[vendorExtensionIndex];
1819 *extensionName = extension.name.c_str();