Tabnine Logo
TimSorter.upperSaved
Code IndexAdd Tabnine to your IDE (free)

How to use
upperSaved
method
in
org.apache.lucene.util.TimSorter

Best Java code snippets using org.apache.lucene.util.TimSorter.upperSaved (Showing top 4 results out of 315)

origin: org.apache.lucene/lucene-core

int upperSaved3(int from, int to, int val) {
 int f = to - 1, t = to;
 while (f > from) {
  if (compareSaved(val, f) >= 0) {
   return upperSaved(f, t, val);
  }
  final int delta = t - f;
  t = f;
  f -= delta << 1;
 }
 return upperSaved(from, t, val);
}
origin: harbby/presto-connectors

int upperSaved3(int from, int to, int val) {
 int f = to - 1, t = to;
 while (f > from) {
  if (compareSaved(val, f) >= 0) {
   return upperSaved(f, t, val);
  }
  final int delta = t - f;
  t = f;
  f -= delta << 1;
 }
 return upperSaved(from, t, val);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.lucene

int upperSaved3(int from, int to, int val) {
 int f = to - 1, t = to;
 while (f > from) {
  if (compareSaved(val, f) >= 0) {
   return upperSaved(f, t, val);
  }
  final int delta = t - f;
  t = f;
  f -= delta << 1;
 }
 return upperSaved(from, t, val);
}
origin: org.infinispan/infinispan-embedded-query

int upperSaved3(int from, int to, int val) {
 int f = to - 1, t = to;
 while (f > from) {
  if (compareSaved(val, f) >= 0) {
   return upperSaved(f, t, val);
  }
  final int delta = t - f;
  t = f;
  f -= delta << 1;
 }
 return upperSaved(from, t, val);
}
org.apache.lucene.utilTimSorterupperSaved

Popular methods of TimSorter

  • binarySort
  • checkRange
  • compare
  • compareSaved
    Compare element i from the temporary storage with elementj from the slice to sort, similarly to #com
  • copy
    Copy data from slot src to slot dest.
  • ensureInvariants
  • exhaustStack
  • lower2
  • lowerSaved
  • lowerSaved3
  • merge
  • mergeAt
  • merge,
  • mergeAt,
  • mergeHi,
  • mergeInPlace,
  • mergeLo,
  • minRun,
  • nextRun,
  • pushRunLen,
  • reset,
  • restore

Popular in Java

  • Reactive rest calls using spring rest template
  • getExternalFilesDir (Context)
  • getSharedPreferences (Context)
  • addToBackStack (FragmentTransaction)
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Notification (javax.management)
  • Sublime Text for Python
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now