Home
last modified time | relevance | path

Searched refs:channelIndex (Results 1 – 7 of 7) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/fuzzing/operation_signatures/
DConvolutions.cpp47 int channelIndex = useNchw ? 1 : 3; in conv2DExplicitConstructor() local
55 RandomVariableType::FREE, op->inputs[0]->dimensions[channelIndex]}; in conv2DExplicitConstructor()
65 op->outputs[0]->dimensions[channelIndex] = op->inputs[1]->dimensions[0]; in conv2DExplicitConstructor()
99 int channelIndex = useNchw ? 1 : 3; in conv2DImplicitConstructor() local
107 RandomVariableType::FREE, op->inputs[0]->dimensions[channelIndex]}; in conv2DImplicitConstructor()
117 op->outputs[0]->dimensions[channelIndex] = op->inputs[1]->dimensions[0]; in conv2DImplicitConstructor()
286 int channelIndex = useNchw ? 1 : 3; in depthwiseConv2DExplicitConstructor() local
294 op->inputs[9]->value<RandomVariable>() * op->inputs[0]->dimensions[channelIndex]; in depthwiseConv2DExplicitConstructor()
305 op->outputs[0]->dimensions[channelIndex] = channelOut; in depthwiseConv2DExplicitConstructor()
339 int channelIndex = useNchw ? 1 : 3; in depthwiseConv2DImplicitConstructor() local
[all …]
DPoolings.cpp40 int channelIndex = useNchw ? 1 : 3; in poolingExplicitOpConstructor() local
51 op->outputs[0]->dimensions[channelIndex] = op->inputs[0]->dimensions[channelIndex]; in poolingExplicitOpConstructor()
79 int channelIndex = useNchw ? 1 : 3; in poolingImplicitOpConstructor() local
90 op->outputs[0]->dimensions[channelIndex] = op->inputs[0]->dimensions[channelIndex]; in poolingImplicitOpConstructor()
/packages/apps/TV/src/com/android/tv/
DChannelTuner.java202 int channelIndex; in getAdjacentBrowsableChannel() local
204 channelIndex = 0; in getAdjacentBrowsableChannel()
205 Channel channel = mChannels.get(channelIndex); in getAdjacentBrowsableChannel()
210 channelIndex = mChannelIndexMap.get(mCurrentChannel.getId()); in getAdjacentBrowsableChannel()
214 int nextChannelIndex = up ? channelIndex + 1 + i : channelIndex - 1 - i + size; in getAdjacentBrowsableChannel()
/packages/modules/NeuralNetworks/common/operations/
DGroupedConv2D.cpp266 int channelIndex = g * outputGroupDepth + d; in groupedConvQuant8PerChannel() local
267 sum += biasData[channelIndex]; in groupedConvQuant8PerChannel()
269 sum, outputMultiplier[channelIndex], -outputShift[channelIndex]); in groupedConvQuant8PerChannel()
/packages/apps/TV/src/com/android/tv/guide/
DProgramListAdapter.java47 ProgramListAdapter(Resources res, ProgramGuide programGuide, int channelIndex) { in ProgramListAdapter() argument
51 mChannelIndex = channelIndex; in ProgramListAdapter()
DProgramTableAdapter.java253 int channelIndex = mProgramManager.getChannelIndex(tableEntry.channelId); in onTableEntryChanged() local
255 if (DEBUG) Log.d(TAG, "update(" + channelIndex + ", " + pos + ")"); in onTableEntryChanged()
256 if (channelIndex >= 0 && channelIndex < mProgramListAdapters.size()) { in onTableEntryChanged()
257 mProgramListAdapters.get(channelIndex).notifyItemChanged(pos, tableEntry); in onTableEntryChanged()
258 notifyItemChanged(channelIndex, true); in onTableEntryChanged()
DProgramManager.java387 Channel getChannel(int channelIndex) { in getChannel() argument
388 if (channelIndex < 0 || channelIndex >= getChannelCount()) { in getChannel()
391 return mFilteredChannels.get(channelIndex); in getChannel()