Home
last modified time | relevance | path

Searched refs:high_start (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/builtins/
Dtyped-array.tq178 let high_start: Smi = to - 1; // Lower bound of elems greater than pivot.
185 // From idx to high_start are elements that haven"t been compared yet.
186 for (let idx: Smi = low_end + 1; idx < high_start; idx++) {
200 high_start--;
201 if (high_start == idx) {
206 const top_elem: Object = Load(context, array, high_start);
215 const high_start_value: Object = Load(context, array, high_start);
217 Store(context, array, high_start, element);
230 if ((to - high_start) < (low_end - from)) {
232 context, array, high_start, to, comparefn, Load, Store);
[all …]
/external/v8/src/js/
Darray.js641 var high_start = to - 1; // Lower bound of elements greater than pivot.
647 partition: for (var i = low_end + 1; i < high_start; i++) {
656 high_start--;
657 if (high_start == i) break partition;
658 var top_elem = a[high_start];
661 a[i] = a[high_start];
662 a[high_start] = element;
671 if (to - high_start < low_end - from) {
672 QuickSort(a, high_start, to);
676 from = high_start;
/external/ltp/testcases/realtime/func/pi_perf/
Dpi_perf.c173 nsec_t high_start, high_end, high_get_lock; in high_prio_thread() local
188 high_start = rt_gettime(); in high_prio_thread()