Lines Matching refs:stop
99 * origin = first entry with positive offset (or stop if there is no such entry)
100 * stop - 1 = last entry
105 const struct unwind_idx *stop)
110 __func__, addr, start, origin, stop);
118 stop = origin;
120 /* positive offsets: [origin; stop) */
126 while (start < stop - 1) {
127 const struct unwind_idx *mid = start + ((stop - start) >> 1);
135 stop = mid;
153 const struct unwind_idx *start, const struct unwind_idx *stop)
155 pr_debug("%s(%p, %p)\n", __func__, start, stop);
156 while (start < stop) {
157 const struct unwind_idx *mid = start + ((stop - start) >> 1);
164 stop = mid;
166 pr_debug("%s -> %p\n", __func__, stop);
167 return stop;
197 table->stop);
542 tab->stop = (const struct unwind_idx *)(start + size);
543 tab->origin = unwind_find_origin(tab->start, tab->stop);