HomeSort by: relevance | last modified time | path
    Searched refs:outcome (Results 1 - 25 of 39) sorted by relevancy

1 2

  /src/external/gpl3/gcc.old/dist/gcc/
gimple-predict.h 47 /* Return the outcome of GIMPLE_PREDICT statement GS. */
57 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
60 gimple_predict_set_outcome (gimple *gs, enum prediction outcome)
63 if (outcome == TAKEN)
70 predict.def, OUTCOME is NOT_TAKEN or TAKEN. */
73 gimple_build_predict (enum br_predictor predictor, enum prediction outcome)
79 gimple_predict_set_outcome (p, outcome);
ree.cc 769 bool outcome; local
774 outcome = make_defs_and_copies_lists (cand->insn, set_pat, state);
776 if (!outcome)
  /src/external/gpl3/gcc/dist/gcc/
gimple-predict.h 47 /* Return the outcome of GIMPLE_PREDICT statement GS. */
57 /* Set the outcome of GIMPLE_PREDICT statement GS to OUTCOME. */
60 gimple_predict_set_outcome (gimple *gs, enum prediction outcome)
63 if (outcome == TAKEN)
70 predict.def, OUTCOME is NOT_TAKEN or TAKEN. */
73 gimple_build_predict (enum br_predictor predictor, enum prediction outcome)
79 gimple_predict_set_outcome (p, outcome);
ree.cc 769 bool outcome; local
774 outcome = make_defs_and_copies_lists (cand->insn, set_pat, state);
776 if (!outcome)
  /src/external/bsd/zstd/dist/programs/
benchfn.c 64 int BMK_isSuccessful_runOutcome(BMK_runOutcome_t outcome)
66 return outcome.error_tag_never_ever_use_directly == 0;
69 /* warning : this function will stop program execution if outcome is invalid !
70 * check outcome validity first, using BMK_isValid_runResult() */
71 BMK_runTime_t BMK_extract_runTime(BMK_runOutcome_t outcome)
73 CONTROL(outcome.error_tag_never_ever_use_directly == 0);
74 return outcome.internal_never_ever_use_directly;
77 size_t BMK_extract_errorResult(BMK_runOutcome_t outcome)
79 CONTROL(outcome.error_tag_never_ever_use_directly != 0);
80 return outcome.error_result_never_ever_use_directly
94 BMK_runOutcome_t outcome; local
    [all...]
benchfn.h 40 * type expressing the outcome of a benchmark run by BMK_benchFunction(),
42 * benchmark outcome can be invalid if errorFn is provided.
115 int BMK_isSuccessful_runOutcome(BMK_runOutcome_t outcome);
121 BMK_runTime_t BMK_extract_runTime(BMK_runOutcome_t outcome);
129 size_t BMK_extract_errorResult(BMK_runOutcome_t outcome);
benchzstd.h 60 int BMK_isSuccessful_benchOutcome(BMK_benchOutcome_t outcome);
66 BMK_benchResult_t BMK_extract_benchResult(BMK_benchOutcome_t outcome);
benchzstd.c 372 int BMK_isSuccessful_benchOutcome(BMK_benchOutcome_t outcome)
374 return outcome.tag == 0;
377 BMK_benchResult_t BMK_extract_benchResult(BMK_benchOutcome_t outcome)
379 assert(outcome.tag == 0);
380 return outcome.internal_never_use_directly;
825 BMK_benchOutcome_t outcome = local
836 outcome = BMK_benchMemAdvancedNoAlloc(
890 return outcome;
  /src/external/bsd/libevent/dist/test/
tinytest.c 80 enum outcome { SKIP=2, OK=1, FAIL=0 }; enum
81 static enum outcome cur_test_outcome = 0;
107 static enum outcome
154 static enum outcome
158 int outcome; local
181 outcome = cur_test_outcome;
185 outcome = FAIL;
188 return outcome;
194 static enum outcome
276 perror("write outcome to pipe")
316 enum outcome outcome; local
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/test/
tinytest.c 81 enum outcome { SKIP=2, OK=1, FAIL=0 }; enum
82 static enum outcome cur_test_outcome = 0;
108 static enum outcome
155 static enum outcome
159 int outcome; local
182 outcome = cur_test_outcome;
186 outcome = FAIL;
189 return outcome;
195 static enum outcome
277 perror("write outcome to pipe")
317 enum outcome outcome; local
    [all...]
  /src/games/gomoku/
main.c 252 declare_winner(int outcome, const enum input_source *input, player_color color)
256 switch (outcome) {
276 struct outcome { struct
281 static struct outcome
317 int outcome; local
318 if ((outcome = makemove(color, curmove)) != MOVEOK)
319 return (struct outcome){ outcome, color };
381 struct outcome outcome = main_game_loop(input) local
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/
conftest.py 146 self._outcomes[key] = report.outcome
150 def outcome(self): member in class:NodeResult
151 for outcome in self._outcomes.values():
152 if outcome != "passed":
153 return outcome
161 outcome = yield
162 report = outcome.get_result()
164 # Set the test outcome in session, so we can access it from module-level
367 message = f"{result.outcome.upper()} {node}"
373 failed = any(res.outcome == "failed" for res in test_results.values()
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
memory.d 924 enum Outcome
933 static Outcome outcome;
937 outcome = Outcome.notCalled;
944 outcome = Outcome.calledFromDruntime;
969 outcome = Outcome.calledManually;
979 assert(Resource.outcome == Outcome.notCalled)
    [all...]
  /src/usr.bin/make/unit-tests/
parse-var.mk 96 # its value would not influence the outcome of the condition, or during the
var-eval-short.mk 68 # right-hand side of the '&&' cannot influence the outcome of the condition.
  /src/external/bsd/zstd/dist/tests/
paramgrill.c 1689 BMK_benchOutcome_t const outcome = BMK_benchMemInvertible(buf, ctx, local
1692 if (!BMK_isSuccessful_benchOutcome(outcome)) return 1;
1693 *resultPtr = BMK_extract_benchResult(outcome);
1710 BMK_benchOutcome_t const outcome = BMK_benchMemInvertible(buf, ctx, BASE_CLEVEL, &cParams, BMK_both, 2); local
1711 if (!BMK_isSuccessful_benchOutcome(outcome)) {
1715 benchres = BMK_extract_benchResult(outcome);
  /src/external/bsd/zstd/dist/contrib/largeNbDicts/
largeNbDicts.c 720 BMK_runOutcome_t const outcome = BMK_benchTimedFn(benchState, bp); local
721 CONTROL(BMK_isSuccessful_runOutcome(outcome));
723 BMK_runTime_t const result = BMK_extract_runTime(outcome);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
srp-mdns-proxy.c 3618 instance_outcome_t outcome = missed; local
3671 outcome = compare_instance(host->instances->vec[i], new_host, host,
3673 if (outcome != missed) {
3682 outcome = compare_instance(host->update->add_instances->vec[i], new_host, host,
3684 if (outcome != missed) {
3693 if (outcome == conflict) {
3777 if (outcome == missed) {
3787 outcome = missed;
3807 outcome = match;
3834 if (outcome == missed)
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 419 DeathTestOutcome outcome() const { return outcome_; } function in class:testing::internal::DeathTestImpl
552 // outcome: An enumeration describing how the death test
579 switch (outcome()) {
642 // 5. The parent reads child's output through the pipe (outcome code and
679 // outcome data member.
876 // outcome data member.
1095 // outcome data member.
  /src/usr.bin/make/
test-variants.mk 135 # macro, or at least none that affect the outcome of the tests.
  /src/external/mpl/dhcp/dist/common/
tree.c 2138 int outcome = 0; local
2151 outcome = concat_dclists(result, &data, &other);
2152 if (outcome == 0) {
2173 return (outcome);
  /src/external/historical/nawk/dist/
FIXES.1e 626 should not be blamed for the outcome. according to posix, "." is the
  /src/external/gpl2/gmake/dist/config/
texinfo.tex 1193 % (and related messages, the final outcome is that it is up to the TeX
  /src/external/bsd/am-utils/dist/doc/
texinfo.tex 1113 % related messages. The final outcome is that it is up to the TeX user
  /src/external/bsd/flex/dist/build-aux/
texinfo.tex 1113 % related messages. The final outcome is that it is up to the TeX user

Completed in 76 milliseconds

1 2