Lines Matching +defs:index +defs:extension

678         LOG(ERROR) << "ANeuralNetworks_getDevice passed an invalid device index";
985 uint32_t index, float frequency) {
993 return mb->addRole(*c, IOType::INPUT, index, frequency);
998 uint32_t index, float frequency) {
1006 return mb->addRole(*c, IOType::OUTPUT, index, frequency);
1152 int ANeuralNetworksModel_setOperandValue(ANeuralNetworksModel* model, int32_t index,
1160 return m->setOperandValue(index, buffer, length);
1163 int ANeuralNetworksModel_setOperandValueFromMemory(ANeuralNetworksModel* model, int32_t index,
1173 return m->setOperandValueFromMemory(index, mem, offset, length);
1176 int ANeuralNetworksModel_setOperandValueFromModel(ANeuralNetworksModel* model, int32_t index,
1185 return m->setOperandValueFromModel(index, val);
1202 ANeuralNetworksModel* model, int32_t index,
1211 return m->setOperandSymmPerChannelQuantParams(index, *channelQuant);
1345 int32_t index, uint32_t* rank) {
1352 return r->getOutputOperandRank(index, rank);
1356 int32_t index, uint32_t* dimensions) {
1363 return r->getOutputOperandDimensions(index, dimensions);
1366 int ANeuralNetworksExecution_setInput(ANeuralNetworksExecution* execution, int32_t index,
1375 return r->setInput(index, type, buffer, length);
1378 int ANeuralNetworksExecution_setInputFromMemory(ANeuralNetworksExecution* execution, int32_t index,
1390 return r->setInputFromMemory(index, type, m, offset, length);
1393 int ANeuralNetworksExecution_setOutput(ANeuralNetworksExecution* execution, int32_t index,
1402 return r->setOutput(index, type, buffer, length);
1405 int ANeuralNetworksExecution_setOutputFromMemory(ANeuralNetworksExecution* execution, int32_t index,
1417 return r->setOutputFromMemory(index, type, m, offset, length);
1544 int ANeuralNetworksModel_setOperandExtensionData(ANeuralNetworksModel* model, int32_t index,
1552 return m->setOperandExtensionData(index, data, length);
1703 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* alignment) {
1712 return c->getPreferredMemoryAlignmentForInput(index, alignment);
1716 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* padding) {
1725 return c->getPreferredMemoryPaddingForInput(index, padding);
1729 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* alignment) {
1738 return c->getPreferredMemoryAlignmentForOutput(index, alignment);
1742 const ANeuralNetworksCompilation* compilation, uint32_t index, uint32_t* padding) {
1751 return c->getPreferredMemoryPaddingForOutput(index, padding);
1896 const auto& extension = extensions[vendorExtensionIndex];
1898 *extensionName = extension.name.c_str();