| 786 | } |
| 787 | |
| 788 | U32 LASreadPoint::search_chunk_table(const U32 index, const U32 lower, const U32 upper) |
| 789 | { |
| 790 | if (lower + 1 == upper) return lower; |
| 791 | U32 mid = (lower+upper)/2; |
| 792 | if (index >= chunk_totals[mid]) |
| 793 | return search_chunk_table(index, mid, upper); |
| 794 | else |
| 795 | return search_chunk_table(index, lower, mid); |
| 796 | } |
| 797 | |
| 798 | LASreadPoint::~LASreadPoint() |
| 799 | { |
nothing calls this directly
no outgoing calls
no test coverage detected