Searched refs:root (Results 1 - 25 of 139) sorted by last modified time

123456

/barrelfish-2018-10-04/usr/skb/programs/
H A Droute_tree_radix.pl96 % root has to be partd of the CoreList
H A Dbridge_postorder_sorted_sum_ascending.pl47 findall(root(Addr,Child,mem(LP,HP)),
89 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
105 %% pseudo-root of both trees
H A Dcompute_required_resources.pl148 %root bridge information
162 write("root bridge\t"),
180 write("root bridge\t"),
H A Dbridge_postorder_sorted_ascending.pl47 findall(root(Addr,Child,mem(LP,HP)),
89 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
105 %% pseudo-root of both trees
H A Dbridge_postorder_sorted_sum.pl48 findall(root(Addr,Child,mem(LP,HP)),
90 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
109 %% pseudo-root of both trees
H A Dbridge_page_orig_naturally_aligned.pl28 % find all the root bridges
29 findall(root(Addr,Child,mem(LP,HP)),
71 % create an assignment for all PCI buses (all root bridges and their children)
99 % the main part of the allocation. Called once per root bridge
103 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
121 % pseudo-root of both trees
H A Dbridge_postorder.pl43 findall(root(Addr,Child,mem(LP,HP)),
85 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
101 %% pseudo-root of both trees
H A Dbridge_postorder_sorted.pl47 findall(root(Addr,Child,mem(LP,HP)),
89 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
104 %% pseudo-root of both trees
H A Dbridge_fake_bigfish.pl97 % the main part of the allocation. Called once per root bridge
101 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
119 % pseudo-root of both trees
H A Dbridge_page.pl37 % find all the root bridges
38 findall(root(Addr,Child,mem(LP,HP)),
92 % create an assignment for all PCI buses (all root bridges and their children)
121 % the main part of the allocation. Called once per root bridge
125 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
143 % pseudo-root of both trees
H A Dbridge_fake_babybel.pl590 % the main part of the allocation. Called once per root bridge
594 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
612 % pseudo-root of both trees
H A Dbridge.pl39 findall(root(Addr,Child,Mem),rootbridge(Addr,Child,Mem),Roots),
51 root(Addr,childbus(MinBus,MaxBus),mem(LMem,HMem)) = Root,
/barrelfish-2018-10-04/usr/replay/
H A Dmaster.c498 __print_taskgraph(struct pid_entry *root, int level) argument
500 if (root == NULL)
504 printf("%d (completed:%d)\n", root->pid, root->completed);
506 for (int i=0; i<root->children_nr; i++) {
507 __print_taskgraph(root->children[i], level+1);
/barrelfish-2018-10-04/usr/ramfsd/
H A Dservice.c43 struct dirent *root; member in struct:client_state
53 static void client_state_init(struct client_state *st, struct dirent *root) argument
55 st->root = root;
158 *rootfh = fh_set(st, st->root);
534 errval_t start_service(struct dirent *root) argument
537 return trivfs_export(root, export_cb, connect_cb, get_default_waitset(),
H A Dramfs.h40 errval_t start_service(struct dirent *root);
H A Dmain.c30 static errval_t write_directory(struct dirent *root, const char *path);
31 static errval_t write_file(struct dirent *root, const char *path, uint8_t *data,
38 struct dirent *root = arg; local
42 err = write_file(root, h->name, (void *)h->data, h->datasize);
44 err = write_directory(root, h->name);
56 static errval_t unpack_cpio(struct dirent *root, void *data, size_t len) argument
63 cpio_visit(data, len, cpio_entry_handler, &h, root);
67 static errval_t unpack_cpiogz(struct dirent *root, void *data, size_t len) argument
114 err = unpack_cpio(root, outbuf, outbufpos);
121 static errval_t write_directory(struct dirent *root, cons argument
184 write_file(struct dirent *root, const char *path, uint8_t *data, size_t len) argument
335 populate_multiboot(struct dirent *root, struct bootinfo *bi) argument
479 struct dirent *root = ramfs_init(); local
[all...]
H A Dramfs.c43 struct dirent *root = malloc(sizeof(struct dirent)); local
44 assert(root != NULL);
46 root->next = NULL;
47 root->prevp = NULL;
48 root->parent = NULL;
49 root->name = "";
50 root->isdir = true;
51 root->islive = true;
52 root->u.dir.entries = NULL;
53 root
[all...]
/barrelfish-2018-10-04/usr/monitor/include/
H A Dmonitor_invocations.h76 invoke_monitor_get_cap_owner(capaddr_t root, int rlevel, capaddr_t cap, int clevel, coreid_t *ret_owner) argument
79 struct sysret sysret = cap_invoke5(cap_kernel, KernelCmd_Get_cap_owner, root, rlevel, cap, clevel);
87 invoke_monitor_set_cap_owner(capaddr_t root, int rlevel, capaddr_t cap, int clevel, coreid_t owner) argument
89 return cap_invoke6(cap_kernel, KernelCmd_Set_cap_owner, root, rlevel, cap, clevel, owner).error;
94 invoke_monitor_lock_cap(capaddr_t root, int rlevel, capaddr_t cap, int clevel) argument
96 return cap_invoke5(cap_kernel, KernelCmd_Lock_cap, root, rlevel, cap, clevel).error;
100 invoke_monitor_unlock_cap(capaddr_t root, int rlevel, capaddr_t cap, int clevel) argument
102 return cap_invoke5(cap_kernel, KernelCmd_Unlock_cap, root, rlevel, cap, clevel).error;
107 invoke_monitor_delete_last(capaddr_t root, int rlevel, capaddr_t cap, int clevel, argument
110 return cap_invoke8(cap_kernel, KernelCmd_Delete_last, root, rleve
121 invoke_monitor_revoke_mark_target(capaddr_t root, int rlevel, capaddr_t cap, int clevel) argument
[all...]
/barrelfish-2018-10-04/usr/monitor/include/arch/x86_32/
H A Dmonitor_invocations_arch.h261 invoke_monitor_get_cap_owner(capaddr_t root, int rbits, capaddr_t cap, int cbits, coreid_t *ret_owner) argument
264 root, rbits, cap, cbits);
272 invoke_monitor_set_cap_owner(capaddr_t root, int rbits, capaddr_t cap, int cbits, coreid_t owner) argument
274 return cap_invoke6(cap_kernel, KernelCmd_Set_cap_owner, root, rbits, cap, cbits, owner).error;
278 invoke_monitor_lock_cap(capaddr_t root, int rbits, capaddr_t cap, int cbits) argument
280 return cap_invoke5(cap_kernel, KernelCmd_Lock_cap, root, rbits, cap, cbits).error;
284 invoke_monitor_unlock_cap(capaddr_t root, int rbits, capaddr_t cap, int cbits) argument
286 return cap_invoke5(cap_kernel, KernelCmd_Unlock_cap, root, rbits, cap, cbits).error;
290 invoke_monitor_delete_last(capaddr_t root, int rbits, capaddr_t cap, int cbits, argument
297 return cap_invoke6(cap_kernel, KernelCmd_Delete_last, root, ca
308 invoke_monitor_revoke_mark_target(capaddr_t root, int rbits, capaddr_t cap, int cbits) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dwidget.tcl139 ;proc _find_class {CLASS {root .}} {
140 if {[string match $CLASS [winfo class $root]]} {
141 return $root
143 foreach w [winfo children $root] {
477 ![info exists widnames([file root $wid])]} {
479 ## have created all the parents first. [file root $wid] is
H A Dpane.tcl217 array set PANE [list XY [winfo root$xy $p] WH [winfo $wh $p].0 \
H A Dhierarchy.tcl48 ## form a path to the node from the root. Thus the first
49 ## element of this list will always be the root node.
75 ## node-names which form a path to the node from the root.
77 ## root node. Also appended is a
110 ## -root rootname DEFAULT: {}
111 ## The name of the root node of the tree. Each node
128 ## string which will reset the root node to its parent.
161 ## root - specifies the root item.
312 {-root roo
[all...]
H A DTOUR.tcl159 set TOUR(Hierarchy,w) [hierarchy_widget $f.p.w -root .]
160 set TOUR(Hierarchy,d) [hierarchy_dir $f.p.d -root [file dirname [pwd]] \
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/
H A Dtkinspect.tcl136 set h [hierarchy $top.m -root 1 -browsecmd tkinspect:Get_subterms \
927 set hroot [$h index root]
930 $h open $hroot ;# update root term. Also consistent with initial display
1061 # x and y are root-window relative co-ordinates (for placing menu)
H A Declipse_tools.tcl36 # All tools in this package has .ec_tools as the root frame. New
231 # this sets the Tk defaults for widgets that has $root as a parent. This
232 # should be called before any widgets of root are created!
233 proc tkecl:set_tkecl_tkdefaults {root} {
234 option add *$root*font tkecllabel userDefault ;# the default
235 option add *$root*Text.font tkeclmono
236 option add *$root*Entry.font tkeclmono
237 option add *$root*Hierarchy.font tkeclmono
238 option add *$root*Text.font tkeclmono
377 -background white -selectbackground gray -root to
[all...]

Completed in 96 milliseconds

123456