Home
last modified time | relevance | path

Searched refs:best (Results 1 – 25 of 149) sorted by relevance

123456

/external/tcpdump/missing/
Dinet_ntop.c117 } best, cur; in inet_ntop_v6() local
129 best.base = -1; in inet_ntop_v6()
141 if (best.base == -1 || cur.len > best.len) in inet_ntop_v6()
142 best = cur; in inet_ntop_v6()
146 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len)) in inet_ntop_v6()
147 best = cur; in inet_ntop_v6()
148 if (best.base != -1 && best.len < 2) in inet_ntop_v6()
149 best.base = -1; in inet_ntop_v6()
158 if (best.base != -1 && i >= best.base && i < (best.base + best.len)) in inet_ntop_v6()
160 if (i == best.base) in inet_ntop_v6()
[all …]
/external/ppp/pppd/plugins/pppoatm/
Dmisc.c24 int i,best; in __atmlib_fetch() local
30 best = -1; in __atmlib_fetch()
35 best = i; in __atmlib_fetch()
40 if (best > -1) (*pos) += best_len; in __atmlib_fetch()
41 return best; in __atmlib_fetch()
/external/qemu/distrib/sdl-1.2.12/src/video/x11/
DSDL_x11modes.c109 int best = -1; in set_best_resolution() local
116 best = i; in set_best_resolution()
121 if ( best < 0 || in set_best_resolution()
122 (modes[i]->hdisplay < modes[best]->hdisplay && in set_best_resolution()
123 modes[i]->vdisplay <= modes[best]->vdisplay) || in set_best_resolution()
124 (modes[i]->vdisplay < modes[best]->vdisplay && in set_best_resolution()
125 modes[i]->hdisplay <= modes[best]->hdisplay) ) { in set_best_resolution()
126 best = i; in set_best_resolution()
130 if ( best >= 0 && in set_best_resolution()
131 ((modes[best]->hdisplay != mode.hdisplay) || in set_best_resolution()
[all …]
/external/webkit/WebKit/android/nav/
DCachedRoot.cpp533 bool CachedRoot::adjustForScroll(BestData* best, CachedFrame::Direction direction, in adjustForScroll() argument
537 const CachedNode* newNode = best->mNode; in adjustForScroll()
543 if (best->bounds().intersects(mHistory->mPriorBounds) == false && in adjustForScroll()
544 checkBetween(best, direction)) in adjustForScroll()
545 newNode = best->mNode; in adjustForScroll()
546 if (findClosest && maskIfHidden(best)) { in adjustForScroll()
547 innerMove(document(), best, direction, scrollPtr, false); in adjustForScroll()
555 (best->mNavOutside && best->mWorkingOutside))) in adjustForScroll()
597 int best = INT_MAX; in findAt() local
601 const CachedNode* node = findBestAt(rect, &best, &inside, &directHit, framePtr, x, y); in findAt()
[all …]
DCachedFrame.cpp78 bool CachedFrame::checkBetween(BestData* best, Direction direction) in checkBetween() argument
80 const WebCore::IntRect& bestRect = best->bounds(); in checkBetween()
104 *best = test; in checkBetween()
274 int best = bestData.mDistance + bestData.mSideDistance; in compare()
275 if (distance > best) { in compare()
279 else if (distance < best) in compare()
281 best = bestData.mSideDistance; in compare()
282 if (testData.mSideDistance > best) { in compare()
286 if (testData.mSideDistance < best) in compare()
333 const CachedNode* CachedFrame::findBestAt(const WebCore::IntRect& rect, int* best, in findBestAt() argument
[all …]
DCachedFrame.h74 const CachedNode* findBestAt(const WebCore::IntRect& , int* best, bool* inside,
78 int* best, const CachedFrame** , int* x, int* y) const;
179 bool moveInFrame(MoveInDirection , const CachedNode* test, BestData* best,
/external/jdiff/src/jdiff/
DDiffMyers.java207 int best = 0; in diag() local
215 if (fd[fdiagoff + d] * 2 - dd > best in diag()
230 best = fd[fdiagoff + d] * 2 - dd; in diag()
236 if (best > 0) in diag()
242 best = 0; in diag()
248 if ((xlim - bd[bdiagoff + d]) * 2 + dd > best in diag()
262 best = (xlim - bd[bdiagoff + d]) * 2 + dd; in diag()
268 if (best > 0) in diag()
/external/dropbear/
DINSTALL66 same for each type. Running configure should detect the best type to use
78 problematic for devfs. In general, openpty() is the best way to allocate
79 PTYs, so it's best to try and get it working.
/external/webkit/JavaScriptCore/wtf/
DFastMalloc.cpp1280 Span *best = NULL; in AllocLarge() local
1287 if ((best == NULL) in AllocLarge()
1288 || (span->length < best->length) in AllocLarge()
1289 || ((span->length == best->length) && (span->start < best->start))) { in AllocLarge()
1290 best = span; in AllocLarge()
1301 if ((best == NULL) in AllocLarge()
1302 || (span->length < best->length) in AllocLarge()
1303 || ((span->length == best->length) && (span->start < best->start))) { in AllocLarge()
1304 best = span; in AllocLarge()
1310 if (best != NULL) { in AllocLarge()
[all …]
/external/openssl/crypto/des/
DREADME16 The best way to build this library is to build it as part of SSLeay.
36 These routines are best compiled with gcc or any other good
DINSTALL19 run './des_opts' to determin the best compile time options.
26 The file options.txt has the options listed for best speed on quite a
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_video.c461 int best; in SDL_GetVideoMode() local
469 best=0; in SDL_GetVideoMode()
474 if ((sizes[i]->w <= sizes[best]->w) || (sizes[i]->h <= sizes[best]->h)) { in SDL_GetVideoMode()
476 if ((sizes[i]->w * sizes[i]->h) <= (sizes[best]->w * sizes[best]->h)) { in SDL_GetVideoMode()
477 best=i; in SDL_GetVideoMode()
484 *w=sizes[best]->w; in SDL_GetVideoMode()
485 *h=sizes[best]->h; in SDL_GetVideoMode()
/external/freetype/src/autofit/
Dafcjk.c370 FT_Pos best = 0xFFFFU; in af_cjk_hints_compute_edges() local
388 if ( dist < edge_distance_threshold && dist < best ) in af_cjk_hints_compute_edges()
418 best = dist; in af_cjk_hints_compute_edges()
680 FT_Pos best = 64 + 32 + 2; in af_cjk_snap_width() local
695 if ( dist < best ) in af_cjk_snap_width()
697 best = dist; in af_cjk_snap_width()
/external/tcpdump/
DMakefile-devel-adds3 # From autoconf.info . Works best with GNU Make.
/external/freetype/src/pshinter/
Dpshglob.c90 FT_Pos best = 64 + 32 + 2;
104 if ( dist < best )
106 best = dist;
/external/openssl/crypto/ripemd/
DREADME5 off the pace since I only get 1050 cycles, while the best is 1013.
/external/openssl/crypto/des/asm/
Dreadme68 which seems ok. For the pentium, this system appears to be the best.
80 So the technique that produces the best results on a pentium, according to
122 273,000 per second. He had a previous version at 250,000 and the best
/external/icu4c/data/mappings/
Dmacos-6_2-10.4.ucm19 # |1 for the best fallback codepage byte sequence.
21 # |3 for the best reverse fallback Unicode scaler value
Dmacos-0_2-10.2.ucm19 # |1 for the best fallback codepage byte sequence.
21 # |3 for the best reverse fallback Unicode scaler value
Dmacos-35-10.2.ucm19 # |1 for the best fallback codepage byte sequence.
21 # |3 for the best reverse fallback Unicode scaler value
Dmacos-7_3-10.2.ucm19 # |1 for the best fallback codepage byte sequence.
21 # |3 for the best reverse fallback Unicode scaler value
Dmacos-29-10.2.ucm19 # |1 for the best fallback codepage byte sequence.
21 # |3 for the best reverse fallback Unicode scaler value
/external/expat/vms/
Ddescrip.mms35 # GZIP_ENV = --best
/external/bzip2/
Dbzip2.txt182 -1 (or --fast) to -9 (or --best)
185 See MEMORY MANAGEMENT below. The --fast and --best
188 cantly faster. And --best merely selects the
196 --repetitive-fast --repetitive-best
339 form best on machines with very large caches.
/external/speex/libspeex/
Djitter.c185 int best = 0; in compute_opt_delay() local
231 best = latest; in compute_opt_delay()
257 deltaT = best-worst; in compute_opt_delay()

123456