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

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/w1/
H A Dw1_log.h28 # define assert(expr) do {} while (0)
30 # define assert(expr) \
31 if(unlikely(!(expr))) { \
33 #expr, __FILE__, __func__, __LINE__); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/support/
H A Ddebug.h32 extern void assfail(char *expr, char *f, int l);
34 #define ASSERT_ALWAYS(expr) \
35 (unlikely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
38 #define ASSERT(expr) ((void)0)
46 #define ASSERT(expr) \
47 (unlikely(expr) ? (void)0 : assfail(#expr, __FILE__, __LINE__))
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/kconfig/
H A Dexpr.h38 struct expr *expr; member in union:expr_data
42 struct expr { struct
52 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
55 struct expr *expr; member in struct:expr_value
144 struct expr *expr; /* the optional conditional part of the property */ member in struct:property
167 struct expr *dep;
188 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...]
/netgear-R7000-V1.0.7.12_1.2.5/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...]
/netgear-R7000-V1.0.7.12_1.2.5/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)) \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/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-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/include/curl/
H A Dtypecheck-gcc.h352 /* XXX: should evaluate to true iff expr is a pointer */
353 #define _curl_is_any_ptr(expr) \
354 (sizeof(expr) == sizeof(void*))
356 /* evaluates to true if expr is NULL */
357 /* XXX: must not evaluate expr, so this check is not accurate */
358 #define _curl_is_NULL(expr) \
359 (__builtin_types_compatible_p(__typeof__(expr), __typeof__(NULL)))
361 /* evaluates to true if expr is type*, const type* or NULL */
362 #define _curl_is_ptr(expr, type) \
363 (_curl_is_NULL(expr) || \
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/webserver/src/
H A Dphp_parser.y82 %type <exp_node> expr expr_list for_expr exit_expr const_value function_call func_param_list assignment_list assignment_list_element
160 | expr ';' { $$ = make_expr_syn_node(PHP_ST_EXPR, $1); }
163 | IF '(' expr ')' statement elseif_list else_statement { $$ = make_ifelse_syn_node($3, $5, $6, $7); }
164 | WHILE '(' expr ')' while_statement { $$ = make_while_loop_syn_node($3, $5, 1); }
165 | DO statement WHILE '(' expr ')' ';' { $$ = make_while_loop_syn_node($5, $2, 0); }
167 | SWITCH '(' expr ')' switch_case_list { $$ = make_switch_syn_node($3, $5); }
169 | CONTINUE expr ';' { $$ = make_expr_syn_node(PHP_ST_CONTINUE, $2); }
171 | BREAK expr ';' { $$ = make_expr_syn_node(PHP_ST_BREAK, $2); }
173 | RETURN expr ';' { $$ = make_expr_syn_node(PHP_ST_RET, $2); }
176 | FOREACH '(' expr A
365 expr: label
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/test/
H A Ddbus-test-runner23 passed=`expr $passed + 1`
27 skipped=`expr $skipped + 1`
31 failed=`expr $failed + 1`
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/script/tests/
H A Dtest_local_s3.sh18 failed=`expr $failed + 1`
21 failed=`expr $failed + 1`
H A Dtests_all.sh2 $SCRIPTDIR/test_local_s3.sh || failed=`expr $failed + $?`
3 $SCRIPTDIR/test_smbtorture_s3.sh //$SERVER_IP/tmp $USERNAME $PASSWORD "" || failed=`expr $failed + $?`
4 $SCRIPTDIR/test_smbclient_s3.sh $SERVER $SERVER_IP || failed=`expr $failed + $?`
10 $SCRIPTDIR/test_posix_s3.sh //$SERVER_IP/tmp $USERNAME $PASSWORD "" || failed=`expr $failed + $?`
/netgear-R7000-V1.0.7.12_1.2.5/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...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
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...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/tests/
H A Dmacros.h46 #define ASSERT(expr) \
49 if (!(expr)) \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/deprecated/
H A Dwxexpr.cpp28 #include "wx/deprecated/expr.h"
205 wxExpr *expr = (wxExpr *)node->GetData(); local
206 listExpr->Append(expr);
235 wxExpr *expr = value.first; local
236 while (expr)
238 wxExpr *expr1 = expr->next;
240 delete expr;
241 expr = expr1;
249 void wxExpr::Append(wxExpr *expr) argument
252 value.first = expr;
259 Insert(wxExpr *expr) argument
293 wxExpr *expr = value.first; local
374 wxExpr *expr = value.first; local
412 wxExpr *expr = value.first; local
615 wxExpr *expr = new wxExpr(wxExprString, wxString(string)); local
635 wxExpr *expr = AttributeValue(att); local
648 wxExpr *expr = AttributeValue(att); local
661 wxExpr *expr = AttributeValue(att); local
673 wxExpr *expr = AttributeValue(att); local
685 wxExpr *expr = AttributeValue(att); local
702 wxExpr *expr = AttributeValue(att); local
714 wxExpr *expr = AttributeValue(att); local
846 wxExpr *expr = value.first; local
1015 wxExpr *expr = clause->AttributeValue(attribute_to_hash); local
1057 wxExpr *expr = (wxExpr *)node->GetData(); local
1119 wxExpr *expr = (wxExpr *)node->GetData(); local
1126 add_expr(wxExpr * expr) argument
1132 wxExprIsFunctor(wxExpr *expr, const wxString& functor) argument
1256 wxExpr *expr = (wxExpr *)cexpr; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/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-R7000-V1.0.7.12_1.2.5/ap/gpl/lzo-2.06/src/
H A Dstats1a.h65 # define LZO_STATS(expr) expr
67 # define LZO_STATS(expr) ((void) 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/scripts/perl/bin/
H A Dfailed-syscalls-report5 if ! expr match "$1" "-" > /dev/null ; then

Completed in 258 milliseconds

1234567891011>>