Searched refs:start (Results 226 - 250 of 399) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/doc/023-coreboot/
H A Dcoreboot.tex104 Usually, a KCB is created for each core we start and passed to the new core on
105 start-up. On boot-up, the kernel checks if the KCB it received is initialized.
106 In that case, it will use the KCB and start to dispatch the applications it
198 protocol to start the new core. This is done by using the file system to load
268 \texttt{start} command. It takes the same arguments and flags as described in
269 the start section.
289 to re-register them, and then start dispatching the target KCB.
/barrelfish-2018-10-04/include/vm/
H A Dswap_pager.c826 swap_pager_freespace(vm_object_t object, vm_pindex_t start, vm_size_t size) argument
829 swp_pager_meta_free(object, start, size);
841 swap_pager_reserve(vm_object_t object, vm_pindex_t start, vm_size_t size) argument
845 vm_pindex_t beg = start; /* save start index */
854 swp_pager_meta_free(object, beg, start - beg);
860 swp_pager_meta_build(object, start, blk);
862 ++start;
866 swp_pager_meta_free(object, start, n);
2421 n = (cur->end - cur->start) / PAGE_SIZ
[all...]
H A Dvm_glue.c181 vm_offset_t end, last, start; local
186 start = trunc_page((vm_offset_t)addr);
190 npages = atop(end - start);
206 error = vm_map_wire(&curproc->p_vmspace->vm_map, start, end,
H A Dvnode_pager.c1307 vnode_pager_update_writecount(vm_object_t object, vm_offset_t start, argument
1319 object->un_pager.vnp.writemappings += (vm_ooffset_t)end - start;
1336 vnode_pager_release_writecount(vm_object_t object, vm_offset_t start, argument
1358 inc = end - start;
1373 * Decrement the object's writemappings, by swapping the start
1378 vnode_pager_update_writecount(object, end, start);
/barrelfish-2018-10-04/lib/zlib/
H A Ddeflate.c97 local void check_match OF((deflate_state *s, IPos start, IPos match,
654 uInt beg = s->pending; /* start of bytes to update crc */
682 uInt beg = s->pending; /* start of bytes to update crc */
713 uInt beg = s->pending; /* start of bytes to update crc */
1232 local void check_match(s, start, match, length)
1234 IPos start, match;
1239 s->window + start, length) != EQUAL) {
1240 fprintf(stderr, " start %u, match %u, length %d\n",
1241 start, match, length);
1243 fprintf(stderr, "%c%c", s->window[match++], s->window[start
[all...]
/barrelfish-2018-10-04/lib/linenoise/
H A Dlinenoise.c229 * no start/stop output control. */
290 int start, cols; local
293 start = getCursorPosition(ifd,ofd);
294 if (start == -1) goto failed;
302 if (cols > start) {
304 snprintf(seq,32,"\x1b[%dD",cols-start);
520 /* First step: clear all the lines used before. To do so start by
640 /* Move cursor to the start of the line. */
704 /* Delete the previosu word, maintaining the cursor at the start of the
886 case CTRL_A: /* Ctrl+a, go to the start o
[all...]
/barrelfish-2018-10-04/lib/mm/
H A Dmm.c292 cslot_t start = 0, stop = UNBITS_CA(node->childbits); local
294 start = (minbase - nodebase) / UNBITS_GENPA(nodesizebits - node->childbits);
300 for (cslot_t i = start; i < stop; i++) {
327 nodebase, nodebase + UNBITS_GENPA(nodesizebits), start, stop,
328 nodebase + start * UNBITS_GENPA(nodesizebits - node->childbits),
/barrelfish-2018-10-04/usr/bench/bomp_benchmark/
H A Dft.c282 double x0, start, an, dummy; local
286 start = SEED;
291 dummy = randlc(&start, an);
298 x0 = start;
308 if (k != dims[0][2]) dummy = randlc(&start, an);
/barrelfish-2018-10-04/lib/acpica/tests/aslts/bin/
H A Dasltsrun82 # arg1 - start time in centisecond time units
101 # arg1 - start time string {h:m:s}
386 local status cnt=0 pass=0 fail=0 skip=0 start=0 finish=0 total=0
402 echo "|$2|$cnt|$pass|$fail|$skip|$start|$finish|$total|$outstand0|$blck|$memtotal|$max0|$max1|$max2|$max3|$max4|$max5|$out0|$out1|$out2|$out3|$out4|$out5|$outstand1|$LargeRefCount|$exceptionsnum|" >> "$3"
420 start=`echo "$line" | awk -F" " '{print $3}'`
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Dsepia.h807 * Assign the value to <v> and the buffer pointer to <start>.
810 #define Make_Stack_String(len, v, start) \
813 (start) = StringStart(v);
1284 the index, the start of this list is stored in the last
1356 #define TG_ORIG ((pword *) g_emu_.global_trail[0].start)
1357 #define TT_ORIG ((pword **) g_emu_.global_trail[1].start)
1358 #define B_ORIG ((pword *) g_emu_.control_local[0].start)
1359 #define SP_ORIG ((pword *) g_emu_.control_local[1].start)
/barrelfish-2018-10-04/usr/eclipseclp/documents/libman/
H A Dfdglobal.tex149 If there are N tasks, each starting at a certain start time, having
186 The declarative meaning is that the N tasks with certain start times
194 If there are N tasks, each starting at a certain start time, having
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dreq.c1219 start: for (;;)
1248 if ((nid=OBJ_txt2nid(type)) == NID_undef) goto start;
1436 start:
1480 if(!req_check_len(i, n_min, n_max)) goto start;
1495 start:
1539 if(!req_check_len(i, n_min, n_max)) goto start;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dd1_both.c128 #define RSMBLY_BITMASK_MARK(bitmask, start, end) { \
129 if ((end) - (start) <= 8) { \
131 for (ii = (start); ii < (end); ii++) bitmask[((ii) >> 3)] |= (1 << ((ii) & 7)); \
134 bitmask[((start) >> 3)] |= bitmask_start_values[((start) & 7)]; \
135 for (ii = (((start) >> 3) + 1); ii < ((((end) - 1)) >> 3); ii++) bitmask[ii] = 0xff; \
/barrelfish-2018-10-04/usr/bench/udp_echo/
H A Dudp_ipip_openloop.c252 size_t start = atoi(argv[5]); local
422 printf("%zd %lu %lu %lu us\n", i + start, t - r, t, r);
/barrelfish-2018-10-04/tools/harness/tests/
H A Dcommon.py200 start = datetime.datetime.now()
201 while start + AFTER_FINISH_TIMEOUT > datetime.datetime.now():
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dpbuf.c660 * not move the payload pointer in front of the start of the buffer.
1123 * Skip a number of bytes at the start of a pbuf
1355 * @param offset offset into p at which to start comparing
1364 u16_t start = offset; local
1374 while ((q != NULL) && (q->len <= start)) {
1375 start -= q->len;
1382 u8_t a = pbuf_get_at(q, start + i);
1400 * @param start_offset offset into p at which to start searching
1420 * Find occurrence of substr with length substr_len in pbuf p, start at offset
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/jdotview/
H A DGraphVizPanel.java55 fw.start();
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DVisClientStateModel.java173 autoResumeTimer.start();
/barrelfish-2018-10-04/usr/eclipseclp/documents/tutorial/
H A Dtkdebug.tex106 To load the program, start {\tkeclipse}. After start up,
121 To start the program, the query `colour' is run: type \verb'colour'
215 At the start of tracing,
237 the {\bf predicate browser} tool: start the \menuopt{Predicate Browser} tool
344 Press \button{Go} on the filter tool to start the tracer running with the
517 the ``Editor's command line option to start at a specific line'' with the
565 \item[Visualisation client] start a visualisation client.
/barrelfish-2018-10-04/kernel/include/
H A Dcapabilities.h221 void caps_trace_ctrl(uint64_t types, genpaddr_t start, gensize_t size);
/barrelfish-2018-10-04/lib/posixcompat/
H A Dselect.c1105 static void debug_print_chanstate(struct waitset_chanstate *start) argument
1107 struct waitset_chanstate *i = start;
1131 } while (i != start && i != NULL);
1134 static inline void debug_print_chanstate(struct waitset_chanstate *start) argument
/barrelfish-2018-10-04/lib/cxx/cxxabi/
H A Dcxa_personality.cpp61 | ... (start, length) range of one of these |
64 | | start | (encoded with callSiteEncoding) | offset relative to funcStart | |
643 // The call sites are non-overlapping in [start, start+length)
644 // The call sites are ordered in increasing value of start
645 uintptr_t start = readEncodedPointer(&callSitePtr, callSiteEncoding); local
649 if ((start <= ipOffset) && (ipOffset < (start + length)))
861 else if (ipOffset < start)
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/infiniband/core/
H A Dmad.c693 * If we are at the start of the LID routed part, don't update the
2805 printf("Couldn't start port\n");
2865 int start, end, i; local
2871 start = 0;
2874 start = 1;
2878 for (i = start; i <= end; i++) {
2897 /*while (i >= start) {
/barrelfish-2018-10-04/kernel/arch/armv7/
H A Dsyscall.c1340 void *start= (void *)sa->arg1; local
1344 if(to_poc) cache_range_op(start, end, CLEAN_TO_POC);
1345 else cache_range_op(start, end, CLEAN_TO_POU);
1353 void *start= (void *)sa->arg1; local
1356 cache_range_op(start, end, INVALIDATE_TO_POC);
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_compile.c50 #define PSSTART start_pattern /* Field containing pattern start */
269 /* Substitutes for [[:<:]] and [[:>:]], which mean start and end of word in
559 "group name must start with a non-digit\0"
952 start a quantifier. It looks ahead to see if it really is a quantifier or not.
1665 code pointer to the start of the group
1725 code points to the start of the pattern (the bracket)
2075 code points to start of expression
2239 code points to start of expression
2389 code points to start of search
2764 code points to start o
4204 add_to_class(pcre_uint8 *classbits, pcre_uchar **uchardptr, int options, compile_data *cd, pcre_uint32 start, pcre_uint32 end) argument
[all...]

Completed in 479 milliseconds

1234567891011>>