Searched defs:guess (Results 1 - 25 of 26) sorted by relevance

12

/external/smali/util/src/test/java/org/jf/util/
H A DLinearSearchTest.java96 private void doTest(List<Integer> list, int key, int guess) { argument
99 Assert.assertEquals(expectedIndex, LinearSearch.linearSearch(list, Ordering.<Integer>natural(), key, guess));
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java25 * Uses heuristics to guess the application's private data directory.
28 public File guess() { method in class:AppDataDirGuesser
/external/chromium_org/third_party/libsrtp/srtp/crypto/replay/
H A Drdbx.c76 * index_guess(&local, &guess, seq_from_packet). This function
77 * returns the difference of the guess and the local value. The local
78 * xtd_seq_num_t can be moved forward to the guess using the function
79 * index_advance(&guess, delta), where delta is the difference.
111 * index_guess(local, guess, s)
115 * (from a newly arrived packet), sets the contents of *guess to
116 * contain the best guess of the packet index to which s corresponds,
117 * and returns the difference between *guess and *local
125 xtd_seq_num_t *guess,
136 uint32_t guess_roc = ((high32(*guess) << 1
124 index_guess(const xtd_seq_num_t *local, xtd_seq_num_t *guess, sequence_number_t s) argument
320 rdbx_estimate_index(const rdbx_t *rdbx, xtd_seq_num_t *guess, sequence_number_t s) argument
[all...]
/external/eigen/Eigen/src/misc/
H A DSparseSolve.h105 solve_retval_with_guess(const DecompositionType& dec, const Rhs& rhs, const Guess& guess) argument
106 : m_dec(dec), m_rhs(rhs), m_guess(guess)
/external/srtp/crypto/replay/
H A Drdbx.c76 * index_guess(&local, &guess, seq_from_packet). This function
77 * returns the difference of the guess and the local value. The local
78 * xtd_seq_num_t can be moved forward to the guess using the function
79 * index_advance(&guess, delta), where delta is the difference.
111 * index_guess(local, guess, s)
115 * (from a newly arrived packet), sets the contents of *guess to
116 * contain the best guess of the packet index to which s corresponds,
117 * and returns the difference between *guess and *local
125 xtd_seq_num_t *guess,
136 uint32_t guess_roc = ((high32(*guess) << 1
124 index_guess(const xtd_seq_num_t *local, xtd_seq_num_t *guess, sequence_number_t s) argument
329 rdbx_estimate_index(const rdbx_t *rdbx, xtd_seq_num_t *guess, sequence_number_t s) argument
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkInterpolator.cpp256 Dot14 guess = eval_cubic(t, A, B, C); local
257 if (x < guess) {
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DOutputFinisher.java488 * opcode as a first "best guess" and then pessimizes from there
492 * @param guess {@code null-ok;} the current guess as to the best
498 private Dop findOpcodeForInsn(DalvInsn insn, Dop guess) { argument
500 * Note: The initial guess might be null, meaning that an
505 while (guess != null) {
506 if (guess.getFormat().isCompatible(insn)) {
510 guess = Dops.getNextOrNull(guess, dexOptions);
513 return guess;
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dmfqe.c101 unsigned int guess; local
106 guess=0;
109 guess |= (1<<p);
110 if (x<guess*guess)
111 guess -= (1<<p);
114 /* choose between guess or guess+1 */
115 return guess+(guess*gues
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dmfqe.c101 unsigned int guess; local
106 guess=0;
109 guess |= (1<<p);
110 if (x<guess*guess)
111 guess -= (1<<p);
114 /* choose between guess or guess+1 */
115 return guess+(guess*gues
[all...]
/external/skia/src/utils/
H A DSkInterpolator.cpp256 Dot14 guess = eval_cubic(t, A, B, C); local
257 if (x < guess) {
/external/chromium_org/third_party/icu/source/test/perf/collperf/
H A Dcollperf.cpp419 int guess; local
423 guess = (high + low)/2;
424 if (last_guess == guess) break; // nothing to search
426 r = (this->*fn)(random, guess);
432 high = guess;
434 low = guess;
436 last_guess = guess;
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dsysinfo.cc228 static int cpuinfo_num_cpus = 1; // Conservative guess
253 const int64 guess = int64(multiplier * (CycleClock::Now() - start_ticks)); local
254 return guess;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dsysinfo.cc213 static int cpuinfo_num_cpus = 1; // Conservative guess
238 const int64 guess = int64(multiplier * (CycleClock::Now() - start_ticks)); local
239 return guess;
/external/icu/icu4c/source/test/perf/collperf/
H A Dcollperf.cpp419 int guess; local
423 guess = (high + low)/2;
424 if (last_guess == guess) break; // nothing to search
426 r = (this->*fn)(random, guess);
432 high = guess;
434 low = guess;
436 last_guess = guess;
/external/chromium_org/third_party/icu/source/test/perf/collationperf/
H A Dcollperf.cpp499 int guess = -1; local
502 if (newGuess == guess)
504 guess = newGuess;
506 r = (*pf)((gSortedLines[line])->name, (gSortedLines[guess])->name);
512 hi = guess;
514 lo = guess;
537 int guess = -1; local
540 if (newGuess == guess)
542 guess = newGuess;
546 ri = strcmp((gSortedLines[line])->icuSortKey, (gSortedLines[guess])
588 int guess = -1; local
639 int guess = -1; local
[all...]
/external/icu/icu4c/source/test/perf/collationperf/
H A Dcollperf.cpp499 int guess = -1; local
502 if (newGuess == guess)
504 guess = newGuess;
506 r = (*pf)((gSortedLines[line])->name, (gSortedLines[guess])->name);
512 hi = guess;
514 lo = guess;
537 int guess = -1; local
540 if (newGuess == guess)
542 guess = newGuess;
546 ri = strcmp((gSortedLines[line])->icuSortKey, (gSortedLines[guess])
588 int guess = -1; local
639 int guess = -1; local
[all...]
/external/iproute2/misc/
H A Dss.c1724 int guess = slabstat.socks+slabstat.tcp_syns; local
1726 guess += slabstat.tcp_tws;
1727 if (guess > (16*1024*1024)/128)
1728 guess = (16*1024*1024)/128;
1729 guess *= 128;
1730 if (guess > bufsize)
1731 bufsize = guess;
/external/chromium_org/third_party/libxml/src/
H A DHTMLparser.c510 xmlChar * guess; local
513 guess = htmlFindEncoding(ctxt);
514 if (guess == NULL) {
519 ctxt->input->encoding = guess;
520 handler = xmlFindCharEncodingHandler((const char *) guess);
525 "Unsupported encoding %s", guess, NULL);
/external/libxml2/
H A DHTMLparser.c513 xmlChar * guess; local
516 guess = htmlFindEncoding(ctxt);
517 if (guess == NULL) {
522 ctxt->input->encoding = guess;
523 handler = xmlFindCharEncodingHandler((const char *) guess);
528 "Unsupported encoding %s", guess, NULL);
/external/robolectric/lib/main/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/accessibilityservice/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...

Completed in 911 milliseconds

12