Searched refs:dep (Results 1 - 25 of 102) sorted by relevance

12345

/asus-wl-520gu-7.0.1.45/src/router/e2fsprogs-1.40.8/lib/e2p/
H A Diod.c29 struct dirent *de, *dep; local
58 while ((dep = readdir (dir))) {
61 if (len < dep->d_reclen)
62 len = dep->d_reclen;
66 memcpy(de, dep, len);
/asus-wl-520gu-7.0.1.45/src/router/config/
H A Dmenu.c57 void menu_add_dep(struct expr *dep) argument
59 current_entry->dep = expr_alloc_and(current_entry->dep, dep);
90 struct property *menu_add_prop(int token, char *prompt, struct symbol *def, struct expr *dep) argument
99 E_EXPR(prop->visible) = dep;
114 void menu_add_prompt(int token, char *prompt, struct expr *dep) argument
116 current_entry->prompt = menu_add_prop(token, prompt, NULL, dep);
119 void menu_add_default(int token, struct symbol *def, struct expr *dep) argument
121 current_entry->prompt = menu_add_prop(token, NULL, def, dep);
129 struct expr *parentdep, *basedep, *dep, *dep2; local
[all...]
H A Dlkc.h51 void menu_add_dep(struct expr *dep);
52 struct property *menu_add_prop(int token, char *prompt, struct symbol *def, struct expr *dep);
H A Dexpr.h62 #define E_NOT(dep) (2-(dep))
95 struct expr *dep, *dep2; member in struct:symbol
145 struct expr *dep; member in struct:property
168 struct expr *dep; member in struct:menu
205 int expr_contains_symbol(struct expr *dep, struct symbol *sym);
206 bool expr_depends_symbol(struct expr *dep, struct symbol *sym);
H A Dexpr.c742 int expr_contains_symbol(struct expr *dep, struct symbol *sym) argument
744 if (!dep)
747 switch (dep->type) {
750 return expr_contains_symbol(dep->left.expr, sym) ||
751 expr_contains_symbol(dep->right.expr, sym);
753 return dep->left.sym == sym;
756 return dep->left.sym == sym ||
757 dep->right.sym == sym;
759 return expr_contains_symbol(dep->left.expr, sym);
766 bool expr_depends_symbol(struct expr *dep, struc argument
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-ia64/
H A Dmca_asm.h29 dep addr = 0, addr, 61, 3
37 dep addr = 0, addr, 61, 3
46 dep addr = temp, addr, 61, 3
75 dep old_psr = 0, old_psr, 32, 32; \
93 dep temp2 = 0, temp2, PSR_IC, 2; \
98 dep temp1 = 0, temp1, 32, 32; \
100 dep temp1 = 0, temp1, PSR_IT, 1; \
102 dep temp1 = 0, temp1, PSR_DT, 1; \
104 dep temp1 = 0, temp1, PSR_RT, 1; \
106 dep temp
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-ia64/
H A Dmca_asm.h29 dep addr = 0, addr, 61, 3
37 dep addr = 0, addr, 61, 3
46 dep addr = temp, addr, 61, 3
75 dep old_psr = 0, old_psr, 32, 32; \
93 dep temp2 = 0, temp2, PSR_IC, 2; \
98 dep temp1 = 0, temp1, 32, 32; \
100 dep temp1 = 0, temp1, PSR_IT, 1; \
102 dep temp1 = 0, temp1, PSR_DT, 1; \
104 dep temp1 = 0, temp1, PSR_RT, 1; \
106 dep temp
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/sun3/prom/
H A DMakefile5 # Note! Dependencies are done automagically by 'make dep', which also
19 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/cris/boot/
H A DMakefile10 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sparc64/boot/
H A DMakefile22 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/tools/
H A DMakefile34 dep:
39 .PHONY: all dep
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/boot/
H A DMakefile32 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/sched/
H A Dsch_sfq.c121 struct sfq_head dep[SFQ_DEPTH*2]; /* Linked list of slots, indexed by depth */ member in struct:sfq_sched_data
179 n = q->dep[d].next;
180 q->dep[x].next = n;
181 q->dep[x].prev = p;
182 q->dep[p].next = q->dep[n].prev = x;
189 n = q->dep[x].next;
190 p = q->dep[x].prev;
191 q->dep[p].next = n;
192 q->dep[
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips64/boot/
H A DMakefile32 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sh/boot/
H A DMakefile28 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/mips/boot/
H A DMakefile39 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/kernel/
H A Dmodule.c356 struct module_ref *dep; local
516 for (i = 0, dep = mod->deps; i < mod->ndeps; ++i, ++dep) {
517 struct module *o, *d = dep->dep;
538 for (i = 0, dep = mod->deps; i < mod->ndeps; ++i, ++dep) {
539 struct module *d = dep->dep;
541 dep
1036 struct module_ref *dep; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/scripts/
H A DMenuconfig219 dep=y
225 dep=m
228 dep=n
232 if [ "$dep" = y ]; then
234 elif [ "$dep" = m ]; then
248 dep=y
254 dep=n
258 if [ "$dep" = y ]; then
268 dep=y
274 dep
[all...]
H A Dtkparse.c634 struct dependency * dep; local
639 for ( dep = cfg->depend; dep; dep = dep->next )
642 && ! strcmp( dep->name, "CONSTANT_M" ) )
662 dep->name, dep->name );
665 dep->name, dep
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/sn/kernel/
H A Dsn_asm.S89 (p6) dep r8=-1,r8,0,1;;
90 (p7) dep r8=-1,r8,1,1;;
91 (p8) dep r8=-1,r8,2,1;;
92 (p9) dep r8=-1,r8,3,1;;
93 (p10) dep r8=-1,r8,4,1;;
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390/boot/
H A DMakefile4 # Note! Dependencies are done automagically by 'make dep', which also
33 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390x/boot/
H A DMakefile4 # Note! Dependencies are done automagically by 'make dep', which also
33 dep:
/asus-wl-520gu-7.0.1.45/src/router/busybox/scripts/
H A Ddepmod.pl46 "\t-n --stdout\t\tWrite to stdout instead of modules.dep\n",
108 push @{$dep->{$tgtname}}, $1;
116 foreach $module (keys %$dep) {
118 foreach (@{$dep->{$module}}) {
203 Write to stdout instead of modules.dep. This is currently hard coded...
/asus-wl-520gu-7.0.1.45/src/router/dosfstools/mkdosfs/
H A DMakefile31 dep:
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/sn/fakeprom/
H A Dfpromasm.S92 dep r6 = 0,r6,0,36 // r6 = base memory address of node
194 dep r10 = r3, r10, 61, 3
195 dep r2 = r3, r2, RR_RID, 4;;
196 (p7) dep r2 = 0, r2, 0, 1;;
197 (p6) dep r2 = -1, r2, 0, 1;;
222 dep r2=0,r2,61,3;; // convert to phys mode

Completed in 280 milliseconds

12345