Home
last modified time | relevance | path

Searched refs:check_index (Results 1 – 4 of 4) sorted by relevance

/external/autotest/server/site_tests/video_PlaybackQuality/
Dvideo_PlaybackQuality.py176 check_index = 0
182 check_index = (check_index + 1) % len(self.EXPECTED_RGB)
188 color_name = self.EXPECTED_RGB[check_index][0]
189 expected_rgb = self.EXPECTED_RGB[check_index][1]
228 previous_index = ((check_index + len(self.EXPECTED_RGB) - 1)
231 check_index = previous_index
233 check_index = (check_index + 1) % len(self.EXPECTED_RGB)
/external/tensorflow/tensorflow/core/kernels/
Dmap_stage_op.cc164 Status check_index(const Tensor& key, std::size_t index) in check_index() function in tensorflow::__anon07039e130111::StagingMap
185 TF_RETURN_IF_ERROR(check_index(key, index)); in copy_or_move_tensors()
276 TF_RETURN_IF_ERROR(check_index(key, index)); in put_incomplete()
298 TF_RETURN_IF_ERROR(check_index(key, index)); in put_incomplete()
/external/llvm-project/polly/lib/External/isl/
Disl_list_templ.c131 static isl_stat FN(LIST(EL),check_index)(__isl_keep LIST(EL) *list, int index) in FN() argument
270 if (FN(LIST(EL),check_index)(list, index) < 0) in FN()
297 if (FN(LIST(EL),check_index)(list, index) < 0) in LIST()
330 if (FN(LIST(EL),check_index)(list, index) < 0) in FN()
/external/python/cpython3/Python/
Dcompile.c4047 check_index(struct compiler *c, expr_ty e, expr_ty s) in check_index() function
5378 if (!check_index(c, e->v.Subscript.value, e->v.Subscript.slice)) { in compiler_subscript()