Searched refs:start (Results 1 - 25 of 399) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/bench/rcce/lu/
H A Dtimers.h1 double start[64], elapsed[64]; variable
2 //#pragma omp threadprivate (start, elapsed)
H A Dtimers.c7 #define start(n) start[n-1] macro
21 start(n) = RCCE_wtime();
32 t = now - start(n);
/barrelfish-2018-10-04/lib/zlib/
H A Dinffast.h11 void inflate_fast OF((z_streamp strm, unsigned start));
/barrelfish-2018-10-04/lib/collections/
H A Dlist.c46 static collections_listnode *list_create_node(collections_listnode *start, argument
55 ((collections_header_data *)(start->data))->size ++;
59 static void list_destroy_node(collections_listnode *start, argument
64 ((collections_header_data*)start->data)->size--;
75 void collections_list_create(collections_listnode **start, argument
92 *start = t;
98 void collections_list_release(collections_listnode *start) argument
101 ((collections_header_data*)start->data)->data_free;
102 collections_listnode *cur = start->next;
108 while (cur != start)
131 collections_list_insert(collections_listnode *start, void *data) argument
144 collections_list_insert_tail(collections_listnode *start, void *data) argument
157 collections_list_find_if(collections_listnode *start, collections_list_predicate p, void *arg) argument
178 collections_list_remove_if(collections_listnode *start, collections_list_predicate p, void *arg) argument
200 collections_list_remove_if_all(collections_listnode *start, collections_list_predicate p, void *arg) argument
219 collections_list_remove_ith_item(collections_listnode *start, uint32_t item) argument
251 collections_list_get_ith_item(collections_listnode *start, uint32_t item) argument
281 collections_list_size(collections_listnode *start) argument
306 collections_list_traverse_start(collections_listnode *start) argument
327 collections_list_traverse_next(collections_listnode *start) argument
352 collections_list_traverse_end(collections_listnode *start) argument
368 collections_list_visit(collections_listnode *start, collections_list_visitor_func func, void *arg) argument
[all...]
/barrelfish-2018-10-04/include/collections/
H A Dlist.h91 void collections_list_create(collections_listnode **start,
93 void collections_list_release(collections_listnode *start);
94 int32_t collections_list_insert(collections_listnode *start, void *data);
95 int32_t collections_list_insert_tail(collections_listnode *start, void *data);
96 void *collections_list_get_ith_item(collections_listnode *start,
98 void *collections_list_find_if(collections_listnode *start,
100 void *collections_list_remove_if(collections_listnode *start,
102 uint32_t collections_list_remove_if_all(collections_listnode *start,
105 void *collections_list_remove_ith_item(collections_listnode *start,
107 uint32_t collections_list_size(collections_listnode *start);
[all...]
/barrelfish-2018-10-04/usr/periodicprint/
H A Dprintperiodic.c13 uint64_t start = bench_tsc(); local
18 ITERATIONS/(end-start), end-start, bench_tsc_to_ms(end-start));
/barrelfish-2018-10-04/kernel/arch/x86_64/
H A Dmicrobenchmarks.c23 uint64_t start, end; local
29 start = rdtscp();
38 mb->result = end - start;
45 uint64_t start, end; local
47 start = rdtscp();
53 mb->result = end - start;
60 uint64_t start, end; local
62 start = rdtscp();
69 mb->result = end - start;
76 uint64_t start, en local
[all...]
/barrelfish-2018-10-04/kernel/arch/x86_32/
H A Dmicrobenchmarks.c22 uint64_t start, end; local
28 start = rdtscp();
37 mb->result = end - start;
44 uint64_t start, end; local
46 start = rdtscp();
52 mb->result = end - start;
/barrelfish-2018-10-04/lib/barrelfish/arch/arm/
H A Dsyscalls.c28 sys_armv7_cache_clean_pou(void *start, void *end) { argument
31 (uint32_t)start, (uint32_t)end, 0);
36 sys_armv7_cache_clean_poc(void *start, void *end) { argument
39 (uint32_t)start, (uint32_t)end, 1);
44 sys_armv7_cache_invalidate(void *start, void *end) { argument
47 (uint32_t)start, (uint32_t)end);
/barrelfish-2018-10-04/usr/bench/bomp_benchmark/
H A Dc_timers.c20 double start[64], elapsed[64]; variable
36 start[n] = elapsed_time();
48 t = now - start[n];
/barrelfish-2018-10-04/usr/kaluga/
H A Dint_caps.h13 errval_t store_int_cap(int start, int end, struct driver_argument *arg);
/barrelfish-2018-10-04/kernel/arch/armv7/
H A Dplat_omap44xx_boot.c23 extern char start;
34 omap44xx_cortexa9_wugen_aux_core_boot_1_wr(&wugen, (uint32_t)&start);
36 // Tell ROM code to start other core
39 // Send signal to app core to start
/barrelfish-2018-10-04/usr/bench/loopy/
H A Dloopy.c13 uint64_t start = bench_tsc(); local
17 printf("%"PRIu64"\n", end - start);
/barrelfish-2018-10-04/tools/harness/
H A Dsubprocess_timeout.py23 timer2.start()
31 timer.start()
/barrelfish-2018-10-04/usr/tests/schedtest/
H A Dschedtest.c29 uint64_t start, now; local
46 start = bench_tsc();
50 if(now - start < ITERATIONS) {
62 start = bench_tsc();
64 /* while(bench_tsc() < start + DEADLINE); */
65 /* if(bench_tsc() > start + DEADLINE */
66 /* start = bench_tsc(); */
/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Dclear_cache.c87 void __clear_cache(void *start, void *end) { argument
97 arg.addr = (uintptr_t)start;
98 arg.len = (uintptr_t)end - (uintptr_t)start;
102 register int start_reg __asm("r0") = (int) (intptr_t) start;
115 const uintptr_t start_int = (uintptr_t) start;
121 clear_mips_cache(start, (end_int - start_int));
123 syscall(__NR_cacheflush, start, (end_int - start_int), BCACHE);
126 syscall(__NR_cacheflush, start, (end_int - start_int), BCACHE);
129 uint64_t xstart = (uint64_t)(uintptr_t) start;
153 sys_icache_invalidate(start, en
[all...]
/barrelfish-2018-10-04/kernel/include/arch/x86/
H A Dkputchar.h28 uint64_t start = rdtsc();
29 while (rdtsc() < start + ticks) {}
/barrelfish-2018-10-04/lib/bomp/
H A Dloop.c34 bool GOMP_loop_ordered_runtime_start(long start, argument
44 bool GOMP_loop_dynamic_start(long start, argument
/barrelfish-2018-10-04/lib/bomp_new/
H A Dloop.c34 bool GOMP_loop_ordered_runtime_start(long start, argument
44 bool GOMP_loop_dynamic_start(long start, argument
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dmatrix.c96 uint64_t start = rdtsc(); //rdtscp(); local
100 printf("\n%lu cycles for multiplying one matrix\n", end - start);
105 start = rdtsc(); //rdtscp();
109 printf("\n%lu cycles for multiplying one matrix\n", end - start);
112 start = rdtsc(); //rdtscp();
115 printf("\n%lu cycles for multiplying one matrix\n", end - start);
118 start = rdtsc(); //rdtscp();
122 printf("\n%lu cycles for multiplying one matrix\n", end - start);
/barrelfish-2018-10-04/usr/tests/perfmontest/
H A Dspin.c14 uint64_t start = rdtsc(); local
17 sum += end - start;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dexp.c18 char *start,*end; local
29 start=ms_time_new();
39 ms_time_get(start);
43 md=ms_time_diff(start,end);
45 ms_time_get(start);
53 d=ms_time_diff(start,end)/* *50/33 */;
/barrelfish-2018-10-04/usr/tests/bomptest/
H A Dcpu_bound.c23 uint64_t now, start; local
35 start = rdtsc();
42 } while(now - start < WORK_PERIOD);
64 start = rdtsc();
74 printf("%s: threads %d, compute time %lu ticks\n", argv[0], nthreads, now - start);
/barrelfish-2018-10-04/usr/bench/rcce/bt/
H A Dadd.c17 for (k = start(3,c); k <= cell_size(3,c)-end(3,c)-1; k++) {
18 for (j = start(2,c); j <= cell_size(2,c)-end(2,c)-1; j++) {
19 for (i = start(1,c); i <= cell_size(1,c)-end(1,c)-1; i++) {
/barrelfish-2018-10-04/lib/usb/
H A Dusb_parse.c22 * \param desc the descriptor to start from
32 uint8_t *start; local
41 start = (uint8_t *) cd;
42 end = start + cd->wTotalLength;
45 /* Get start of next USB descriptor. */
47 desc = start;
52 if ((desc < start) || (desc >= end))
57 if ((desc_next < start) || (desc_next > end))
64 /* Return start of next descriptor. */
89 /* default is to start
[all...]

Completed in 126 milliseconds

1234567891011>>