/external/tcpdump/missing/ |
D | inet_ntop.c | 117 } 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/openssh/openbsd-compat/ |
D | inet_ntop.c | 119 struct { int base, len; } best, cur; in inet_ntop6() local 132 best.base = -1; in inet_ntop6() 142 if (best.base == -1 || cur.len > best.len) in inet_ntop6() 143 best = cur; in inet_ntop6() 149 if (best.base == -1 || cur.len > best.len) in inet_ntop6() 150 best = cur; in inet_ntop6() 152 if (best.base != -1 && best.len < 2) in inet_ntop6() 153 best.base = -1; in inet_ntop6() 162 if (best.base != -1 && i >= best.base && in inet_ntop6() 163 i < (best.base + best.len)) { in inet_ntop6() [all …]
|
/external/ppp/pppd/plugins/pppoatm/ |
D | misc.c | 24 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/clang/utils/ |
D | FindSpecRefs | 604 best = None 625 if best is None or dist < best[0]: 626 best = (dist, (section, name, page)) 627 return best[1] 637 best = None 641 if best is None or dist < best[0]: 642 best = (dist,'l'+m.group(1)) 644 if best is not None: 645 return best[1]
|
D | CmpDriver | 48 best = None 52 if best is None or candidate < best[0]: 53 best = (candidate, a_0, j) 54 a = best[1]
|
/external/openssh/ |
D | dh.c | 129 int best, bestcount, which; in choose_dh() local 141 best = bestcount = 0; in choose_dh() 152 if ((dhg.size > wantbits && dhg.size < best) || in choose_dh() 153 (dhg.size > best && best < wantbits)) { in choose_dh() 154 best = dhg.size; in choose_dh() 157 if (dhg.size == best) in choose_dh() 174 dhg.size != best || in choose_dh()
|
/external/libvpx/vp8/encoder/ |
D | encodemb.c | 288 int best; in optimize_b() local 362 best = rd_cost1 < rd_cost0; in optimize_b() 366 tokens[i][0].rate = base_bits + (best ? rate1 : rate0); in optimize_b() 367 tokens[i][0].error = d2 + (best ? error1 : error0); in optimize_b() 371 best_mask[0] |= best << i; in optimize_b() 428 best = rd_cost1 < rd_cost0; in optimize_b() 436 tokens[i][1].rate = base_bits + (best ? rate1 : rate0); in optimize_b() 437 tokens[i][1].error = d2 + (best ? error1 : error0); in optimize_b() 439 tokens[i][1].token =best?t1:t0; in optimize_b() 441 best_mask[1] |= best << i; in optimize_b() [all …]
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
D | SDL_x11modes.c | 109 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/chromium/net/http/ |
D | http_auth.cc | 36 scoped_ptr<HttpAuthHandler> best; in ChooseBestChallenge() local 49 if (cur.get() && (!best.get() || best->score() < cur->score()) && in ChooseBestChallenge() 51 best.swap(cur); in ChooseBestChallenge() 53 handler->swap(best); in ChooseBestChallenge()
|
/external/quake/quake/src/QW/server/ |
D | pr_exec.c | 224 dfunction_t *f, *best; in PR_Profile_f() local 233 best = NULL; in PR_Profile_f() 240 best = f; in PR_Profile_f() 243 if (best) in PR_Profile_f() 246 Con_Printf ("%7i %s\n", best->profile, PR_GetString(best->s_name)); in PR_Profile_f() 248 best->profile = 0; in PR_Profile_f() 250 } while (best); in PR_Profile_f()
|
/external/jdiff/src/jdiff/ |
D | DiffMyers.java | 207 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/quake/quake/src/WinQuake/ |
D | pr_exec.cpp | 224 dfunction_t *f, *best; in PR_Profile_f() local 233 best = NULL; in PR_Profile_f() 240 best = f; in PR_Profile_f() 243 if (best) in PR_Profile_f() 246 Con_Printf ("%7i %s\n", best->profile, pr_strings+best->s_name); in PR_Profile_f() 248 best->profile = 0; in PR_Profile_f() 250 } while (best); in PR_Profile_f()
|
/external/llvm/lib/Analysis/ |
D | PathProfileInfo.cpp | 124 BallLarusEdge* best = 0; in getNextEdge() local 131 (!best || (best->getWeight() < (*next)->getWeight())) ) // best one? in getNextEdge() 132 best = *next; in getNextEdge() 135 return best; in getNextEdge()
|
/external/jmonkeyengine/engine/src/core-data/Common/ShaderLib/ |
D | Bump.glsllib | 14 // best depth 27 if (d <= h) bd = depth; // best depth
|
/external/quake/quake/src/QW/progs/ |
D | items.qc | 32 local float best; 102 local float best; 548 local float hadammo, best, new, old; 563 // if the player was using his best weapon, change up to the new one if better 566 best = W_BestWeapon(); 792 local float best; 799 // if the player was using his best weapon, change up to the new one if better 802 best = W_BestWeapon(); 849 if ( other.weapon == best ) 1085 local float best; [all …]
|
/external/dropbear/ |
D | INSTALL | 66 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/libvpx/examples/ |
D | postproc.txt | 34 best postprocessing filter on a frame by frame basis based on the amount 37 necessary to provide the best quality frame. This example gives the
|
/external/llvm/test/YAMLParser/ |
D | spec-02-27.data | 29 Late afternoon is best.
|
/external/dnsmasq/contrib/openvpn/ |
D | README | 28 > Anyway, my question: is there a way to have the best of both worlds? 32 > My current best idea on how to solve this problem is modifying the
|
/external/bluetooth/glib/ |
D | MAINTAINERS | 12 questions are best directed to the mailing list gtk-devel-list@gnome.org.
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/ |
D | v8-raytrace.js | 677 var best = new Flog.RayTracer.IntersectionInfo(); 678 best.distance = 2000; 685 if(info.isHit && info.distance >= 0 && info.distance < best.distance){ 686 best = info; 691 best.hitCount = hits; 692 return best;
|
/external/v8/benchmarks/ |
D | raytrace.js | 682 var best = new Flog.RayTracer.IntersectionInfo(); 683 best.distance = 2000; 690 if(info.isHit && info.distance >= 0 && info.distance < best.distance){ 691 best = info; 696 best.hitCount = hits; 697 return best;
|
/external/openssl/crypto/des/ |
D | README | 16 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
|
/external/tcpdump/ |
D | Makefile-devel-adds | 3 # From autoconf.info . Works best with GNU Make.
|
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/ |
D | v8-raytrace.js | 708 var best = new Flog.RayTracer.IntersectionInfo(); 709 best.distance = 2000; 716 if(info.isHit && info.distance >= 0 && info.distance < best.distance){ 717 best = info; 722 best.hitCount = hits; 723 return best;
|