Searched refs:start (Results 51 - 75 of 399) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DJEclipse_VC.java41 jeclipse_vc.start(args);
/barrelfish-2018-10-04/lib/net_device_manager/
H A Dportalloc.c67 uint64_t start; local
71 start = TCP_LOCAL_PORT_RANGE_START / 64;
74 start = UDP_LOCAL_PORT_RANGE_START / 64;
77 for (int i = start; i < len; i++) {
/barrelfish-2018-10-04/kernel/include/
H A Dsys_debug.h34 capaddr_t out_cap_addr, uint64_t start, uint64_t end);
/barrelfish-2018-10-04/lib/compiler-rt/builtins/
H A Dtrampoline_setup.c13 extern void __clear_cache(void* start, void* end);
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dbitops.h305 int start, ras_start = ARM_RAS_START;
321 : "+r" (ras_start), "=r" (start), "+r" (address), "+r" (setmask)
398 #define BITMAP_FIRST_WORD_MASK(start) (~0UL << ((start) % BITS_PER_LONG))
405 static inline void bitmap_set(unsigned long *map, int start, int nr) { argument
406 unsigned long *p = map + BIT_WORD(start);
407 const int size = start + nr;
408 int bits_to_set = BITS_PER_LONG - (start % BITS_PER_LONG);
409 unsigned long mask_to_set = BITMAP_FIRST_WORD_MASK(start);
424 static inline void bitmap_clear(unsigned long *map, int start, in argument
[all...]
/barrelfish-2018-10-04/usr/tests/cxx/
H A Dstl_chrono.cpp20 steady_clock::time_point start = steady_clock::now();
25 (current - start).count() >= d){
35 <double>>(notified - start).count();
/barrelfish-2018-10-04/usr/eclipseclp/Shm/src/
H A Dshared_mem.c114 char *start_shared_area, /* start address for mapping (or NULL) */
198 hd->shared_header->start = start_shared_area;
252 if (tmp_header->start != start_shared_area)
259 else /* use the start address provided in the mapfile */
261 start_shared_area = tmp_header->start;
344 (off_t) (hd->shared_header->lim - hd->shared_header->start))
382 return write(fd, hd->shared_header->start,
383 hd->shared_header->brk - hd->shared_header->start);
391 char *start; local
404 start
[all...]
H A Dexample.c41 char* mapfile, char* start,
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dmktemp.c111 char *start, *trv, *suffp, *carryp; local
144 start = trv + 1;
147 memcpy(carrybuf, start, suffp - start);
186 for (trv = start, carryp = carrybuf;;) {
/barrelfish-2018-10-04/include/arch/arm/machine/
H A Datomic-v4.h220 int start, ras_start = ARM_RAS_START; local
235 : "+r" (ras_start), "=r" (start), "+r" (p), "+r" (val)
242 int start, ras_start = ARM_RAS_START; local
257 : "+r" (ras_start), "=r" (start), "+r" (address), "+r" (clearmask)
290 uint32_t start, tmp, ras_start = ARM_RAS_START; local
306 : "+r" (ras_start), "=r" (start), "=r" (tmp), "+r" (p), "+r" (v)
308 return (start);
314 int start, ras_start = ARM_RAS_START; local
330 : "+r" (ras_start), "=r" (start), "+r" (address), "+r" (setmask)
337 int start, ras_star local
[all...]
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dumem.c163 * @addr: userspace virtual address to start at
321 vm_offset_t end, last, start; local
334 start = addr & PAGE_MASK; /*Use the linux PAGE_MASK definition. */
338 npages = atop(end - start);
357 error = vm_map_wire(&proc->p_vmspace->vm_map, start, end,
369 umem->start = addr;
398 pa = pmap_extract(pmap, start);
407 start += PAGE_SIZE;
490 vm_offset_t addr, end, last, start;
502 addr = umem->start;
[all...]
/barrelfish-2018-10-04/usr/drivers/solarflair/sfxge/common/
H A Defx_sram.c40 uint32_t start = id; local
41 uint32_t stop = start + n;
57 for (id = start; id != stop; id++) {
72 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1);
106 while (--id != start) {
134 FRF_AZ_BUF_CLR_START_ID, start);
150 uint32_t start = id; local
151 uint32_t stop = start + n;
158 EFSYS_PROBE2(buf, uint32_t, start, uint32_t, stop - 1);
162 FRF_AZ_BUF_CLR_START_ID, start);
[all...]
/barrelfish-2018-10-04/lib/bfdmuxvm/
H A Dvm.c47 size_t start = *result_offset; local
48 if (start > filter_len){
68 *result_value = *(uint8_t *) (filter_code + start + 1);
72 *result_value = *(uint16_t *) (filter_code + start + 1);
76 *result_value = *(uint32_t *) (filter_code + start + 1);
80 *result_value = *(uint64_t *) (filter_code + start + 1);
108 (uint64_t *) ((filter_code) + start + 1);
109 *result_offset = start + 4 + *subtreesize;
135 (uint64_t *) ((filter_code) + start + 1);
136 *result_offset = start
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Denc_writ.c97 static int start=1;
106 if (start)
108 start=0;
/barrelfish-2018-10-04/lib/vfs/
H A Dfdtab.c34 int fdtab_alloc_from(struct fdtab_entry *h, int start) argument
37 assert(start >= MIN_FD);
39 for (int fd = start; fd < MAX_FD; fd++) {
/barrelfish-2018-10-04/usr/drivers/megaraid/
H A Dmain.c54 uint64_t start = rdtsc(); local
57 timestamps2[i] = rdtsc() - start;
58 timestamps1[i] = start - begin;
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dalloc.c81 static unsigned long find_aligned_range(unsigned long *bitmap, uint32_t start, argument
85 again: start = ALIGN(start, align);
87 while ((start < nbits) && (test_bit(start, bitmap) || (start & skip_mask)))
88 start += align;
90 if (start >= nbits)
93 end = start + len;
97 for (i = start
[all...]
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dthreadalloc.c27 static volatile uint64_t start = 0; variable
144 // start = rdtsc();
149 // printf("zykla: %lu\n", end - start);
165 start = rdtsc();
168 data[i] = end - start;
170 printf("\n**************start***********\n\n");
176 // printf("zykla: %lu\n", end - start);
310 printf("start %d: %p, size %d: %d\n", i, as[i].startaddr, i, as[i].size);
327 start = rdtsc();
330 printf("master thread: %lu cycles\n", end - start);
[all...]
/barrelfish-2018-10-04/usr/tests/bomptest/
H A Dtest.c53 uint64_t start = bench_tsc(); local
56 while(rdtsc() < start + 805000000ULL) {
63 printf("done. time taken: %" PRIu64 " cycles.\n", end - start);
/barrelfish-2018-10-04/usr/tests/net_tests/nfs_throughput/
H A Dnfs_cat.c54 uint64_t start = rdtsc(); local
71 double speed = ((filesize/in_seconds(stop - start))/(1024 * 1024));
76 filesize/(double)(1024 * 1024), in_seconds(stop - start),
/barrelfish-2018-10-04/include/sys/
H A Ddisklabel.h155 u_int16_t *start, *end; local
158 start = (u_int16_t *)lp;
160 while (start < end)
161 sum ^= *start++;
/barrelfish-2018-10-04/usr/bench/scheduling/
H A Dclockdrift.c32 spinflag_t start; member in union:padstruct
57 while(startflag[mycore].start == 0);
58 startflag[mycore].start = 0;
86 startflag[nextcore].start = 1;
/barrelfish-2018-10-04/lib/barrelfish/
H A Dsys_debug.c89 errval_t sys_debug_cap_trace_ctrl(uintptr_t types, genpaddr_t start, gensize_t size) argument
92 DEBUG_TRACE_PMEM_CTRL, types, start, size).error;
96 errval_t sys_debug_create_irq_src_cap(struct capref cap, uint64_t start, argument
103 dcn_level, dcn_addr, cap.slot, start, end);
/barrelfish-2018-10-04/lib/devif/
H A Dqueue_interface.c32 static uint64_t start; variable
125 start = bench_tsc();
131 add_bench_entry(&ctl_enq, end - start, "backend_enqueue");
171 start = bench_tsc();
180 add_bench_entry(&ctl_deq, end - start, "backend_dequeue");
226 start = bench_tsc();
232 add_bench_entry(&ctl_reg, end - start, "backend_register");
262 start = bench_tsc();
267 add_bench_entry(&ctl_dereg, end - start, "backend_deregister");
/barrelfish-2018-10-04/lib/libc/regex/
H A Dengine.c86 const char *beginp; /* start of string -- virtual NUL precedes */
92 states fresh; /* states for a fresh start */
105 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);
163 const char *start; local
177 start
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...]

Completed in 311 milliseconds

1234567891011>>