HomeSort by relevance Sort by last modified time
    Searched defs:best (Results 1 - 25 of 36) sorted by null

1 2

  /external/ppp/pppd/plugins/pppoatm/
misc.c 24 int i,best; local
30 best = -1;
35 best = i;
40 if (best > -1) (*pos) += best_len;
41 return best;
  /bionic/libc/inet/
inet_ntop.c 105 struct { int base, len; } best, cur; local
118 best.base = -1;
119 best.len = 0;
130 if (best.base == -1 || cur.len > best.len)
131 best = cur;
137 if (best.base == -1 || cur.len > best.len)
138 best = cur;
140 if (best.base != -1 && best.len < 2
    [all...]
  /external/chromium/net/http/
http_auth.cc 41 scoped_refptr<HttpAuthHandler> best; local
48 if (cur && (!best || best->score() < cur->score()))
49 best.swap(cur);
51 handler->swap(best);
  /external/tcpdump/missing/
inet_ntop.c 117 } best, cur; local
129 best.base = -1;
141 if (best.base == -1 || cur.len > best.len)
142 best = cur;
146 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len))
147 best = cur;
148 if (best.base != -1 && best.len < 2
    [all...]
  /frameworks/base/core/java/android/content/
SyncQueue.java 131 SyncOperation best = null; local
149 // if the unsyncable state differs, make the current the best if it is unsyncable
150 // else, if the expedited state differs, make the current the best if it is expedited
151 // else, make the current the best if it is earlier than the best
152 if (best == null
154 ? (best.expedited == op.expedited
158 best = op;
163 if (best == null) {
166 return Pair.create(best, bestRunTime)
    [all...]
  /frameworks/base/core/java/android/text/util/
Rfc822Tokenizer.java 216 int best = 0; local
230 best = i;
235 return best;
  /external/quake/quake/src/WinQuake/
pr_exec.cpp 224 dfunction_t *f, *best; local
233 best = NULL;
240 best = f;
243 if (best)
246 Con_Printf ("%7i %s\n", best->profile, pr_strings+best->s_name);
248 best->profile = 0;
250 } while (best);
  /external/quake/quake/src/QW/server/
pr_exec.c 224 dfunction_t *f, *best; local
233 best = NULL;
240 best = f;
243 if (best)
246 Con_Printf ("%7i %s\n", best->profile, PR_GetString(best->s_name));
248 best->profile = 0;
250 } while (best);
  /frameworks/base/core/java/android/util/
TimeUtils.java 49 TimeZone best = null; local
92 if (best == null) {
97 best = tz;
111 return best;
  /dalvik/vm/reflect/
Proxy.c 454 bool best, dupe; local
461 * assignable to our return type, then we're not the best.
467 best = true;
487 best = false;
492 * If this is the best of a set of duplicates, copy it over and
499 if (best) {
500 LOGV("BEST %d %s.%s -> %d\n", i,
577 LOGV("BEST not %d\n", i);
    [all...]
  /external/libvpx/vp8/encoder/
encodemb.c 275 int best; local
344 /* And pick the best. */
345 best = rd_cost1 < rd_cost0;
349 tokens[i][0].rate = base_bits + (best ? rate1 : rate0);
350 tokens[i][0].error = d2 + (best ? error1 : error0);
354 best_mask[0] |= best << i;
410 /* And pick the best. */
411 best = rd_cost1 < rd_cost0;
419 tokens[i][1].rate = base_bits + (best ? rate1 : rate0);
420 tokens[i][1].error = d2 + (best ? error1 : error0)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11modes.c 109 int best = -1; local
116 best = i;
121 if ( best < 0 ||
122 (modes[i]->hdisplay < modes[best]->hdisplay &&
123 modes[i]->vdisplay <= modes[best]->vdisplay) ||
124 (modes[i]->vdisplay < modes[best]->vdisplay &&
125 modes[i]->hdisplay <= modes[best]->hdisplay) ) {
126 best = i;
130 if ( best >= 0 &&
131 ((modes[best]->hdisplay != mode.hdisplay) |
    [all...]
SDL_x11video.c 1310 int best = 0; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DisplaySettings.java 133 int best = 0; local
137 if (val <= animations && val > best) {
138 best = val;
  /external/bluetooth/glib/tests/
queue-test.c 87 gint *best = user_data; local
90 if (element > *best)
91 *best = element;
97 gint *best = user_data; local
100 if (element < *best)
101 *best = element;
  /external/freetype/src/autofit/
afcjk.c 373 FT_Pos best = 0xFFFFU; local
391 if ( dist < edge_distance_threshold && dist < best )
421 best = dist;
683 FT_Pos best = 64 + 32 + 2; local
698 if ( dist < best )
700 best = dist;
    [all...]
aflatin.c 1448 FT_Pos best = 64 + 32 + 2; local
    [all...]
  /external/jdiff/src/jdiff/
DiffMyers.java 207 int best = 0; local
215 if (fd[fdiagoff + d] * 2 - dd > best
222 /* We have a good enough best diagonal;
230 best = fd[fdiagoff + d] * 2 - dd;
236 if (best > 0)
242 best = 0;
248 if ((xlim - bd[bdiagoff + d]) * 2 + dd > best
252 /* We have a good enough best diagonal;
262 best = (xlim - bd[bdiagoff + d]) * 2 + dd;
268 if (best > 0
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_video.c 461 int best; local
469 best=0;
473 /* Mode with any dimension smaller or equal than current best ? */
474 if ((sizes[i]->w <= sizes[best]->w) || (sizes[i]->h <= sizes[best]->h)) {
476 if ((sizes[i]->w * sizes[i]->h) <= (sizes[best]->w * sizes[best]->h)) {
477 best=i;
484 *w=sizes[best]->w;
485 *h=sizes[best]->h
    [all...]
  /external/speex/libspeex/
jitter.c 185 int best = 0; local
231 best = latest;
257 deltaT = best-worst;
260 /*fprintf(stderr, "auto_tradeoff = %d (%d %d %d)\n", jitter->auto_tradeoff, best, worst, i);*/
521 /* Searching for the packet that fits best */
  /external/tremolo/Tremolo/
vorbisfile.c 1193 ogg_int64_t best=begin; local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
OpenWnnClauseConverterJAJP.java 179 /* there may be no way to be the best sequence from the 'start' */
184 /* there may be no way to be the best sequence from the 'start' */
215 /* update the best sub-sentence on the cache buffer */
349 /* reserve only the best clause */
350 WnnClause best = (WnnClause)clauseList.get(0); local
351 if (best.frequency < clause.frequency) {
  /device/samsung/crespo/alsa-lib/src/pcm/
pcm_params.c 818 unsigned int best = *val, saved_min; local
825 if (best > INT_MAX)
826 best = INT_MAX;
827 min = max = best;
857 if (boundary_nearer(max, maxdir, best, valdir, min, mindir)) {
882 nearest to BEST after VAL (on equal difference values less than BEST are
891 unsigned int best, int bestdir,
902 if (best > INT_MAX)
903 best = INT_MAX
1007 unsigned int best = snd_interval_min(it), cur, prev; local
    [all...]
  /external/quake/quake/src/QW/client/
gl_draw.c 123 int best, best2; local
128 best = BLOCK_HEIGHT;
136 if (scrap_allocated[texnum][i+j] >= best)
144 *y = best = best2;
148 if (best + h > BLOCK_HEIGHT)
152 scrap_allocated[texnum][*x + i] = best + h;
    [all...]
gl_rsurf.c 1435 int best, best2; local
1440 best = BLOCK_HEIGHT;
1448 if (allocated[texnum][i+j] >= best)
1456 *y = best = best2;
1460 if (best + h > BLOCK_HEIGHT)
1464 allocated[texnum][*x + i] = best + h;
    [all...]

Completed in 476 milliseconds

1 2