Searched refs:model_count (Results 1 – 2 of 2) sorted by relevance
/external/autotest/site_utils/ |
D | lab_inventory_unittest.py | 545 def _check_model_count(self, model_count): argument 547 msg = '[model: %d]' % (model_count,) 548 models = self._MODEL_LIST[:model_count] 557 self.assertEqual(inventory.get_num_duts(), 6 * model_count, msg) 558 self.assertEqual(inventory.get_num_models(), model_count, msg) 567 for model_count in range(0, len(self._MODEL_LIST)): 568 self._check_model_count(model_count)
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encoder.c | 3284 static void full_to_model_count(unsigned int *model_count, argument 3287 model_count[ZERO_TOKEN] = full_count[ZERO_TOKEN]; 3288 model_count[ONE_TOKEN] = full_count[ONE_TOKEN]; 3289 model_count[TWO_TOKEN] = full_count[TWO_TOKEN]; 3291 model_count[TWO_TOKEN] += full_count[n]; 3292 model_count[EOB_MODEL_TOKEN] = full_count[EOB_TOKEN]; 3295 static void full_to_model_counts(vp9_coeff_count_model *model_count, argument 3303 full_to_model_count(model_count[i][j][k][l], full_count[i][j][k][l]);
|