Searched refs:stop (Results 1 - 25 of 92) sorted by relevance

1234

/barrelfish-master/usr/bench/net_latency/
H A Dsleep.c48 uint64_t stop = bench_tsc(); local
49 while ((stop - start) < cycles) {
52 stop = bench_tsc();
/barrelfish-master/usr/drivers/e10k/
H A Dsleep.c47 uint64_t stop = bench_tsc(); local
48 while ((stop - start) < cycles) {
51 stop = bench_tsc();
/barrelfish-master/usr/drivers/xeon_phi/
H A Dsleep.c46 uint64_t stop = bench_tsc(); local
47 while ((stop - start) < cycles) {
50 stop = bench_tsc();
/barrelfish-master/usr/mem_serv_dist/
H A Dsleep.c47 uint64_t stop = bench_tsc(); local
48 while ((stop - start) < cycles) {
51 stop = bench_tsc();
/barrelfish-master/usr/tests/bulk_transfer/
H A Dsleep.c46 uint64_t stop = bench_tsc(); local
47 while ((stop - start) < cycles) {
50 stop = bench_tsc();
/barrelfish-master/lib/libc/regex/
H A Dengine.c105 static const char *dissect(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst);
106 static const char *backref(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst, sopno lev, int);
107 static const char *fast(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst);
108 static const char *slow(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst);
109 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft);
123 static void at(struct match *m, const char *title, const char *start, const char *stop, sopno startst, sopno stopst);
164 const char *stop; local
178 stop = string + pmatch[0].rm_eo;
181 stop = start + strlen(start);
183 if (stop < star
370 dissect(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst) argument
557 backref(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst, sopno lev, int rec) argument
765 fast( struct match *m, const char *start, const char *stop, sopno startst, sopno stopst) argument
871 slow( struct match *m, const char *start, const char *stop, sopno startst, sopno stopst) argument
980 step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft) argument
1133 at( struct match *m, const char *title, const char *start, const char *stop, sopno startst, sopno stopst) argument
[all...]
/barrelfish-master/usr/tests/thcminitest/
H A Dthcminitest.c64 debug_printf("Finished tests: sending stop request\n");
65 cl.send.stop(&cl);
71 bool stop = false; local
72 while (!stop) {
75 .ping=1, .stop=1});
87 stop = 1;
/barrelfish-master/usr/eclipseclp/icparc_solvers/rxspencer/
H A Dengine.c81 char *stop; local
88 stop = string + pmatch[0].rm_eo;
91 stop = start + strlen(start);
93 if (stop < start)
98 for (dp = start; dp < stop; dp++)
99 if (*dp == g->must[0] && stop - dp >= g->mlen &&
102 if (dp == stop) /* we didn't find g->must */
113 m->endp = stop;
123 endp = fast(m, start, stop, gf, gl);
135 endp = slow(m, m->coldp, stop, g
[all...]
/barrelfish-master/usr/tests/net_tests/nfs_throughput/
H A Dnfs_cat.c68 // record stop time
69 uint64_t stop = rdtsc(); local
71 double speed = ((filesize/in_seconds(stop - start))/(1024 * 1024));
76 filesize/(double)(1024 * 1024), in_seconds(stop - start),
/barrelfish-master/usr/eclipseclp/GecodeInterface/
H A Dgfd.hpp137 Search::NodeStop* ns; ///< Used node stop object
138 Search::FailStop* fs; ///< Used fail stop object
139 Search::TimeStop* ts; ///< Used time stop object
140 // Search::MemoryStop* ms; ///< Used memory stop object
143 /// Initialize stop object
158 virtual bool stop(const Search::Statistics& s, const Search::Options& o) { function in class:Cutoff
161 ((ns != NULL) && ns->stop(s,o)) ||
162 ((fs != NULL) && fs->stop(s,o)) ||
163 // ((ms != NULL) && ms->stop(s,o)) ||
164 ((ts != NULL) && ts->stop(
[all...]
/barrelfish-master/usr/vmkitmon/
H A Dvmkitmon.c66 uint64_t stop = bench_tsc(); local
67 while ((stop - start) < cycles) {
70 stop = bench_tsc();
/barrelfish-master/lib/cxx/unwind/
H A DUnwindLevel1.c41 // Walk each frame looking for a place to stop.
90 // If there is a personality routine, ask it if it will want to stop at
104 // stop search and remember stack pointer at the frame
140 // Walk each frame until we reach where search phase said to stop.
208 // Phase 1 said we would stop at this frame, but we did not...
210 "stop here, but now in phase2 it did not stop here");
248 _Unwind_Stop_Fn stop, void *stop_parameter) {
251 // Walk each frame until we reach where search phase said to stop
279 // Call stop functio
246 unwind_phase2_forced(unw_context_t *uc, unw_cursor_t *cursor, _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
408 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
[all...]
H A DUnwind-seh.cpp243 _Unwind_Stop_Fn stop, void *stop_parameter) {
247 // Walk each frame until we reach where search phase said to stop
275 // Call stop function at each frame.
279 (*stop)(1, action, exception_object->exception_class, exception_object,
282 "unwind_phase2_forced(ex_ojb=%p): stop function returned %d",
286 "unwind_phase2_forced(ex_ojb=%p): stopped by stop function",
328 // Call stop function one last time and tell it we've reached the end
330 _LIBUNWIND_TRACE_UNWINDING("unwind_phase2_forced(ex_ojb=%p): calling stop "
335 (*stop)(1, lastAction, exception_object->exception_class, exception_object,
410 /// Unwinds stack, calling "stop" functio
241 unwind_phase2_forced(unw_context_t *uc, _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
413 _Unwind_ForcedUnwind(_Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
[all...]
H A DUnwind-sjlj.c114 // walk each frame looking for a place to stop
126 // if there is a personality routine, ask it if it will want to stop at this
139 // stop search and remember function context
172 // walk each frame until we reach where search phase said to stop
205 // phase 1 said we would stop at this frame, but we did not...
207 "stop here, but now if phase2 it did not stop here");
239 _Unwind_Stop_Fn stop, void *stop_parameter) {
240 // walk each frame until we reach where search phase said to stop
253 // call stop functio
238 unwind_phase2_forced(struct _Unwind_Exception *exception_object, _Unwind_Stop_Fn stop, void *stop_parameter) argument
[all...]
/barrelfish-master/usr/bench/net_latency/elb/
H A Dinterface_app.c91 uint64_t start, stop, i; local
95 stop = spp_tx->c_write_id;
97 stop = spp_tx->c_read_id;
101 if (start == stop) {
106 while (sp_c_between(start, i, stop, spp_tx->c_size)) {
/barrelfish-master/tools/imx8x/
H A Dboard_ctrl.py103 def postcmd(self, stop, line):
104 return stop
/barrelfish-master/usr/bench/ahci/
H A Dmain.c133 uint64_t stop = rdtsc(); local
134 uint64_t elapsed_msecs = ((stop - start) / tscperms);
161 uint64_t start = 0, stop = 0; local
216 stop = rdtsc();
218 uint64_t elapsed_msecs = ((stop - start) / tscperms);
278 stop = rdtsc();
280 uint64_t elapsed_msecs = ((stop - start) / tscperms);
457 uint64_t stop = rdtsc(); local
458 uint64_t elapsed_msecs = ((stop - start) / tscperms);
461 printf("start: %" PRIu64 " stop
536 uint64_t stop = rdtsc(); local
677 uint64_t stop = rdtsc(); local
[all...]
/barrelfish-master/usr/tests/devif/
H A Dclient.c58 char* stop; local
60 mac_dst = strtoull(argv[2], &stop, 10);
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dtkexdr.c380 #define Buf_Check(n) { if (bp+(n) > stop) return NULL; }
383 _EcExdr2Tcl(Tcl_Interp *interp, char *bp, char *stop, Tcl_HashTable *string_table, uword *string_index, Tcl_Obj **result) argument
467 bp = _EcExdr2Tcl(interp, bp, stop, string_table, string_index, &elem);
478 bp = _EcExdr2Tcl(interp, bp, stop, string_table, string_index, &elem);
506 char *bp, *stop; local
517 stop = bp+len;
537 bp = _EcExdr2Tcl(interp, bp, stop, &string_table, &string_index, &resultObj);
542 bp = _EcExdr2Tcl(interp, bp, stop, NULL, NULL, &resultObj);
544 if (!bp || bp != stop)
H A Dlex.c94 #define Find_Matching_Atom(end, nst, pw, stop)
96 static void _find_matching_atom(unsigned char *end, stream_id nst, unsigned char **pw, unsigned char **stop);
97 #define Find_Matching_Atom(end, nst, pw, stop) _find_matching_atom(end, nst, &pw, &stop)
101 #define Extend_Lex_Aux(nst, pw, stop) \
103 stop = StreamLexAux(nst) + StreamLexSize(nst);
321 Find_Matching_Atom(pw, nst, pw, stop); \
358 unsigned char *pw, *stop; local
418 stop = pw + StreamLexSize(nst);
610 if (pw == stop) {
1134 _find_matching_atom( unsigned char *end, stream_id nst, unsigned char **pw, unsigned char **stop) argument
1514 unsigned char *stop; /* end of LexAux */ local
[all...]
/barrelfish-master/usr/tests/thcidctest/
H A Dthcidctest.c379 fprintf(stderr, "Finished tests: sending stop request\n");
380 cl.send.stop(&cl);
454 bool stop = false;
455 while (!stop) {
458 .ping=1, .stop=1, .testrpc=1, .testrpc2=1, .outoforder=1, .slow_op=1, .str0=1, .arr0=1});
497 stop = 1;
/barrelfish-master/usr/eclipseclp/Kernel/lib/
H A Dqueens.pl65 stop/0.
189 (stop -> exit_block(abort) ; labeling(Reste)).
195 (stop -> exit_block(abort) ; labeling_h(Reste, Nh)).
200 (stop -> exit_block(abort) ; labeling_noff(T)).
209 (stop -> exit_block(abort); generate(Vars, N, [Var|Alloc])).
339 retract_all(stop),
352 assert(stop).
/barrelfish-master/usr/eclipseclp/Shm/src/
H A Dshared_mem.c201 hd->shared_header->stop = start_shared_area + size;
330 if (hd->shared_header->lim + needed > hd->shared_header->stop)
427 hd->shared_header->lim = hd->shared_header->stop;
/barrelfish-master/usr/eclipseclp/ecrc_solvers/grace/
H A Dgrace.pl193 % step - stop on every labeling call (when selecting a variable)
195 % run(P) - stop only on breakpoints, run with prio P
196 % run_fast - stop only on breakpoints, no updates
202 :- make_local_array(stop).
258 setval(stop, 0),
660 (M = step % stop always in step mode
662 getval(stop, 0), % stop in pure run mode unless all solls
665 Opt = 2) % stop always on minimal solution
/barrelfish-master/lib/cxx/include/
H A Dunwind.h283 _Unwind_Stop_Fn stop, void *stop_parameter);
287 _Unwind_Stop_Fn stop, void *stop_parameter);

Completed in 239 milliseconds

1234