OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:new_stats
(Results
1 - 2
of
2
) sorted by null
/packages/experimental/procstatlog/
procstatlog.c
313
static void diff_stats(struct data *old_stats, struct data *
new_stats
) {
314
while (old_stats->name != NULL ||
new_stats
->name != NULL) {
318
} else if (
new_stats
->name == NULL) {
321
compare = compare_data(old_stats,
new_stats
);
331
//
new_stats
is new
332
if (
new_stats
->value != NULL) {
333
printf("%s + %s\n",
new_stats
->name,
new_stats
->value);
335
++
new_stats
;
338
if (
new_stats
->value == NULL)
393
struct data *
new_stats
= read_stats(argv + 2, argc - 2);
local
[
all
...]
/external/valgrind/unittest/
linear_solver.h
236
Vector
new_stats
(M - count_easy_param);
238
new_stats
[m] = diff_stats[new_m_to_old[m]];
239
CHECK(
new_stats
[m] >= 0.0);
245
Vector new_param = EstimateParameters(new_m,
new_stats
, rel_diff, iter_count);
Completed in 1779 milliseconds