Searched refs:best (Results 1 - 25 of 147) sorted by relevance

123456

/macosx-10.10/bind9-45.101/bind9/lib/isc/
H A Dinet_ntop.c121 struct { int base, len; } best, cur; local
133 best.base = -1;
143 if (best.base == -1 || cur.len > best.len)
144 best = cur;
150 if (best.base == -1 || cur.len > best.len)
151 best = cur;
153 if (best.base != -1 && best
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/lwres/
H A Dlwinetntop.c118 struct { int base, len; } best, cur; local
130 best.base = -1;
131 best.len = 0;
142 if (best.base == -1 || cur.len > best.len)
143 best = cur;
149 if (best.base == -1 || cur.len > best.len)
150 best = cur;
152 if (best
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dinet_ntop.c93 } best, cur; local
105 best.base = -1;
107 best.len = 0;
118 if(best.base == -1 || cur.len > best.len)
119 best = cur;
123 if((cur.base != -1) && (best.base == -1 || cur.len > best.len))
124 best = cur;
125 if(best
[all...]
/macosx-10.10/ntp-92/lib/isc/
H A Dinet_ntop.c125 struct { int base, len; } best, cur; local
137 best.base = -1;
147 if (best.base == -1 || cur.len > best.len)
148 best = cur;
154 if (best.base == -1 || cur.len > best.len)
155 best = cur;
157 if (best.base != -1 && best
[all...]
/macosx-10.10/rsync-45/rsync/lib/
H A Dinet_ntop.c108 struct { int base, len; } best, cur; local
120 best.base = -1;
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
[all...]
/macosx-10.10/lukemftp-14/tnftp/libnetbsd/
H A Dinet_ntop.c118 struct { int base, len; } best, cur; local
131 best.base = -1;
133 best.len = -1; /* XXX gcc */
143 if (best.base == -1 || cur.len > best.len)
144 best = cur;
150 if (best.base == -1 || cur.len > best.len)
151 best = cur;
153 if (best
[all...]
/macosx-10.10/xnu-2782.1.97/libkern/net/
H A Dinet_ntop.c101 struct { int base, len; } best, cur; local
115 best.base = -1;
116 best.len = 0;
127 if (best.base == -1 || cur.len > best.len)
128 best = cur;
134 if (best.base == -1 || cur.len > best.len)
135 best = cur;
137 if (best
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dinet_ntop.c119 struct { int base, len; } best, cur; local
132 best.base = -1;
142 if (best.base == -1 || cur.len > best.len)
143 best = cur;
149 if (best.base == -1 || cur.len > best.len)
150 best = cur;
152 if (best.base != -1 && best
[all...]
/macosx-10.10/tcpdump-61/tcpdump/missing/
H A Dinet_ntop.c117 } 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
[all...]
/macosx-10.10/apr-32/apr/apr/network_io/unix/
H A Dinet_ntop.c150 struct { int base, len; } best = {-1, 0}, cur = {-1, 0}; local
181 if (best.base == -1 || cur.len > best.len) {
182 best = cur;
192 if (best.base == -1 || cur.len > best.len) {
193 best = cur;
196 if (best.base != -1 && best.len < 2) {
197 best
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dspell.c67 char guess[PATH_MAX + 1], best[PATH_MAX + 1]; local
92 if (mindist(newname, guess, best) >= 3)
98 for (p = best; *np = *p++; np++)
107 mindist(dir, guess, best)
110 char *best;
134 strcpy(best, dp->d_name);
143 if (best[0] == '.' && best[1] == '\0')
/macosx-10.10/vim-55/runtime/indent/
H A Dmail.vim11 " What works best is auto-indenting, disable other indenting.
/macosx-10.10/cups-408/cups/cups/
H A Ddest-options.c1716 *best = NULL, /* Best matching entry */ local
1748 * Found an exact match, let's figure out the best margins for the flags
1752 best = mdb;
1760 if (best->left != 0 || best->right != 0 || best->top != 0 || best->bottom != 0)
1766 if (mdb->left <= best->left && mdb->right <= best->right &&
1767 mdb->top <= best
[all...]
/macosx-10.10/Chess-310.6/sjeng/
H A Dprotos.h49 void order_moves (move_s moves[], int32_t move_ordering[], int32_t see_values[], int num_moves, int best);
116 void StoreTT(int score, int alpha, int beta, int best , int threat, int depth);
117 void QStoreTT(int score, int alpha, int beta, int best);
118 int ProbeTT(int *score, int alpha, int beta, int *best, int *threat, int *donull, int depth);
119 int QProbeTT(int *score, int alpha, int beta, int *best);
120 void LearnStoreTT(int score, unsigned nhash, unsigned hhash, int tomove, int best, int depth);
123 void Learn(int score, int best, int depth);
H A Dttable.c114 void QStoreTT(int score, int alpha, int beta, int best) argument
131 QS_TTable[index].Bestmove = best;
138 void StoreTT(int score, int alpha, int beta, int best, int threat, int depth) argument
180 DP_TTable[index].Bestmove = best;
211 AS_TTable[index].Bestmove = best;
220 void LearnStoreTT(int score, unsigned nhash, unsigned hhash, int tomove, int best, int depth) argument
239 AS_TTable[index].Bestmove = best;
246 int ProbeTT(int *score, int alpha, int beta, int *best, int *threat, int *donull, int depth) argument
279 *best = DP_TTable[index].Bestmove;
286 *best
332 QProbeTT(int *score, int alpha, int beta, int *best) argument
[all...]
H A Dlearn.c40 void Learn(int score, int best, int depth) argument
46 printf("Learning score: %d best: %d depth:%d hash: %X\n", score, best, depth, hash);
88 draft.Bestmove = best;
H A Dsegtb.c272 signed char best, res; local
322 best = -128;
338 if(res > best) best = res;
341 if(best > 0 || (best < 0 && !unknown))
343 if (table[addr] != best) f = TRUE;
344 table[addr] = best;
373 signed char best, res; local
432 best
[all...]
/macosx-10.10/groff-38/groff/src/devices/xditview/
H A Dfont.c58 DviFontSizeList *fs, *best = 0, *smallest = 0; local
67 for (best = f->sizes; best; best = best->next)
68 if (best->size == decipointsize)
69 return best;
70 best = (DviFontSizeList *) XtMalloc(sizeof *best);
71 best
[all...]
/macosx-10.10/cups-408/cups/scheduler/
H A Dauth.c286 * Locate the best matching location so we know what kind of
290 con->best = cupsdFindBest(con->uri, httpGetState(con->http));
294 "[Client %d] con->uri=\"%s\", con->best=%p(%s)",
295 con->number, con->uri, con->best,
296 con->best ? con->best->location : "");
298 if (con->best && con->best->type != CUPSD_AUTH_NONE)
300 if (con->best->type == CUPSD_AUTH_DEFAULT)
303 type = con->best
1462 *best; /* Best match for location so far */ local
1613 cupsd_location_t *best; /* Best match for location so far */ local
[all...]
/macosx-10.10/apache-793/httpd/modules/mappers/
H A Dmod_negotiation.c193 * present in the best matching Accept header element.
1435 * language_quality - the 'q' value of the 'best' matching language
1442 * When we do the variant checking for best variant, we use language
1510 * of the 'best' matching language on the Accept-Language
1511 * header. The 'best' match is the language on Accept-Language
1517 * When a variant has multiple languages, we find the 'best'
1560 /* Variant has one (or more) languages. Look for the best
1563 * Accept-Language header. The best match is the longest
1565 * best q value from all the languages on the variant
1575 accept_rec *best local
2040 is_variant_better_rvsa(negotiation_state *neg, var_rec *variant, var_rec *best, float *p_bestq) argument
2107 is_variant_better(negotiation_state *neg, var_rec *variant, var_rec *best, float *p_bestq) argument
2287 var_rec *best; local
2971 var_rec *best; local
3086 var_rec *best, *avail_recs; local
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Ddh.c134 int best, bestcount, which; local
146 best = bestcount = 0;
157 if ((dhg.size > wantbits && dhg.size < best) ||
158 (dhg.size > best && best < wantbits)) {
159 best = dhg.size;
162 if (dhg.size == best)
179 dhg.size != best ||
/macosx-10.10/ksh-23/ksh/src/lib/libast/astsa/
H A Dstrmatch.c83 Group_t best; member in struct:__anon9309
286 if (!pc && (!mp->best.next_s || (flags & STR_MAXIMAL) && mp->current.next_s > mp->best.next_s || !(flags & STR_MAXIMAL) && mp->current.next_s < mp->best.next_s))
287 mp->best = mp->current;
334 if (!pc && (!mp->best.next_s || (flags & STR_MAXIMAL) && olds > mp->best.next_s || !(flags & STR_MAXIMAL) && olds < mp->best.next_s))
336 mp->best = mp->current;
337 mp->best
[all...]
/macosx-10.10/cups-408/cups/backend/
H A Ddnssd.c420 cups_device_t *best; /* Best matching device */ local
426 best = NULL, count = 0, sent = 0;
496 if (!best)
497 best = device;
498 else if (_cups_strcasecmp(best->name, device->name) ||
499 _cups_strcasecmp(best->domain, device->domain))
501 unquote(uriName, best->fullName, sizeof(uriName));
503 if (best->uuid)
506 best->cups_shared ? "/cups?uuid=%s" : "/?uuid=%s",
507 best
[all...]
/macosx-10.10/CPANInternal-159.1/IO-KQueue-0.34/
H A Dconst-c.inc28 /* Offset 7 gives the best switch position. */
116 /* Offset 5 gives the best switch position. */
194 /* Offset 9 gives the best switch position. */
282 /* Offset 7 gives the best switch position. */
358 /* Offset 5 gives the best switch position. */
387 /* Offset 3 gives the best switch position. */
428 /* Offset 3 gives the best switch position. */
457 /* Offset 6 gives the best switch position. */
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_termcap.c125 int best = 0; local
128 if (LAST_SEQ < MyCache[best].sequence) {
129 best = CacheInx;
132 CacheInx = best;

Completed in 467 milliseconds

123456