Searched refs:sym (Results 1 - 25 of 241) sorted by relevance

12345678910

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-v850/
H A Dmacrology.h16 #define macrology_stringify(sym) macrology_stringify_1(sym)
17 #define macrology_stringify_1(sym) #sym
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/config/
H A Dsymbol.c35 void sym_add_default(struct symbol *sym, const char *def) argument
40 prop->sym = sym;
44 if (prop->sym) {
45 for (propp = &prop->sym->prop; *propp; propp = &(*propp)->next)
53 struct symbol *sym; local
65 sym = sym_lookup("VERSION", 0);
66 sym->type = S_STRING;
67 sym->flags |= SYMBOL_AUTO;
70 sym_add_default(sym,
81 sym_get_type(struct symbol *sym) argument
115 sym_get_choice_prop(struct symbol *sym) argument
124 sym_get_default_prop(struct symbol *sym) argument
137 sym_calc_visibility(struct symbol *sym) argument
153 sym_calc_value(struct symbol *sym) argument
289 struct symbol *sym; local
299 struct symbol *sym; local
306 sym_tristate_within_range(struct symbol *sym, tristate val) argument
331 sym_set_tristate_value(struct symbol *sym, tristate val) argument
359 sym_toggle_tristate_value(struct symbol *sym) argument
382 sym_string_valid(struct symbol *sym, const char *str) argument
430 sym_set_string_value(struct symbol *sym, const char *newval) argument
482 sym_get_string_value(struct symbol *sym) argument
505 sym_is_changable(struct symbol *sym) argument
[all...]
H A Dconfdata.c30 struct symbol *sym; local
44 sym = sym_lookup(name, 0);
45 sym_calc_value(sym);
46 strcat(res_value, sym_get_string_value(sym));
65 struct symbol *sym; local
89 for_all_symbols(i, sym) {
90 sym->flags |= SYMBOL_NEW | SYMBOL_CHANGED;
91 sym->flags &= ~SYMBOL_VALID;
92 switch (sym->type) {
96 if (S_VAL(sym
219 struct symbol *sym; local
[all...]
H A Dconf.c75 static void conf_askvalue(struct symbol *sym, const char *def) argument
77 enum symbol_type type = sym_get_type(sym);
80 if (!sym_has_value(sym))
89 if (sym_has_value(sym)) {
121 if (sym_tristate_within_range(sym, yes)) {
129 if (sym_tristate_within_range(sym, mod)) {
136 if (sym_tristate_within_range(sym, yes)) {
144 if (sym_tristate_within_range(sym, no)) {
153 } while (!sym_tristate_within_range(sym, val));
170 struct symbol *sym local
204 struct symbol *sym = menu->sym; local
278 struct symbol *sym, *def_sym; local
370 struct symbol *sym; local
432 struct symbol *sym; local
[all...]
H A Dlkc.h48 void menu_add_entry(struct symbol *sym);
65 static inline tristate sym_get_tristate_value(struct symbol *sym) argument
67 return S_TRI(sym->curr);
71 static inline struct symbol *sym_get_choice_value(struct symbol *sym) argument
73 return (struct symbol *)S_VAL(sym->curr);
81 static inline bool sym_is_choice(struct symbol *sym) argument
83 return sym->flags & SYMBOL_CHOICE ? true : false;
86 static inline bool sym_is_choice_value(struct symbol *sym) argument
88 return sym->flags & SYMBOL_CHOICEVAL ? true : false;
91 static inline bool sym_is_optional(struct symbol *sym) argument
96 sym_has_value(struct symbol *sym) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/
H A Dconfdata.c46 struct symbol *sym; local
60 sym = sym_lookup(name, 0);
61 sym_calc_value(sym);
62 strcat(res_value, sym_get_string_value(sym));
91 struct symbol *sym; local
117 for_all_symbols(i, sym) {
118 sym->flags |= SYMBOL_NEW | SYMBOL_CHANGED;
119 if (sym_is_choice(sym))
120 sym->flags &= ~SYMBOL_NEW;
121 sym
271 struct symbol *sym; local
334 struct symbol *sym; local
[all...]
H A Dsymbol.c37 void sym_add_default(struct symbol *sym, const char *def) argument
39 struct property *prop = prop_alloc(P_DEFAULT, sym);
46 struct symbol *sym; local
57 sym = sym_lookup("ARCH", 0);
58 sym->type = S_STRING;
59 sym->flags |= SYMBOL_AUTO;
62 sym_add_default(sym, p);
64 sym = sym_lookup("KERNELVERSION", 0);
65 sym->type = S_STRING;
66 sym
77 sym_get_type(struct symbol *sym) argument
111 sym_get_choice_prop(struct symbol *sym) argument
120 sym_get_default_prop(struct symbol *sym) argument
132 sym_get_range_prop(struct symbol *sym) argument
144 sym_get_range_val(struct symbol *sym, int base) argument
160 sym_validate_range(struct symbol *sym) argument
193 sym_calc_visibility(struct symbol *sym) argument
223 sym_calc_choice(struct symbol *sym) argument
262 sym_calc_value(struct symbol *sym) argument
373 struct symbol *sym; local
383 sym_set_changed(struct symbol *sym) argument
396 struct symbol *sym; local
403 sym_tristate_within_range(struct symbol *sym, tristate val) argument
422 sym_set_tristate_value(struct symbol *sym, tristate val) argument
461 sym_toggle_tristate_value(struct symbol *sym) argument
484 sym_string_valid(struct symbol *sym, const char *str) argument
527 sym_string_within_range(struct symbol *sym, const char *str) argument
569 sym_set_string_value(struct symbol *sym, const char *newval) argument
618 sym_get_string_value(struct symbol *sym) argument
641 sym_is_changable(struct symbol *sym) argument
723 struct symbol *sym, **sym_arr = NULL; local
762 struct symbol *sym; local
790 sym_check_deps(struct symbol *sym) argument
831 prop_alloc(enum prop_type type, struct symbol *sym) argument
[all...]
H A Dmenu.c44 void menu_add_entry(struct symbol *sym) argument
50 menu->sym = sym;
93 if (e->left.sym == &symbol_mod)
109 struct symbol *sym = current_entry->sym; local
111 if (sym->type == type)
113 if (sym->type == S_UNKNOWN) {
114 sym->type = type;
118 sym
150 menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) argument
155 menu_range_valid_sym(struct symbol *sym, struct symbol *sym2) argument
161 sym_check_prop(struct symbol *sym) argument
208 struct symbol *sym; local
349 struct symbol *sym; local
[all...]
H A Dconf.c67 static void conf_askvalue(struct symbol *sym, const char *def) argument
69 enum symbol_type type = sym_get_type(sym);
72 if (!sym_has_value(sym))
78 if (!sym_is_changable(sym)) {
90 if (sym_has_value(sym)) {
97 if (sym_has_value(sym)) {
124 if (sym_tristate_within_range(sym, yes)) {
132 if (sym_tristate_within_range(sym, mod)) {
139 if (sym_tristate_within_range(sym, yes)) {
147 if (sym_tristate_within_range(sym, n
173 struct symbol *sym = menu->sym; local
207 struct symbol *sym = menu->sym; local
281 struct symbol *sym, *def_sym; local
410 struct symbol *sym; local
472 struct symbol *sym; local
[all...]
H A Dlkc.h74 void menu_add_entry(struct symbol *sym);
80 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
102 void sym_set_changed(struct symbol *sym);
103 struct symbol *sym_check_deps(struct symbol *sym);
104 struct property *prop_alloc(enum prop_type type, struct symbol *sym);
107 static inline tristate sym_get_tristate_value(struct symbol *sym) argument
109 return sym->curr.tri;
113 static inline struct symbol *sym_get_choice_value(struct symbol *sym) argument
115 return (struct symbol *)sym->curr.val;
123 static inline bool sym_is_choice(struct symbol *sym) argument
128 sym_is_choice_value(struct symbol *sym) argument
133 sym_is_optional(struct symbol *sym) argument
138 sym_has_value(struct symbol *sym) argument
[all...]
H A Dlkc_proto.h24 P(sym_calc_value,void,(struct symbol *sym));
25 P(sym_get_type,enum symbol_type,(struct symbol *sym));
26 P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
27 P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri));
28 P(sym_toggle_tristate_value,tristate,(struct symbol *sym));
29 P(sym_string_valid,bool,(struct symbol *sym, const char *newval));
30 P(sym_string_within_range,bool,(struct symbol *sym, const char *str));
31 P(sym_set_string_value,bool,(struct symbol *sym, const char *newval));
32 P(sym_is_changable,bool,(struct symbol *sym));
33 P(sym_get_choice_prop,struct property *,(struct symbol *sym));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/kconfig/
H A Dconfdata.c46 struct symbol *sym; local
60 sym = sym_lookup(name, 0);
61 sym_calc_value(sym);
62 strcat(res_value, sym_get_string_value(sym));
91 struct symbol *sym; local
111 name = conf_expand_value(prop->expr->left.sym->name);
131 for_all_symbols(i, sym) {
132 sym->flags |= SYMBOL_CHANGED;
133 sym->flags &= ~(def_flags|SYMBOL_VALID);
134 if (sym_is_choice(sym))
310 struct symbol *sym; local
375 struct symbol *sym; local
540 struct symbol *sym; local
651 struct symbol *sym; local
[all...]
H A Dsymbol.c37 void sym_add_default(struct symbol *sym, const char *def) argument
39 struct property *prop = prop_alloc(P_DEFAULT, sym);
46 struct symbol *sym; local
57 sym = sym_lookup("ARCH", 0);
58 sym->type = S_STRING;
59 sym->flags |= SYMBOL_AUTO;
62 sym_add_default(sym, p);
64 sym = sym_lookup("KERNELVERSION", 0);
65 sym->type = S_STRING;
66 sym
77 sym_get_type(struct symbol *sym) argument
111 sym_get_choice_prop(struct symbol *sym) argument
120 sym_get_default_prop(struct symbol *sym) argument
132 sym_get_range_prop(struct symbol *sym) argument
144 sym_get_range_val(struct symbol *sym, int base) argument
160 sym_validate_range(struct symbol *sym) argument
193 sym_calc_visibility(struct symbol *sym) argument
223 sym_calc_choice(struct symbol *sym) argument
262 sym_calc_value(struct symbol *sym) argument
376 struct symbol *sym; local
386 sym_set_changed(struct symbol *sym) argument
399 struct symbol *sym; local
406 sym_tristate_within_range(struct symbol *sym, tristate val) argument
425 sym_set_tristate_value(struct symbol *sym, tristate val) argument
461 sym_toggle_tristate_value(struct symbol *sym) argument
484 sym_string_valid(struct symbol *sym, const char *str) argument
527 sym_string_within_range(struct symbol *sym, const char *str) argument
569 sym_set_string_value(struct symbol *sym, const char *newval) argument
618 sym_get_string_value(struct symbol *sym) argument
641 sym_is_changable(struct symbol *sym) argument
722 struct symbol *sym, **sym_arr = NULL; local
761 struct symbol *sym; local
790 sym_check_deps(struct symbol *sym) argument
827 prop_alloc(enum prop_type type, struct symbol *sym) argument
[all...]
H A Dmenu.c44 void menu_add_entry(struct symbol *sym) argument
50 menu->sym = sym;
93 if (e->left.sym == &symbol_mod)
109 struct symbol *sym = current_entry->sym; local
111 if (sym->type == type)
113 if (sym->type == S_UNKNOWN) {
114 sym->type = type;
118 sym
155 menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep) argument
178 menu_range_valid_sym(struct symbol *sym, struct symbol *sym2) argument
184 sym_check_prop(struct symbol *sym) argument
231 struct symbol *sym; local
371 struct symbol *sym; local
[all...]
H A Dconf.c67 static void conf_askvalue(struct symbol *sym, const char *def) argument
69 enum symbol_type type = sym_get_type(sym);
72 if (!sym_has_value(sym))
78 if (!sym_is_changable(sym)) {
90 if (sym_has_value(sym)) {
97 if (sym_has_value(sym)) {
124 if (sym_tristate_within_range(sym, yes)) {
132 if (sym_tristate_within_range(sym, mod)) {
139 if (sym_tristate_within_range(sym, yes)) {
147 if (sym_tristate_within_range(sym, n
173 struct symbol *sym = menu->sym; local
207 struct symbol *sym = menu->sym; local
281 struct symbol *sym, *def_sym; local
410 struct symbol *sym; local
472 struct symbol *sym; local
[all...]
H A Dlkc.h79 void menu_add_entry(struct symbol *sym);
85 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *dep);
109 void sym_set_changed(struct symbol *sym);
110 struct symbol *sym_check_deps(struct symbol *sym);
111 struct property *prop_alloc(enum prop_type type, struct symbol *sym);
114 static inline tristate sym_get_tristate_value(struct symbol *sym) argument
116 return sym->curr.tri;
120 static inline struct symbol *sym_get_choice_value(struct symbol *sym) argument
122 return (struct symbol *)sym->curr.val;
130 static inline bool sym_is_choice(struct symbol *sym) argument
135 sym_is_choice_value(struct symbol *sym) argument
140 sym_is_optional(struct symbol *sym) argument
145 sym_has_value(struct symbol *sym) argument
[all...]
H A Dlkc_proto.h26 P(sym_calc_value,void,(struct symbol *sym));
27 P(sym_get_type,enum symbol_type,(struct symbol *sym));
28 P(sym_tristate_within_range,bool,(struct symbol *sym,tristate tri));
29 P(sym_set_tristate_value,bool,(struct symbol *sym,tristate tri));
30 P(sym_toggle_tristate_value,tristate,(struct symbol *sym));
31 P(sym_string_valid,bool,(struct symbol *sym, const char *newval));
32 P(sym_string_within_range,bool,(struct symbol *sym, const char *str));
33 P(sym_set_string_value,bool,(struct symbol *sym, const char *newval));
34 P(sym_is_changable,bool,(struct symbol *sym));
35 P(sym_get_choice_prop,struct property *,(struct symbol *sym));
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/sysdep-i386/
H A Dkernel-offsets.h7 #define DEFINE(sym, val) \
8 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
11 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " STR(val) " " #val: : )
15 #define OFFSET(sym, str, mem) \
16 DEFINE(sym, offsetof(struct str, mem));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/kernel/
H A Dsyscall.c10 #define __SYSCALL(nr, sym) extern asmlinkage void sym(void) ;
15 #define __SYSCALL(nr, sym) [ nr ] = sym,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/sysdep-x86_64/
H A Dkernel-offsets.h9 #define DEFINE(sym, val) \
10 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
13 #define DEFINE_STR(sym, val) asm volatile("\n->" #sym " " DEFINE_STR1(val) " " #val: : )
17 #define OFFSET(sym, str, mem) \
18 DEFINE(sym, offsetof(struct str, mem));
23 #define __SYSCALL(nr, sym) [nr] = 1,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/util/
H A Dfiles.pl35 $o =~ s/\$[({]([^)}]+)[)}]/$sym{$1}/g;
36 $sym{$s}=$o;
42 if ($sym{'TOP'} eq ".")
48 $n=split(/\//,$sym{'TOP'});
57 foreach (sort keys %sym)
59 print "$_=$sym{$_}\n";
H A Dmkfiles.pl78 my %sym;
111 $o =~ s/\$[({]([^)}]+)[)}]/$sym{$1}/g;
112 $sym{$s}=$o;
118 foreach (sort keys %sym)
120 print "$_=$sym{$_}\n";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/util/
H A Dfiles.pl35 $o =~ s/\$[({]([^)}]+)[)}]/$sym{$1}/g;
36 $sym{$s}=$o;
42 if ($sym{'TOP'} eq ".")
48 $n=split(/\//,$sym{'TOP'});
57 foreach (sort keys %sym)
59 print "$_=$sym{$_}\n";
H A Dmkfiles.pl76 my %sym;
109 $o =~ s/\$[({]([^)}]+)[)}]/$sym{$1}/g;
110 $sym{$s}=$o;
116 foreach (sort keys %sym)
118 print "$_=$sym{$_}\n";
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/kernel/
H A Dasm-offsets.c9 #define DEFINE(sym, val) \
10 asm volatile("\n->" #sym " %0 " #val : : "i" (val))
14 #define OFFSET(sym, str, mem) \
15 DEFINE(sym, offsetof(struct str, mem));

Completed in 202 milliseconds

12345678910