Searched refs:guess (Results 1 - 25 of 46) sorted by relevance

12

/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/srtp/crypto/include/
H A Drdbx.h75 * rdbx_estimate_index(rdbx, guess, s)
78 * sets the contents of *guess to contain the best guess of the packet
80 * *guess and the locally stored synch info
85 xtd_seq_num_t *guess,
162 * index_guess(local, guess, s)
166 * arrived packet), sets the contents of *guess to contain the best
167 * guess of the packet index to which s corresponds, and returns the
168 * difference between *guess and *local
173 xtd_seq_num_t *guess,
[all...]
/external/v8/src/
H A Dstrtod.cc366 // The variable guess should be a close guess that is either the correct double
374 double guess) {
375 if (guess == V8_INFINITY) {
376 return guess;
379 DiyFp upper_boundary = Double(guess).UpperBoundary();
405 return guess;
407 return Double(guess).NextDouble();
408 } else if ((Double(guess).Significand() & 1) == 0) {
410 return guess;
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DSparseIntArray.java221 int high = start + len, low = start - 1, guess;
224 guess = (high + low) / 2;
226 if (a[guess] < key)
227 low = guess;
229 high = guess;
H A DSparseArray.java336 int high = start + len, low = start - 1, guess;
339 guess = (high + low) / 2;
341 if (a[guess] < key)
342 low = guess;
344 high = guess;
/external/icu4c/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/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebEditorClient.cpp702 BSTR guess; local
703 if (enumGuessesObj->Next(1, &guess, &fetched) != S_OK)
705 detail.guesses.append(String(guess, SysStringLen(guess)));
706 SysFreeString(guess);
721 BString guess(detail.guesses[i]);
722 guessesBSTRs.append(guess.release());
775 BSTR guess; local
776 if (enumGuessesObj->Next(1, &guess, &fetched) != S_OK)
778 guesses.append(String(guess, SysStringLe
[all...]
/external/chromium/sdch/open-vcdiff/packages/deb/
H A Drules14 # from having to guess our platform (since we know it already)
64 ifneq "$(wildcard /usr/share/misc/config.guess)" ""
65 cp -f /usr/share/misc/config.guess config.guess
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java24 * Uses heuristics to guess the application's private data directory.
27 public File guess() { method in class:AppDataDirGuesser
H A DDexMaker.java339 * the dex cache. If it doesn't exist, this method will attempt to guess
348 * dex files will be written. If null, this class will try to guess the
357 dexCache = new AppDataDirGuesser().guess();
/external/webkit/LayoutTests/http/tests/resources/
H A DportabilityLayer.php6 // try to guess from the environment. Since sys_get_temp_dir() doesn't return a trailing
/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/skia/src/core/
H A DSkMath.cpp377 uint32_t guess = root * root + root; local
378 guess = (guess << 1) + guess; // guess *= 3
379 if (guess < curr) {
380 curr -= guess + 1;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java423 int guess = values[guessIdx];
425 if (value <= guess) {
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DTextCheckerMac.mm269 for (NSString *guess in guesses)
270 detail.guesses.append(String(guess));
352 NSString *guess = grammarDetail.guesses[i];
353 [corrections.get() addObject:guess];
378 for (NSString *guess in stringsArray)
379 guesses.append(guess);
/external/icu4c/test/perf/collperf/
H A Dcollperf.cpp410 int guess; local
414 guess = (high + low)/2;
415 if (last_guess == guess) break; // nothing to search
417 r = (this->*fn)(random, guess);
423 high = guess;
425 low = guess;
427 last_guess = guess;
/external/skia/src/utils/
H A DSkInterpolator.cpp260 Dot14 guess = eval_cubic(t, A, B, C); local
261 if (x < guess) {
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebEditorClient.mm773 for (NSString *guess in guesses)
774 grammarDetail.guesses.append(String(guess));
814 for (NSString *guess in guesses)
815 detail.guesses.append(String(guess));
876 NSString* guess = grammarDetail.guesses[i];
877 [corrections addObject:guess];
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebEditingDelegate.idl58 HRESULT Next(ULONG celt, [out] BSTR* guess, [out] ULONG* pceltFetched);
/external/jpeg/
H A Dltconfig130 --srcdir=DIR find \`config.guess' in DIR
250 # Check for config.guess and config.sub.
253 if test -f $ac_dir/config.guess; then
259 echo "$progname: cannot find config.guess in $srcdir $srcdir/.. $srcdir/../.." 1>&2
263 ac_config_guess=$ac_aux_dir/config.guess
281 echo "$progname: cannot guess host type; you must specify one" 1>&2
/external/qemu/distrib/jpeg-6b/
H A Dltconfig130 --srcdir=DIR find \`config.guess' in DIR
250 # Check for config.guess and config.sub.
253 if test -f $ac_dir/config.guess; then
259 echo "$progname: cannot find config.guess in $srcdir $srcdir/.. $srcdir/../.." 1>&2
263 ac_config_guess=$ac_aux_dir/config.guess
281 echo "$progname: cannot guess host type; you must specify one" 1>&2
/external/libvpx/examples/includes/geshi/geshi/
H A Dabap.php49 * or something like that instead of regexp I guess.
/external/iproute2/misc/
H A Dss.c1688 int guess = slabstat.socks+slabstat.tcp_syns; local
1690 guess += slabstat.tcp_tws;
1691 if (guess > (16*1024*1024)/128)
1692 guess = (16*1024*1024)/128;
1693 guess *= 128;
1694 if (guess > bufsize)
1695 bufsize = guess;
/external/webkit/Source/WebCore/page/
H A DContextMenuController.cpp852 const String &guess = guesses[i]; local
853 if (!guess.isEmpty()) {
854 ContextMenuItem item(ActionType, ContextMenuItemTagSpellingGuess, guess);
/external/expat/
H A DMakefile74 rm -f conftools/ltmain.sh conftools/install-sh conftools/config.guess conftools/config.sub

Completed in 1002 milliseconds

12