Searched refs:expr (Results 1 - 25 of 392) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/w1/
H A Dw1_log.h28 # define assert(expr) do {} while (0)
30 # define assert(expr) \
31 if(unlikely(!(expr))) { \
33 #expr,__FILE__,__FUNCTION__,__LINE__); \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/support/
H A Ddebug.h34 extern void assfail(char *expr, char *f, int l);
36 #define ASSERT_ALWAYS(expr) \
37 (unlikely((expr) != 0) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
40 # define ASSERT(expr) ((void)0)
52 # define ASSERT(expr) ASSERT_ALWAYS(expr)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/config/
H A Dexpr.h43 struct expr *expr; member in union:expr_data
47 struct expr { struct
57 #define E_EXPR(ev) ((ev).expr)
65 struct expr *expr; member in struct:expr_value
95 struct expr *dep, *dep2;
145 struct expr *dep;
146 struct expr *dep2;
168 struct expr *de
[all...]
H A Dexpr.c13 struct expr *expr_alloc_symbol(struct symbol *sym)
15 struct expr *e = malloc(sizeof(*e));
22 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce)
24 struct expr *e = malloc(sizeof(*e));
27 e->left.expr = ce;
31 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2)
33 struct expr *
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/
H A Dexpr.h39 struct expr *expr; member in union:expr_data
43 struct expr { struct
53 struct expr *expr; member in struct:expr_value
75 struct expr *dep, *dep2;
112 struct expr *expr; member in struct:property
133 struct expr *dep;
153 struct expr *expr_alloc_symbo
[all...]
H A Dexpr.c15 struct expr *expr_alloc_symbol(struct symbol *sym)
17 struct expr *e = malloc(sizeof(*e));
24 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce)
26 struct expr *e = malloc(sizeof(*e));
29 e->left.expr = ce;
33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2)
35 struct expr *
[all...]
H A Dmenu.c77 struct expr *menu_check_dep(struct expr *e)
84 e->left.expr = menu_check_dep(e->left.expr);
88 e->left.expr = menu_check_dep(e->left.expr);
89 e->right.expr = menu_check_dep(e->right.expr);
102 void menu_add_dep(struct expr *dep)
122 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *exp argument
145 menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) argument
[all...]
H A Dlkc.h9 #include "expr.h"
76 void menu_add_dep(struct expr *dep);
77 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep);
78 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
79 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
80 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *de
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/kconfig/
H A Dexpr.h39 struct expr *expr; member in union:expr_data
43 struct expr { struct
53 struct expr *expr; member in struct:expr_value
81 struct expr *dep, *dep2;
119 struct expr *expr; member in struct:property
140 struct expr *dep;
161 struct expr *expr_alloc_symbo
[all...]
H A Dexpr.c15 struct expr *expr_alloc_symbol(struct symbol *sym)
17 struct expr *e = malloc(sizeof(*e));
24 struct expr *expr_alloc_one(enum expr_type type, struct expr *ce)
26 struct expr *e = malloc(sizeof(*e));
29 e->left.expr = ce;
33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2)
35 struct expr *
[all...]
H A Dmenu.c77 struct expr *menu_check_dep(struct expr *e)
84 e->left.expr = menu_check_dep(e->left.expr);
88 e->left.expr = menu_check_dep(e->left.expr);
89 e->right.expr = menu_check_dep(e->right.expr);
102 void menu_add_dep(struct expr *dep)
122 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *exp argument
150 menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep) argument
[all...]
H A Dlkc.h9 #include "expr.h"
81 void menu_add_dep(struct expr *dep);
82 struct property *menu_add_prop(enum prop_type type, char *prompt, struct expr *expr, struct expr *dep);
83 struct property *menu_add_prompt(enum prop_type type, char *prompt, struct expr *dep);
84 void menu_add_expr(enum prop_type type, struct expr *expr, struct expr *dep);
85 void menu_add_symbol(enum prop_type type, struct symbol *sym, struct expr *de
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-tests/
H A Dtest-fopen.c24 #define ASSERT(expr) \
27 if (!(expr)) \
H A Dtest-open.c26 #define ASSERT(expr) \
29 if (!(expr)) \
H A Dtest-byteswap.c26 #define ASSERT(expr) \
29 if (!(expr)) \
H A Dtest-fstrcmp.c27 #define ASSERT(expr) \
30 if (!(expr)) \
H A Dtest-strerror.c27 #define ASSERT(expr) \
30 if (!(expr)) \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/unit/
H A Dcurlcheck.h25 #define fail_if(expr, msg) \
26 if(expr) { \
28 __FILE__, __LINE__, #expr, msg); \
32 #define fail_unless(expr, msg) \
33 if(!(expr)) { \
35 __FILE__, __LINE__, #expr, msg); \
56 #define abort_if(expr, msg) \
57 if(expr) { \
59 __FILE__, __LINE__, #expr, msg); \
64 #define abort_unless(expr, ms
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/include/curl/
H A Dtypecheck-gcc.h345 /* XXX: should evaluate to true iff expr is a pointer */
346 #define _curl_is_any_ptr(expr) \
347 (sizeof(expr) == sizeof(void*))
349 /* evaluates to true if expr is NULL */
350 /* XXX: must not evaluate expr, so this check is not accurate */
351 #define _curl_is_NULL(expr) \
352 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
354 /* evaluates to true if expr is type*, const type* or NULL */
355 #define _curl_is_ptr(expr, type) \
356 (_curl_is_NULL(expr) || \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tmp.bak/include/curl/
H A Dtypecheck-gcc.h345 /* XXX: should evaluate to true iff expr is a pointer */
346 #define _curl_is_any_ptr(expr) \
347 (sizeof(expr) == sizeof(void*))
349 /* evaluates to true if expr is NULL */
350 /* XXX: must not evaluate expr, so this check is not accurate */
351 #define _curl_is_NULL(expr) \
352 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
354 /* evaluates to true if expr is type*, const type* or NULL */
355 #define _curl_is_ptr(expr, type) \
356 (_curl_is_NULL(expr) || \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DtestAutomata.c32 char expr[5000]; local
68 while (fgets(expr, 4500, input) != NULL) {
69 if (expr[0] == '#')
71 len = strlen(expr);
74 ((expr[len] == '\n') || (expr[len] == '\t') ||
75 (expr[len] == '\r') || (expr[len] == ' '))) len--;
76 expr[len + 1] = 0;
78 if ((am != NULL) && (expr[
[all...]
H A DtestRegexp.c92 xmlExpNodePtr expr = NULL, sub; local
116 if (expr != NULL) {
117 xmlExpFree(ctxt, expr);
121 expr = NULL;
124 expr = xmlExpParse(ctxt, str);
125 if (expr == NULL) {
129 } else if (expr != NULL) {
147 ret = xmlExpSubsume(ctxt, expr, sub);
175 if (expr != NULL) {
176 xmlExpFree(ctxt, expr);
185 testReduce(xmlExpCtxtPtr ctxt, xmlExpNodePtr expr, const char *tst) argument
217 exprDebug(xmlExpCtxtPtr ctxt, xmlExpNodePtr expr) argument
273 xmlExpNodePtr expr = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/python/tests/
H A Dxpathleak.py30 for expr in (":false()","bad:()","bad(:)",":bad(:)","bad:(:)","bad:bad(:)"):
32 ctxt.xpathEval(expr)
36 print "Unexpectedly legal expression:", expr
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Demp_ematch.y31 %type <e> match expr
38 | expr
40 | expr error
47 expr: label
50 | match relation expr
66 | invert '(' expr ')'
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/scripts/
H A Ddownload60 dir=`expr $dir + 1`
77 n=`expr $n + 1`
78 dir=`expr $dir + 1`

Completed in 113 milliseconds

1234567891011>>