Searched refs:channelIndex (Results 1 – 7 of 7) sorted by relevance
/packages/modules/NeuralNetworks/runtime/test/fuzzing/operation_signatures/ |
D | Convolutions.cpp | 47 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 …]
|
D | Poolings.cpp | 40 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/ |
D | ChannelTuner.java | 202 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/ |
D | GroupedConv2D.cpp | 266 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/ |
D | ProgramListAdapter.java | 47 ProgramListAdapter(Resources res, ProgramGuide programGuide, int channelIndex) { in ProgramListAdapter() argument 51 mChannelIndex = channelIndex; in ProgramListAdapter()
|
D | ProgramTableAdapter.java | 253 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()
|
D | ProgramManager.java | 387 Channel getChannel(int channelIndex) { in getChannel() argument 388 if (channelIndex < 0 || channelIndex >= getChannelCount()) { in getChannel() 391 return mFilteredChannels.get(channelIndex); in getChannel()
|