Searched refs:log (Results 1 - 25 of 95) sorted by relevance

1234

/barrelfish-2018-10-04/lib/tommath/
H A Dmess.sh2 if cvs log $1 >/dev/null 2>/dev/null; then exit 0; else echo "$1 shouldn't be here" ; exit 1; fi
/barrelfish-2018-10-04/usr/bench/rcce/lu/
H A Dnodedim.c10 dim = (int)(log(fnum)/log(2.0) + 0.00001);
/barrelfish-2018-10-04/lib/tenaciousd/
H A Dlog.c18 #include <tenaciousd/log.h>
23 #define LOG_FIRST_ENTRY_OFFSET(log) \
24 STORAGE_VSIC_ROUND(log->vsic, sizeof(struct log_header))
26 #define LOG_MIN_ENTRY_SIZE(log) \
27 STORAGE_VSIC_ROUND(log->vsic, sizeof(struct tenaciousd_log_entry))
39 static struct tenaciousd_log_entry *read_entry(struct tenaciousd_log *log, argument
42 // Allocate minimum sized log entry
44 storage_malloc(log->vsic, sizeof(struct tenaciousd_log_entry));
48 errval_t err = log->vsic->ops.read(log
94 struct tenaciousd_log *log = malloc(sizeof(struct tenaciousd_log)); local
154 tenaciousd_log_delete(struct tenaciousd_log *log) argument
184 tenaciousd_log_append(struct tenaciousd_log *log, struct tenaciousd_log_entry *entry) argument
200 tenaciousd_log_trim(struct tenaciousd_log *log, int nentries) argument
205 tenaciousd_log_begin(struct tenaciousd_log *log) argument
223 tenaciousd_log_next(struct tenaciousd_log *log, struct tenaciousd_log_iter iter) argument
241 tenaciousd_log_entry_new(struct tenaciousd_log *log, size_t *size) argument
255 tenaciousd_log_entry_resize(struct tenaciousd_log *log, struct tenaciousd_log_entry *entry, size_t *newsize) argument
270 tenaciousd_log_entry_delete(struct tenaciousd_log *log, struct tenaciousd_log_entry *entry) argument
[all...]
H A DMakefile6 #libtenaciousd.a: log.o aio_vsic.o ram_vsic.o
7 libtenaciousd.a: log.o ram_vsic.o
11 log.o: log.c
/barrelfish-2018-10-04/lib/msun/i387/
H A De_log.S39 ENTRY(log)
44 END(log)
/barrelfish-2018-10-04/include/tenaciousd/
H A Dlog.h16 #define TENACIOUSD_LOG_MIN_ENTRY_SIZE(log) \
17 (STORAGE_VSIC_ROUND(log->vsic, sizeof(struct tenaciousd_log_entry)) - sizeof(struct tenaciousd_log_entry))
43 errval_t tenaciousd_log_delete(struct tenaciousd_log *log);
45 errval_t tenaciousd_log_append(struct tenaciousd_log *log,
48 errval_t tenaciousd_log_trim(struct tenaciousd_log *log, int nentries);
50 struct tenaciousd_log_iter tenaciousd_log_begin(struct tenaciousd_log *log);
52 struct tenaciousd_log_iter tenaciousd_log_next(struct tenaciousd_log *log,
56 tenaciousd_log_entry_new(struct tenaciousd_log *log,
60 tenaciousd_log_entry_resize(struct tenaciousd_log *log,
64 void tenaciousd_log_entry_delete(struct tenaciousd_log *log,
[all...]
H A Dqueue.h50 errval_t tenaciousd_queue_add(struct tenaciousd_queue *log,
56 struct tenaciousd_queue_iter tenaciousd_queue_begin(struct tenaciousd_queue *log);
58 struct tenaciousd_queue_iter tenaciousd_queue_next(struct tenaciousd_queue *log,
/barrelfish-2018-10-04/lib/openssl-1.0.0d/demos/ssl/
H A Dinetdsrv.cpp23 { fprintf(log, "%s %d\n", (s), errno); exit(1); }
24 #define CHK_SSL(err) if ((err)==-1) { ERR_print_errors_fp(log); exit(2); }
34 FILE* log; local
36 log = fopen ("/dev/console", "a"); CHK_NULL(log);
37 fprintf (log, "inetdserv %ld\n", (long)getpid());
57 fprintf (log, "SSL connection using %s\n", SSL_get_cipher (ssl));
63 fprintf (log, "Client certificate:\n");
67 fprintf (log, "\t subject: %s\n", str);
72 fprintf (log, "\
[all...]
/barrelfish-2018-10-04/usr/bench/udp_echo/
H A Drun_multiloop.sh3 rm -f /tmp/udp_openloop.*.log
16 $client_type $port $server $request_delay $n_ops_per_client $my_starting_id > /tmp/udp_openloop.$n.log &
21 cat /tmp/udp_openloop.*.log
/barrelfish-2018-10-04/lib/acpica/tests/templates/
H A Dtemplates.sh3 rm -f *.aml *.asl *.dsl *.log
22 rm -f *.aml *.asl *.dsl *.log
36 > diff.log
47 diff -pu -I" \*" $sig.asl $sig.dsl >> diff.log
H A DMakefile8 rm -f *.asl *.aml *.dsl *.hex diff.log
/barrelfish-2018-10-04/usr/bench/tenaciousd_bench/
H A Dtenaciousd_bench.c14 #include <tenaciousd/log.h>
32 struct tenaciousd_log *log = tenaciousd_log_new(&vsa, &vsic); local
33 assert(log != NULL);
36 struct tenaciousd_log_entry *entry = tenaciousd_log_entry_new(log, &size);
45 err = tenaciousd_log_append(log, entry);
58 err = tenaciousd_log_delete(log);
/barrelfish-2018-10-04/lib/tommath/demo/
H A Dtiming.c84 FILE *log, *logb, *logc, *logd; local
108 log = fopen("logs/add.log", "w");
124 fprintf(log, "%d %9llu\n", cnt * DIGIT_BIT, tt);
125 fflush(log);
127 fclose(log);
129 log = fopen("logs/sub.log", "w");
146 fprintf(log, "%d %9llu\n", cnt * DIGIT_BIT, tt);
147 fflush(log);
[all...]
/barrelfish-2018-10-04/lib/cxx/unwind/
H A DDwarfInstructions.hpp220 const bool log = false; local
225 if (log)
232 if (log) {
247 if (log)
255 if (log)
264 if (log)
273 if (log)
282 if (log)
291 if (log)
300 if (log)
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ms/
H A Dspeed32.bat32 type speed.1 >speed.log
33 type speed.1l >>speed.log
34 perl util\sp-diff.pl speed.1l speed.2l >>speed.log
35 perl util\sp-diff.pl speed.1l speed.3l >>speed.log
36 perl util\sp-diff.pl speed.1l speed.4l >>speed.log
/barrelfish-2018-10-04/lib/openssl-1.0.0d/util/
H A Dspeed.sh6 # output when finished a file called speed.log which is the
34 cat speed.1 >speed.log
35 cat speed.1l >>speed.log
36 perl util/sp-diff.pl speed.1l speed.2l >>speed.log
37 perl util/sp-diff.pl speed.1l speed.3l >>speed.log
38 perl util/sp-diff.pl speed.1l speed.4l >>speed.log
/barrelfish-2018-10-04/lib/debug_log/
H A Ddebug_log.c10 static char log[LOG_SIZE][256]; variable
20 char *str = log[log_size++ & (LOG_SIZE - 1)];
25 len = snprintf(str, sizeof(log[0]), "\033[34m%.*s.\033[31m%u.%s\033[0m: ",
27 if (len < sizeof(log[0])) {
29 len += vsnprintf(str + len, sizeof(log[0]) - len, fmt, argptr);
53 len += vsnprintf(str + len, sizeof(log[0]) - len, format, argptr);
60 char *str = log[log_size++ & (LOG_SIZE - 1)];
120 systime_to_ns(timestamp[i]), systime_to_ns(timestamp[i] - lastts), log[i]);
147 systime_to_ns(timestamp[i]), systime_to_ns(timestamp[i] - lastts), log[i]);
/barrelfish-2018-10-04/tools/pleco/
H A DMakefile32 rm -f *.aux *.ptb *.toc *.log *.o *.hi $(patsubst %.lhs,%.tex,$(SOURCES))
/barrelfish-2018-10-04/lib/acpica/generate/linux/
H A Dgen-patch.sh56 after=`git log -1 -c ${COMMIT} --format=%H | cut -c1-8`
57 before=`git log -1 -c ${COMMIT}^1 --format=%H | cut -c1-8`
100 AUTHOR_NAME=`git log -c $1 -1 --format="%aN"`
101 AUTHOR_EMAIL=`git log -c $1 -1 --format="%aE"`
114 eval "git log -c $1 -1 --format=\"$GIT_LOG_FORMAT\""
H A Dgen-repo.sh37 version=`git log -1 -c $1 --format=%H | cut -c1-8`
/barrelfish-2018-10-04/tools/fof/
H A DMakefile44 rm -f *.aux *.ptb *.toc *.log *.o *.hi $(patsubst %.lhs,%.tex,$(SOURCES))
/barrelfish-2018-10-04/tools/fugu/
H A DMakefile38 rm -f *.aux *.ptb *.toc *.log *.o *.hi $(patsubst %.lhs,%.tex,$(SOURCES))
/barrelfish-2018-10-04/lib/libc/gmon/
H A Dgmon.c129 int log, len; local
164 log = _open("gmon.log", O_CREAT|O_TRUNC|O_WRONLY|O_CLOEXEC, 0664);
165 if (log < 0) {
166 _warn("_mcleanup: gmon.log");
171 _write(log, buf, len);
196 _write(log, buf, len);
/barrelfish-2018-10-04/lib/msun/
H A DMakefile141 lgamma.3 log.3 lrint.3 lround.3 math.3 nan.3 \
198 MLINKS+=log.3 log10.3 log.3 log10f.3 log.3 log10l.3 \
199 log.3 log1p.3 log.3 log1pf.3 log.3 log1pl.3 \
200 log.3 logf.3 log.3 logl.3 \
201 log
[all...]
/barrelfish-2018-10-04/tools/harness/tests/
H A Dblk_tests.py274 debug.log(error)
280 debug.log(error)
281 debug.log("This is good, if you can explain it! Adjust the bandwidth numbers in blk_tests.py and re-run the test.")

Completed in 143 milliseconds

1234