Searched refs:score (Results 1 - 25 of 209) sorted by relevance

123456789

/macosx-10.9.5/Chess-310.5/sjeng/
H A Dneval.c171 /* return a score for the current endgame position: */
175 int32_t score = 0; local
185 checkECache(&score, &in_cache);
189 if (white_to_move == 1) return score;
190 return -score;
244 score += 100;
245 score += swhite_pawn[i];
255 score -= 8;
259 score -= 5;
267 if (backwards) score
816 int32_t score = 0; local
1384 int32_t score = 0; local
[all...]
H A Dleval.c122 /* return a score for the current middlegame position: */
126 int32_t score = 0; local
135 checkECache(&score, &in_cache);
139 if (white_to_move == 1) return score;
140 return -score;
191 score += lcentral[i];
192 score += l_pawn_mobility(i) << 2;
193 score += (rank(i) - 2) * 8;
200 score -= 8;
204 score
[all...]
H A Deval.c373 /* return a score for the current middlegame position: */
376 int32_t score = 0; local
397 checkECache(&score, &in_cache);
401 if (white_to_move == 1) return score;
402 return -score;
467 score += 100;
468 score += white_pawn[i] >> wdev_dscale;
469 score += p_tropism[i][bking_loc];
473 score -= 100;
474 score
[all...]
H A Decache.c32 int32_t score; member in struct:__anon621
41 void storeECache(int32_t score) argument
49 ECache[index].score = score;
52 void checkECache(int32_t *score, int *in_cache) argument
67 *score = ECache[index].score;
H A Dseval.c295 /* return a score for the current middlegame position: */
299 int32_t score = 0; local
307 checkECache(&score, &in_cache);
311 if (white_to_move == 1) return score;
312 return -score;
315 score = Material;
365 score += scentral[i];
366 score += s_pawn_mobility(i);
367 score -= black_saccers(i);
375 score
[all...]
H A Dttable.c114 void QStoreTT(int score, int alpha, int beta, int best) argument
122 if (score <= alpha)
124 else if(score >= beta)
132 QS_TTable[index].Bound = score;
138 void StoreTT(int score, int alpha, int beta, int best, int threat, int depth) argument
149 ( ((DP_TTable[index].Type == UPPER) && (score > alpha))
150 || ((score > alpha) && (score < beta))
156 if (score <= alpha)
159 if (score <
220 LearnStoreTT(int score, unsigned nhash, unsigned hhash, int tomove, int best, int depth) argument
246 ProbeTT(int *score, int alpha, int beta, int *best, int *threat, int *donull, int depth) argument
332 QProbeTT(int *score, int alpha, int beta, int *best) argument
[all...]
H A Dprotos.h57 void post_thinking (int32_t score);
58 void post_fl_thinking (int32_t score, move_s *failmove);
59 void post_fh_thinking (int32_t score, move_s *failmove);
60 void post_fail_thinking(int32_t score, move_s *failmove);
109 void checkECache(int32_t *score, int *in_cache);
110 void storeECache(int32_t score);
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, in
[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);
87 draft.Bound = score;
/macosx-10.9.5/postfix-252/postfix/src/postscreen/
H A Dpostscreen_dnsbl.c28 /* psc_dnsbl_request() requests a blocklist score for the
40 /* psc_dnsbl_retrieve() retrieves the result score requested with
42 /* is an error to retrieve a score without requesting it first.
124 * blocklist score requests when the pre-handshake delays of the connections
127 * We combine requests for the same score under the client IP address in a
129 * request for a score, and it goes down with each score retrieval. Each
130 * score has one or more requestors that need to be notified when the result
143 int total; /* combined blocklist score */
144 int refcount; /* score referenc
312 PSC_DNSBL_SCORE *score; local
347 PSC_DNSBL_SCORE *score; local
437 PSC_DNSBL_SCORE *score; local
[all...]
/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDFamilyPrivate.cpp44 bool CompareProperty( IOService * owner, OSDictionary * matching, const char * key, SInt32 * score, SInt32 increment) argument
63 if (matches && score)
64 *score += increment;
75 bool CompareDeviceUsage( IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment) argument
106 if ( score && !usage )
108 *score += increment / 2;
116 if ( score )
117 *score += increment;
131 bool CompareDeviceUsagePairs( IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment) argument
152 if ( !(matches = CompareDeviceUsage(owner, pair, score, incremen
162 CompareProductID( IOService * owner, OSDictionary * matching, SInt32 * score) argument
213 CompareNumberPropertyMask( IOService *owner, OSDictionary *matching, const char *key, const char *maskKey, SInt32 *score, SInt32 increment) argument
249 CompareNumberPropertyArray( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, SInt32 * score, SInt32 increment) argument
281 CompareNumberPropertyArrayWithMask( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, const char * maskKey, SInt32 * score, SInt32 increment) argument
322 MatchPropertyTable(IOService * owner, OSDictionary * table, SInt32 * score) argument
[all...]
H A DIOHIDFamilyPrivate.h84 bool CompareProperty(IOService * owner, OSDictionary * matching, const char * key, SInt32 * score, SInt32 increment = 0);
85 bool CompareDeviceUsage( IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment = 0);
86 bool CompareDeviceUsagePairs(IOService * owner, OSDictionary * matching, SInt32 * score, SInt32 increment = 0);
87 bool CompareProductID( IOService * owner, OSDictionary * matching, SInt32 * score);
88 bool MatchPropertyTable(IOService * owner, OSDictionary * table, SInt32 * score);
89 bool CompareNumberPropertyMask( IOService *owner, OSDictionary *matching, const char *key, const char *maskKey, SInt32 *score, SInt32 increment);
90 bool CompareNumberPropertyArray( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, SInt32 * score, SInt32 increment);
91 bool CompareNumberPropertyArrayWithMask( IOService * owner, OSDictionary * matching, const char * arrayName, const char * key, const char * maskKey, SInt32 * score, SInt32 increment);
/macosx-10.9.5/xnu-2422.115.4/libkern/kmod/libkmodtest/
H A Dlibkmodtest.cpp37 SInt32 *score )
H A Dlibkmodtest.h37 SInt32 *score );
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/examples/
H A Djoke.pl18 printf "%s [%s]\n", $res->result->{title}, $res->result->{score};
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/examples/
H A Djoke.pl18 printf "%s [%s]\n", $res->result->{title}, $res->result->{score};
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/examples/
H A Djoke.pl18 printf "%s [%s]\n", $res->result->{title}, $res->result->{score};
/macosx-10.9.5/dtrace-118.1/dtrace_dof_kext/
H A Ddtrace_dof.h8 virtual IOService *probe(IOService *provider, SInt32 *score);
H A Ddtrace_dof.cpp71 IOService *com_apple_driver_dtraceDOF::probe(IOService *provider, SInt32 *score) argument
73 IOService *res = super::probe(provider, score);
/macosx-10.9.5/emacs-92/emacs/lib-src/
H A Dupdate-game-score.c1 /* update-game-score.c --- Update a score file
22 score file. It should be installed setuid, owned by an appropriate
80 fprintf (stdout, "Usage: update-game-score [-m MAX ] [ -r ] game/scorefile SCORE DATA\n");
81 fprintf (stdout, " update-game-score -h\n");
94 long score; member in struct:score_entry
228 lose_syserr ("Couldn't allocate score file");
273 read_score (f, score)
275 struct score_entry *score;
283 score
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DTouchDisambiguation.cpp75 float score = 1; local
78 score *= max((padding - abs(distance.width())) * reciprocalPadding, 0.f);
79 score *= max((padding - abs(distance.height())) * reciprocalPadding, 0.f);
81 return score;
86 float score; member in struct:WebCore::TouchTargetData
135 targetData.score = scoreTouchTarget(touchPoint, touchPointPadding, targetData.windowBoundingBox);
136 bestScore = max(bestScore, targetData.score);
143 // Currently the scoring function uses the overlap area with the fat point as the score.
145 if (it->value.score < bestScore * 0.5)
/macosx-10.9.5/procmail-14/procmail/src/
H A Dmisc.c387 { char*chp,*chp2,*startchar;double score;int scored,i,skippedempty; local
389 score=scored=0;
451 negate=scoreany=0;lscore=score;
462 { if(score>=MAX32)
535 score+=weight;
540 MIN32<score&&
541 score<MAX32&&
546 { score+=weight;weight*=xponent;
549 score+=weight/(1-xponent);
551 score
[all...]
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A DPCSCDriverBundles.cpp77 if (int32_t score = bndl->matches(device, name))
80 matchingProducts.push_back(make_pair(score, mi));
/macosx-10.9.5/cups-372.4/cups/cgi-bin/
H A Dwebsearch.c104 printf("%d|%s#%s|%s|%s\n", node->score, node->filename, node->anchor,
108 printf("%d|%s|%s|%s\n", node->score, node->filename, node->text,
/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dgnus-score.el1 ;;; gnus-score.el --- scoring code for Gnus
38 (require 'score-mode)
42 (defcustom gnus-global-score-files nil
43 "List of global score files and directories.
44 Set this variable if you want to use people's score files. One entry
45 for each score file or each score file directory. Gnus will decide
46 by itself what score files are applicable to which group.
48 Say you want to use the single score file
49 \"/ftp.gnus.org@ftp:/pub/larsi/ding/score/so
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/play/
H A Dgamegrid.el66 (defvar gamegrid-score-file-length 50
69 (defvar gamegrid-user-score-file-directory "~/.emacs.d/games"
86 (make-variable-buffer-local 'gamegrid-score-file-length)
426 ;; ;;;;;;;;;;;;;;; high score functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
428 (defun gamegrid-add-score (file score)
429 "Add the current score to the high score file.
433 the score file FILE in this directory, if it doesn't already exist. In
435 `gamegrid-user-score
[all...]

Completed in 215 milliseconds

123456789