Searched refs:lst (Results 1 - 25 of 31) sorted by relevance

12

/barrelfish-master/usr/acpi/
H A Dvtd_domains.h43 static inline int domain_list_empty(struct vtd_domain_list *lst) argument
45 return (lst->head == NULL);
73 // Inserts newd as the new head of lst, a domain list with a size > 1
74 static inline void vtd_insert_new_head(struct vtd_domain *newd, struct vtd_domain_list *lst) argument
76 newd->next = lst->head;
77 lst->head->prev = newd;
78 lst->head = newd;
81 // Inserts newd as the new tail of lst, a domain list with a size > 1
82 static inline void vtd_insert_new_tail(struct vtd_domain_list *lst, struct vtd_domain *newd) argument
84 lst
114 vtd_delete_head(struct vtd_domain_list *lst) argument
123 vtd_delete_tail(struct vtd_domain_list *lst) argument
141 vtd_delete_single(struct vtd_domain_list *lst) argument
148 vtd_delete_domain(struct vtd_domain *d, struct vtd_domain_list *lst) argument
[all...]
H A Dintel_vtd.c49 static void dump_domains(struct vtd_domain_list *lst) argument
54 if (domain_list_empty(lst)) {
58 VTD_FOR_EACH(d, lst->head) {
59 if (d == lst->head) printf("H");
61 if (d == lst->tail) printf("<-T");
/barrelfish-master/usr/slideshow/
H A Dmakeslides.sh29 echo Done! Now append the line \"module /talk_ramfs.cpio\" to your menu.lst.
31 # XXX: Old version that uses lots of menu.lst entries
35 # done > talk_menu.lst
37 # echo Done! Now append the contents of talk/talk_menu.lst to your menu.lst.
38 # echo eg: "grep -v '/talk/' menu.lst > menu.lst.new ; cat menu.lst.new talk/talk_menu.lst > menu.lst"
[all...]
/barrelfish-master/tools/
H A Darm-mkbootcpio.sh14 # as the bootscript. It's a cleaned up version of menu.lst. The
30 echo "Usage: $0 arm/menu.lst <cpio_file>"
34 BOOTSCRIPT=menu.lst.modules
H A Dqemu-wrapper.sh41 echo " 'file' is a menu.lst format file to read module list from"
45 echo " --kernel <file> (kernel binary, if no menu.lst given)"
46 echo " --initrd <file> (initial RAM disk, if no menu.lst given)"
48 echo " --args <args> (kernel command-line args, if no menu.lst given)"
129 echo "No menu.lst file specified."
131 echo "ERROR: No initial kernel given and no menu.lst file." >&2; exit 1
134 echo "ERROR: No initial RAM disk given and no menu.lst file." >&2; exit 1
147 echo "ERROR: No initial kernel specified in menu.lst file." >&2; exit 1
158 echo "ERROR: No initial ram disk modules specified in menu.lst file." >&2; exit 1
/barrelfish-master/usr/eclipseclp/icparc_solvers/
H A Dedge_finder.c57 long est, lst; /* earliest/latest start time */ member in struct:__anon1770
137 ec_long(((ef_t *) obj)->tasks[i].lst),
195 ec_get_long(ec_arg(4), &ef->tasks[i].lst) != PSUCCEED ||
207 ef->tasks[i].ub = ef->tasks[i].lst;
451 upd_max(ef->LST[i], X[i]->lst);
727 upd_max(ef->LST[i], X[i]->lst);
766 while (Arp > 0 && X[k]->lct > X[x]->lst)
768 if (Arp + (X[k]->lct - X[x]->lst) * Size(X[x]->sz)
792 long lst_x = X[x]->lst > Y[y]->est ? X[x]->lst
[all...]
/barrelfish-master/tools/molly/
H A Dbuild_data_files.sh4 echo Expected $0 menu.lst output_prefix
/barrelfish-master/tools/arm_molly/
H A Dbuild_data_files.sh4 echo Usage: $0 menu.lst output_prefix
/barrelfish-master/usr/monitor/capops/
H A Dcapsend.c396 lvaddr_t lst = (lvaddr_t)st; local
397 struct find_cap_broadcast_st *fc_bc_st = (struct find_cap_broadcast_st*)lst;
435 lvaddr_t lst = (lvaddr_t)mc_st; local
436 return intermon_capops_find_descendants__tx(b, NOP_CONT, *caprep, (genvaddr_t)lst);
538 lvaddr_t lst = (lvaddr_t) st; local
539 struct find_descendants_mc_st *mc_st = (struct find_descendants_mc_st*)lst;
580 lvaddr_t lst = (lvaddr_t)mc_st; local
583 (genvaddr_t)lst, rst->offset, rst->objsize, rst->count);
693 lvaddr_t lst = (lvaddr_t) st; local
694 struct check_retypeable_mc_st *mc_st = (struct check_retypeable_mc_st*)lst;
735 lvaddr_t lst = (lvaddr_t)bc_st; local
819 lvaddr_t lst = (lvaddr_t)st; local
[all...]
/barrelfish-master/usr/eclipseclp/documents/megalog/
H A Dmanual.tex145 \include {kernel-lst}
148 \include {database-lst}
151 \include {knowbase-lst}
H A Ddatabase-lst.tex23 % File : database-lst.tex
H A Dknowbase-lst.tex23 % File : knowbase-lst.tex
H A Dkernel-lst.tex23 % File : kernel-lst.tex
/barrelfish-master/usr/eclipseclp/Compiler/
H A DMakefile.in90 @echo " make xxx.lst Compile to .lst assembly files"
111 rm -rf *.eci *.lst .asm *.res doc pretty coverage
195 %.lst: %.ecl
/barrelfish-master/lib/acpica/tests/aslts/
H A DMakefile.def80 rm $$j.lst; \
/barrelfish-master/doc/019-device-drivers/
H A DDeviceDriver.tex134 \begin{lstlisting}[caption={Registering an uart driver module}, label={lst:module}]
179 Hakefile for the FDIF driver in Listing~\ref{lst:hakefile} (a Haskell program,
218 \begin{lstlisting}[caption={A Hakefile for a simple device driver}, label={lst:hakefile}]
235 us (Listing~\ref{lst:mackerel}).
237 \begin{lstlisting}[caption={Mackerel includes in driver source code.}, label={lst:mackerel}]
251 Another interesting part is early on in the main function (Listing~\ref{lst:mapping}).
253 \begin{lstlisting}[caption={Mapping device registers in virtual memory.}, label={lst:mapping}]
274 \fnname{inthandler\_setup\_arm} (Listing~\ref{lst:irqregister}). It takes as
280 \begin{lstlisting}[caption={Register to receive an Interrupt.}, label={lst:irqregister}]
345 function parses the information provided by multiboot (your menu.lst fil
[all...]
/barrelfish-master/doc/026-device-queues/
H A Ddevif.tex170 \label{lst:register}
211 \label{lst:deregister}
269 \label{lst:enqueue}
331 \label{lst:dequeue}
380 \label{lst:notify}
562 is shown in Figures \ref{lst:sfn5122f}, \ref{lst:devq}, \ref{lst:func_p}.
588 \label{lst:sfn5122f}
603 \label{lst
[all...]
/barrelfish-master/usr/monitor/
H A Dmonitor_server.c1097 struct monitor_state *lst = calloc(1, sizeof(struct monitor_state)); local
1098 assert(lst != NULL);
1099 lst->queue.head = lst->queue.tail = NULL;
1103 b->st = lst;
/barrelfish-master/usr/eclipseclp/
H A DPACK238 # (ARCH,DYNLIB) that may occur in the .lst file
886 PRIVATE_FILES=`expand_file_list eclipse_private.lst`
900 # Definition of variables that can be used inside the .lst files
937 RT_FILES=`expand_file_list eclipse_rt.lst`
951 # The content of this package is defined in eclipse_rt.lst
995 # The content of this package is defined in eclipse_private.lst
/barrelfish-master/lib/acpica/tests/aslts/bin/bugstate/
H A Dbdemostabs360 lst=`get_state_result "$LBSUM_PARSED" "$LBZID"`
365 lState=`echo "$lst" | awk -F" " '{print $1}'`
366 lResult=`echo "$lst" | awk -F" " '{print $2}'`
742 line="$AllErrors|$number|$s0|$s1|$lst|$s2|$kst|$TSRESname|$s3|$s4| $tobefixed$s5"
/barrelfish-master/doc/018-Practical-guide/
H A Dreadme.tex180 and writing a suitable menu.lst file that instructs the bootloader (GRUB) which
193 this document. Assuming you have such a setup, here is a sample menu.lst file
H A DhelloWorldApp.tex39 After all is built, the menu.lst needs to be modified to add the domain and have
397 % ########### Editing menu.lst
398 Next step is to edit one of the \texttt{barrelfish/hake/menu.lst.*} file based
400 \texttt{menu.lst.x86\_64} file to be able to run this newly created application.
/barrelfish-master/include/lua/
H A Dlauxlib.h63 const char *const lst[]);
/barrelfish-master/doc/008-tracing/
H A DTracing.tex211 \ref{lst:pleco-file}. In this file we define two Subsystems: \texttt{kernel} and
224 Subsystems.}, label={lst:pleco-file}]
262 For the pleco file of Listing \ref{lst:pleco-file}, the header file shown in
263 Listing \ref{lst:headerfile} has been generated during the build process. In
281 based on the pleco file shown in Listing \ref{lst:pleco-file}.}, label={lst:headerfile}]
304 As the pleco file shown in Listing \ref{lst:pleco-file} does not only get
307 be seen in Listing \ref{lst:jsonfile}.
311 based on the pleco file shown in Listing \ref{lst:pleco-file}. This file can
312 be used by Aquarium to decode log traces.}, label={lst
[all...]
/barrelfish-master/lib/lua/src/
H A Dlauxlib.c321 const char *const lst[]) {
325 for (i=0; lst[i]; i++)
326 if (strcmp(lst[i], name) == 0)
320 luaL_checkoption(lua_State *L, int narg, const char *def, const char *const lst[]) argument

Completed in 224 milliseconds

12