Searched refs:end (Results 1 - 25 of 552) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/periodicprint/
H A Dprintperiodic.c15 uint64_t end = 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
36 end = rdtscp();
38 mb->result = end - start;
45 uint64_t start, end; local
51 end = rdtscp();
53 mb->result = end - start;
60 uint64_t start, end; local
67 end = rdtscp();
69 mb->result = end - start;
76 uint64_t start, end; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_sqrt.c83 goto end;
103 goto end;
121 if (y == NULL) goto end;
125 if (ret == NULL) goto end;
128 if (!BN_nnmod(A, a, p, ctx)) goto end;
145 if (!BN_rshift(q, p, 2)) goto end;
147 if (!BN_add_word(q, 1)) goto end;
148 if (!BN_mod_exp(ret, A, q, p, ctx)) goto end;
182 if (!BN_mod_lshift1_quick(t, A, p)) goto end;
185 if (!BN_rshift(q, p, 3)) goto end;
[all...]
H A Dbn_kron.c83 if (B == NULL) goto end;
86 if (err) goto end;
88 if (err) goto end;
101 goto end;
109 goto end;
117 if (err) goto end;
151 goto end;
159 if (err) goto end;
174 if (err) goto end;
178 end
[all...]
H A Dexp.c18 char *start,*end; local
30 end=ms_time_new();
42 ms_time_get(end);
43 md=ms_time_diff(start,end);
52 ms_time_get(end);
53 d=ms_time_diff(start,end)/* *50/33 */;
/barrelfish-2018-10-04/kernel/arch/x86_32/
H A Dmicrobenchmarks.c22 uint64_t start, end; local
35 end = rdtscp();
37 mb->result = end - start;
44 uint64_t start, end; local
50 end = 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/kaluga/
H A Dint_caps.h13 errval_t store_int_cap(int start, int end, struct driver_argument *arg);
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DVisualizerItemChart.java60 public void drawEnd(PrintWriter out,FullDomain end){ argument
61 if (end != null){
62 rectSVG(out,posX(end.getMin()),topY(),
63 posX(end.getMax())-posX(end.getMin()),height(),
65 lineSVG(out,posX(end.getMin()),topY(),
66 posX(end.getMin()),topY()+height(),Colors.TOO_HIGH_COLOR);
67 lineSVG(out,posX(end.getMax()),topY(),
68 posX(end.getMax()),topY()+height(),Colors.TOO_HIGH_COLOR);
/barrelfish-2018-10-04/usr/bench/loopy/
H A Dloopy.c15 uint64_t end = bench_tsc(); local
17 printf("%"PRIu64"\n", end - start);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dasn1_par.c142 goto end;
144 goto end;
150 <= 0) goto end;
156 goto end;
162 goto end;
165 goto end;
169 if (BIO_write(bp,"\n",1) <= 0) goto end;
175 goto end;
184 if (r == 0) { ret=0; goto end; }
194 if (r == 0) { ret=0; goto end; }
[all...]
/barrelfish-2018-10-04/usr/tests/msun/
H A Dilogb_test.c39 char buf[128], *end; local
51 d = strtod(buf, &end);
52 assert(*end == '\0');
63 f = strtof(buf, &end);
64 assert(*end == '\0');
75 ld = strtold(buf, &end);
76 assert(*end == '\0');
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ms/
H A Dmw.bat9 if errorlevel 1 goto end
11 if errorlevel 1 goto end
15 if errorlevel 1 goto end
19 if errorlevel 1 goto end
21 if errorlevel 1 goto end
25 :end label
/barrelfish-2018-10-04/lib/openssl-1.0.0d/engines/ccgost/
H A Dgost_eng.c78 goto end;
83 goto end;
88 goto end;
93 goto end;
98 goto end;
103 goto end;
109 goto end;
114 goto end;
120 goto end;
123 if (!register_ameth_gost(NID_id_GostR3410_94, &ameth_GostR3410_94, "GOST94", "GOST R 34.10-94")) goto end;
[all...]
/barrelfish-2018-10-04/lib/libc/gen/
H A Ddirname.c36 const char *in, *prev, *begin, *end; local
61 end = in;
62 if (begin == end)
79 prevlen = end - begin;
/barrelfish-2018-10-04/lib/phoenix/
H A Dstddefines.h84 #define GET_TIME(start, end, duration) \
85 duration.tv_sec = (end.tv_sec - start.tv_sec); \
86 if (end.tv_nsec >= start.tv_nsec) { \
87 duration.tv_nsec = (end.tv_nsec - start.tv_nsec); \
90 duration.tv_nsec = (1000000000L - (start.tv_nsec - end.tv_nsec)); \
103 struct timeval *end, struct timeval *begin)
108 result = end->tv_sec - begin->tv_sec;
110 result += end->tv_usec - begin->tv_usec;
102 time_diff( struct timeval *end, struct timeval *begin) argument
/barrelfish-2018-10-04/lib/bomp/
H A Dloop.c35 long end,
45 long end,
34 GOMP_loop_ordered_runtime_start(long start, long end, long incr, long *istart, long *iend) argument
44 GOMP_loop_dynamic_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
/barrelfish-2018-10-04/lib/bomp_new/
H A Dloop.c35 long end,
45 long end,
34 GOMP_loop_ordered_runtime_start(long start, long end, long incr, long *istart, long *iend) argument
44 GOMP_loop_dynamic_start(long start, long end, long incr, long chunk_size, long *istart, long *iend) argument
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dmatrix.c98 uint64_t end = rdtsc(); //rdtscp(); local
100 printf("\n%lu cycles for multiplying one matrix\n", end - start);
107 end = rdtsc(); //rdtscp();
109 printf("\n%lu cycles for multiplying one matrix\n", end - start);
114 end = rdtsc(); //rdtscp();
115 printf("\n%lu cycles for multiplying one matrix\n", end - start);
121 end = rdtsc(); //rdtscp();
122 printf("\n%lu cycles for multiplying one matrix\n", end - start);
/barrelfish-2018-10-04/usr/tests/perfmontest/
H A Dspin.c16 uint64_t end = rdtsc(); local
17 sum += end - start;
/barrelfish-2018-10-04/tools/flounder/
H A Dintro.tex11 \end{itemize}
19 \end{itemize}
37 \end{itemize}
38 \end{description}
52 \end{itemize}
53 \end{description}
55 \end{itemize}
56 \end{description}
57 \end{itemize}
58 \end{descriptio
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bf/
H A Dbf_skey.c69 const unsigned char *d,*end; local
78 end= &(data[len]);
82 if (d >= end) d=data;
86 if (d >= end) d=data;
90 if (d >= end) d=data;
94 if (d >= end) d=data;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/engine/
H A Denginetest.c89 printf("end of list\n");
137 goto end;
144 goto end;
151 goto end;
159 goto end;
165 goto end;
171 goto end;
177 goto end;
185 goto end;
193 goto end;
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Denginetest.c89 printf("end of list\n");
137 goto end;
144 goto end;
151 goto end;
159 goto end;
165 goto end;
171 goto end;
177 goto end;
185 goto end;
193 goto end;
[all...]
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dreset.c60 unsigned long end; local
149 end = 0; //jiffies + MLX4_SEM_TIMEOUT_JIFFIES;
156 end++;
157 } while (end < 1000);
173 end = 0; //jiffies + MLX4_RESET_TIMEOUT_JIFFIES;
180 end++;
181 } while (end < 200);

Completed in 220 milliseconds

1234567891011>>