Home
last modified time | relevance | path

Searched refs:statistic_t (Results 1 – 10 of 10) sorted by relevance

/dports/games/ldmud/ldmud-3.3.720/src/
H A Dbackend.h33 extern statistic_t stat_last_processed;
34 extern statistic_t stat_last_data_cleaned;
35 extern statistic_t stat_in_list;
41 extern statistic_t stat_load;
42 extern statistic_t stat_compile;
55 extern void update_statistic (statistic_t * pStat, long number);
56 extern void update_statistic_avg (statistic_t * pStat, long number);
57 extern double relate_statistics (statistic_t sStat, statistic_t sRef);
H A Dbackend.c125 statistic_t stat_last_processed = { 0, 0, 0.0 };
126 statistic_t stat_last_data_cleaned = { 0, 0, 0.0 };
127 statistic_t stat_in_list = { 0, 0, 0.0 };
152 statistic_t stat_load = { 0, 0, 0.0 };
157 statistic_t stat_compile = { 0, 0, 0.0 };
175 update_statistic (statistic_t * pStat, long number) in update_statistic()
200 update_statistic_avg (statistic_t * pStat, long number) in update_statistic_avg()
216 relate_statistics (statistic_t sStat, statistic_t sRef) in relate_statistics()
H A Dtypedefs.h37 typedef struct statistic_s statistic_t; /* backend.h */ typedef
H A Dinterpret.h127 extern statistic_t stat_total_evalcost;
128 extern statistic_t stat_eval_duration;
H A Dslaballoc.c661 statistic_t stat_free; /* Weighted small free search steps statistics. */
H A Dinterpret.c729 statistic_t stat_total_evalcost = { 0 };
730 statistic_t stat_eval_duration = { 0 };
/dports/math/yices/yices-2.6.2/src/mcsat/utils/
H A Dstatistics.c33 statistic_t* prev, *current; in statistics_destruct()
46 statistic_t* new; in statistics_new_int()
48 new = safe_malloc(sizeof(statistic_t)); in statistics_new_int()
61 statistic_t* new; in statistics_new_avg()
63 new = safe_malloc(sizeof(statistic_t)); in statistics_new_avg()
77 statistic_t *current; in statistics_print()
H A Dstatistics.h44 typedef struct statistic_s statistic_t; typedef
54 statistic_t* next;
58 statistic_t* first;
/dports/net/dante/dante-1.4.3/include/
H A Dsockd.h1869 } statistic_t; typedef
2008 statistic_t stat; /* some statistics. */
/dports/games/ldmud/ldmud-3.3.720/
H A DCHANGELOG958 added missing initializers to some statistic_t variables.