Lines Matching +full:d3 +full:- +full:array
7 // http://www.apache.org/licenses/LICENSE-2.0
39 for (auto& d1 : context->partition_cdf) { in ResetPartitionCounters()
49 for (auto& d1 : context->palette_color_index_cdf) { in ResetPaletteColorIndexCounters()
52 for (auto& d3 : d2) { in ResetPaletteColorIndexCounters() local
53 d3[cdf_size] = 0; in ResetPaletteColorIndexCounters()
62 for (auto& d1 : context->intra_tx_type_cdf) { in ResetTxTypeCounters()
65 for (auto& d3 : d2) { in ResetTxTypeCounters() local
66 d3[cdf_size] = 0; in ResetTxTypeCounters()
70 for (auto& d1 : context->inter_tx_type_cdf) { in ResetTxTypeCounters()
80 for (auto& d1 : context->tx_depth_cdf) { in ResetTxDepthCounters()
81 const int cdf_size = kMaxTxDepthSymbolCount - delta; in ResetTxDepthCounters()
90 int cdf_size = kIntraPredictionModesUV - 1; in ResetUVModeCounters()
91 for (auto& d1 : context->uv_mode_cdf) { in ResetUVModeCounters()
195 // These macros set the last element in the inner-most dimension of the array to
197 #define RESET_COUNTER_1D(array) \ argument
199 (array)[std::extent<decltype(array), 0>::value - 1] = 0; \
202 #define RESET_COUNTER_2D(array) \ argument
204 for (auto& d1 : (array)) { \
205 d1[std::extent<decltype(array), 1>::value - 1] = 0; \
209 #define RESET_COUNTER_3D(array) \ argument
211 for (auto& d1 : (array)) { \
213 d2[std::extent<decltype(array), 2>::value - 1] = 0; \
218 #define RESET_COUNTER_4D(array) \ argument
220 for (auto& d1 : (array)) { \
222 for (auto& d3 : d2) { \
223 d3[std::extent<decltype(array), 3>::value - 1] = 0; \