Home
last modified time | relevance | path

Searched refs:guess (Results 1 – 25 of 220) sorted by relevance

123456789

/external/srtp/crypto/replay/
Drdbx.c125 xtd_seq_num_t *guess, in index_guess() argument
136 uint32_t guess_roc = ((high32(*guess) << 16) | in index_guess()
137 (low32(*guess) >> 16)); in index_guess()
138 uint16_t guess_seq = (uint16_t) (low32(*guess)); in index_guess()
140 uint32_t guess_roc = (uint32_t)(*guess >> 16); in index_guess()
141 uint16_t guess_seq = (uint16_t) *guess; in index_guess()
175 *guess = make64(guess_roc >> 16, in index_guess()
178 *guess = (((uint64_t) guess_roc) << 16) | guess_seq; in index_guess()
330 xtd_seq_num_t *guess, in rdbx_estimate_index() argument
348 return index_guess(&rdbx->index, guess, s); in rdbx_estimate_index()
[all …]
/external/v8/src/
Dstrtod.cc374 double guess) { in BignumStrtod() argument
375 if (guess == V8_INFINITY) { in BignumStrtod()
376 return guess; in BignumStrtod()
379 DiyFp upper_boundary = Double(guess).UpperBoundary(); in BignumStrtod()
405 return guess; in BignumStrtod()
407 return Double(guess).NextDouble(); in BignumStrtod()
408 } else if ((Double(guess).Significand() & 1) == 0) { in BignumStrtod()
410 return guess; in BignumStrtod()
412 return Double(guess).NextDouble(); in BignumStrtod()
434 double guess; in Strtod() local
[all …]
/external/icu4c/test/perf/collationperf/
Dcollperf.cpp499 int guess = -1; in doBinarySearch() local
502 if (newGuess == guess) in doBinarySearch()
504 guess = newGuess; in doBinarySearch()
506 r = (*pf)((gSortedLines[line])->name, (gSortedLines[guess])->name); in doBinarySearch()
512 hi = guess; in doBinarySearch()
514 lo = guess; in doBinarySearch()
537 int guess = -1; in doBinarySearch() local
540 if (newGuess == guess) in doBinarySearch()
542 guess = newGuess; in doBinarySearch()
546 … ri = strcmp((gSortedLines[line])->icuSortKey, (gSortedLines[guess])->icuSortKey); in doBinarySearch()
[all …]
/external/llvm/test/CodeGen/AArch64/
Datomic-ops.ll17 ; w0 below is a reasonable guess but could change: it certainly comes into the
37 ; w0 below is a reasonable guess but could change: it certainly comes into the
57 ; w0 below is a reasonable guess but could change: it certainly comes into the
77 ; x0 below is a reasonable guess but could change: it certainly comes into the
97 ; w0 below is a reasonable guess but could change: it certainly comes into the
117 ; w0 below is a reasonable guess but could change: it certainly comes into the
137 ; w0 below is a reasonable guess but could change: it certainly comes into the
157 ; x0 below is a reasonable guess but could change: it certainly comes into the
177 ; w0 below is a reasonable guess but could change: it certainly comes into the
197 ; w0 below is a reasonable guess but could change: it certainly comes into the
[all …]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DSparseIntArray.java239 int high = start + len, low = start - 1, guess; in binarySearch() local
242 guess = (high + low) / 2; in binarySearch()
244 if (a[guess] < key) in binarySearch()
245 low = guess; in binarySearch()
247 high = guess; in binarySearch()
DSparseArray.java336 int high = start + len, low = start - 1, guess; in binarySearch() local
339 guess = (high + low) / 2; in binarySearch()
341 if (a[guess] < key) in binarySearch()
342 low = guess; in binarySearch()
344 high = guess; in binarySearch()
/external/libvpx/libvpx/vp8/common/
Dmfqe.c101 unsigned int guess; in int_sqrt() local
106 guess=0; in int_sqrt()
109 guess |= (1<<p); in int_sqrt()
110 if (x<guess*guess) in int_sqrt()
111 guess -= (1<<p); in int_sqrt()
115 return guess+(guess*guess+guess+1<=x); in int_sqrt()
/external/webkit/Source/WebKit/win/WebCoreSupport/
DWebEditorClient.cpp702 BSTR guess; in checkGrammarOfString() local
703 if (enumGuessesObj->Next(1, &guess, &fetched) != S_OK) in checkGrammarOfString()
705 detail.guesses.append(String(guess, SysStringLen(guess))); in checkGrammarOfString()
706 SysFreeString(guess); in checkGrammarOfString()
721 BString guess(detail.guesses[i]); in updateSpellingUIWithGrammarString() local
722 guessesBSTRs.append(guess.release()); in updateSpellingUIWithGrammarString()
775 BSTR guess; in getGuessesForWord() local
776 if (enumGuessesObj->Next(1, &guess, &fetched) != S_OK) in getGuessesForWord()
778 guesses.append(String(guess, SysStringLen(guess))); in getGuessesForWord()
779 SysFreeString(guess); in getGuessesForWord()
/external/llvm/test/Transforms/SimplifyCFG/
D2005-12-03-IncorrectPHIFold.ll38 %guess = alloca %struct.anon* ; <%struct.anon**> [#uses=7]
76 call void @init_num( %struct.anon** %guess )
87 store %struct.anon* %tmp42, %struct.anon** %guess
90 call void @int2num( %struct.anon** %guess, i32 10 )
101 %tmp53 = load %struct.anon** %guess ; <%struct.anon*> [#uses=1]
103 call void @bc_raise( %struct.anon* %tmp53, %struct.anon* %tmp54, %struct.anon** %guess, i32 %max )
117 %tmp88 = load %struct.anon** %guess ; <%struct.anon*> [#uses=1]
120 call void @free_num( %struct.anon** %guess )
/external/ipsec-tools/src/racoon/
DTODO28 how to guess a reasonable phase 1 SA lifetime
29 (hardcoded default? guess from phase 2 lifetime?)
30 guess what kind of ID payload to use
31 guess what kind of authentication to be used
32 guess phase 1 DH group (for aggressive mode, we cannot negotiate it)
33 guess if we need phase 2 PFS or not (we cannot negotiate it. so
35 guess how we should negotiate lifetime
37 guess which mode to use for phase 1 negotiation (is main mode useful?
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowSparseArray.java338 int high = start + len, low = start - 1, guess; in binarySearch() local
341 guess = (high + low) / 2; in binarySearch()
343 if (a[guess] < key) in binarySearch()
344 low = guess; in binarySearch()
346 high = guess; in binarySearch()
/external/srtp/crypto/include/
Drdbx.h85 xtd_seq_num_t *guess,
173 xtd_seq_num_t *guess,
/external/llvm/cmake/modules/
DGetHostTriple.cmake2 # Invokes config.guess
18 set(config_guess ${LLVM_MAIN_SRC_DIR}/autoconf/config.guess)
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DOutputFinisher.java498 private Dop findOpcodeForInsn(DalvInsn insn, Dop guess) { in findOpcodeForInsn() argument
505 while (guess != null) { in findOpcodeForInsn()
506 if (guess.getFormat().isCompatible(insn)) { in findOpcodeForInsn()
510 guess = Dops.getNextOrNull(guess, dexOptions); in findOpcodeForInsn()
513 return guess; in findOpcodeForInsn()
/external/skia/legacy/src/core/
DSkMath.cpp377 uint32_t guess = root * root + root; in SkCubeRootBits() local
378 guess = (guess << 1) + guess; // guess *= 3 in SkCubeRootBits()
379 if (guess < curr) { in SkCubeRootBits()
380 curr -= guess + 1; in SkCubeRootBits()
/external/skia/src/core/
DSkMath.cpp376 uint32_t guess = root * root + root; in SkCubeRootBits() local
377 guess = (guess << 1) + guess; // guess *= 3 in SkCubeRootBits()
378 if (guess < curr) { in SkCubeRootBits()
379 curr -= guess + 1; in SkCubeRootBits()
/external/chromium/sdch/open-vcdiff/packages/deb/
Drules65 cp -f /usr/share/misc/config.guess config.guess
/external/open-vcdiff/packages/deb/
Drules65 cp -f /usr/share/misc/config.guess config.guess
/external/eigen/Eigen/src/misc/
DSparseSolve.h88 solve_retval_with_guess(const DecompositionType& dec, const Rhs& rhs, const Guess& guess)
89 : m_dec(dec), m_rhs(rhs), m_guess(guess)
/external/webkit/Source/WebKit2/UIProcess/mac/
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/dexmaker/src/dx/java/com/android/dx/util/
DIntList.java423 int guess = values[guessIdx]; in binarysearch() local
425 if (value <= guess) { in binarysearch()
/external/iptables/
D.gitignore25 /config.guess
/external/icu4c/test/perf/collperf/
Dcollperf.cpp419 int guess; in binary_search() local
423 guess = (high + low)/2; in binary_search()
424 if (last_guess == guess) break; // nothing to search in binary_search()
426 r = (this->*fn)(random, guess); in binary_search()
432 high = guess; in binary_search()
434 low = guess; in binary_search()
436 last_guess = guess; in binary_search()
/external/libvpx/libvpx/nestegg/
D.gitignore14 config.guess
/external/valgrind/main/docs/internals/
Darm_thumb_notes_gdbserver.txt34 to guess the next program counter after this instruction.
35 Such a guess is needed for gdb commands such as next/step/...
63 The logic of gdb to guess the next PC in thumb code is not working

123456789