Searched defs:guess (Results 1 - 9 of 9) sorted by relevance
/external/srtp/crypto/replay/ |
H A D | rdbx.c | 76 * 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/skia/src/utils/ |
H A D | SkInterpolator.cpp | 267 Dot14 guess = eval_cubic(t, A, B, C); local 268 if (x < guess) {
|
/external/webkit/Source/WebCore/page/ |
H A D | ContextMenuController.cpp | 852 const String &guess = guesses[i]; local 853 if (!guess.isEmpty()) { 854 ContextMenuItem item(ActionType, ContextMenuItemTagSpellingGuess, guess);
|
/external/skia/src/core/ |
H A D | SkMath.cpp | 384 uint32_t guess = root * root + root; local 385 guess = (guess << 1) + guess; // guess *= 3 386 if (guess < curr) { 387 curr -= guess + 1;
|
/external/v8/src/ |
H A D | scopes.cc | 690 // because the variable is just a guess (and may be shadowed by 699 // found is just a guess. 700 bool guess = scope_calls_eval_; local 730 // variable we may have found is just a guess. 732 guess = true; 747 // If the variable we have found is just a guess, invalidate the 750 if (guess) {
|
/external/icu4c/test/perf/collperf/ |
H A D | collperf.cpp | 410 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/webkit/Source/WebKit/win/WebCoreSupport/ |
H A D | WebEditorClient.cpp | 702 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/icu4c/test/perf/collationperf/ |
H A D | collperf.cpp | 499 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 D | ss.c | 1688 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;
|
Completed in 792 milliseconds