Home
last modified time | relevance | path

Searched refs:next_i (Results 1 – 14 of 14) sorted by relevance

/external/brotli/c/fuzz/
Ddecode_fuzzer.c35 size_t next_i = i + addend; in LLVMFuzzerTestOneInput() local
36 if (next_i > size) in LLVMFuzzerTestOneInput()
37 next_i = size; in LLVMFuzzerTestOneInput()
38 size_t avail_in = next_i - i; in LLVMFuzzerTestOneInput()
39 i = next_i; in LLVMFuzzerTestOneInput()
/external/grpc-grpc/src/core/lib/iomgr/
Dtimer_heap.cc57 uint32_t next_i = right_child < length && first[left_child]->deadline > in adjust_downwards() local
61 if (t->deadline <= first[next_i]->deadline) break; in adjust_downwards()
62 first[i] = first[next_i]; in adjust_downwards()
64 i = next_i; in adjust_downwards()
/external/llvm/utils/
Dshuffle_fuzz.py164 """.strip('\n') % dict(subst, i=i, next_i=i + 1, j=j, next_j=j + 1,
224 """ % dict(subst, i=i, next_i=i + 1)
241 """ % dict(subst, i=i, next_i=i + 1, r=r)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dshuffle_fuzz.py164 """.strip('\n') % dict(subst, i=i, next_i=i + 1, j=j, next_j=j + 1,
224 """ % dict(subst, i=i, next_i=i + 1)
241 """ % dict(subst, i=i, next_i=i + 1, r=r)
/external/tensorflow/tensorflow/python/debug/cli/
Dstepper_cli.py213 next_i = -1
215 if (i > next_i and (self._sorted_nodes[i] in self._completed_nodes) or
217 next_i = i
219 next_i += 1
220 self._next = next_i
/external/libxcam/xcore/interface/
Dstitcher.cpp443 uint32_t next_i = 0; in update_copy_areas() local
445 next_i = (i + 1 ) % _camera_num; in update_copy_areas()
447 const CenterMark &mark_right = _center_marks[next_i]; in update_copy_areas()
474 right.in_idx = next_i; in update_copy_areas()
478 right.in_area.pos_y = _crop_info[next_i].top; in update_copy_areas()
479 …right.in_area.height = _round_view_slices[next_i].height - _crop_info[next_i].top - _crop_info[nex… in update_copy_areas()
/external/tensorflow/tensorflow/compiler/xla/service/
Dar_crs_combiner.cc300 auto next_i = instr_i->users()[0]; in KeepProvablyEqualInstructionGroups() local
303 if (!InstructionsComputeSameValue(next_0, next_i, &visited_pairs)) { in KeepProvablyEqualInstructionGroups()
311 next_i = next_i->users()[0]; in KeepProvablyEqualInstructionGroups()
Dtriangular_solve_expander.cc233 auto next_i = i + ScalarLike(i, 1); in InvertDiagonalBlocks() local
234 Tuple(bodyb.get(), {next_i, body_out, body_input}); in InvertDiagonalBlocks()
/external/libtextclassifier/annotator/duration/
Dduration.cc118 const int next_i = FindDurationStartingAt(context, tokens, i, &span); in FindAll() local
119 if (next_i != i) { in FindAll()
121 i = next_i; in FindAll()
/external/tensorflow/tensorflow/python/ops/
Dfunctional_ops.py460 next_i = i - 1
462 next_i = i + 1
463 return (next_i, flat_a_out, tas)
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DMutableCodePointTrie.java968 int next_i = i + inc; in compactWholeDataBlocks() local
969 for (int j = i + 1; j < next_i; ++j) { in compactWholeDataBlocks()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DMutableCodePointTrie.java961 int next_i = i + inc; in compactWholeDataBlocks() local
962 for (int j = i + 1; j < next_i; ++j) { in compactWholeDataBlocks()
/external/icu/icu4c/source/common/
Dumutablecptrie.cpp961 int32_t next_i = i + inc; in compactWholeDataBlocks() local
962 for (int32_t j = i + 1; j < next_i; ++j) { in compactWholeDataBlocks()
/external/tensorflow/tensorflow/python/kernel_tests/
Dcontrol_flow_ops_py_test.py314 next_i = control_flow_ops.next_iteration(add_i)
315 merge_i.op._update_input(1, next_i)
341 next_i = control_flow_ops.next_iteration(add_i)
342 merge_i.op._update_input(1, next_i)