Searched refs:EXPR (Results 1 - 25 of 45) sorted by relevance

12

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/
H A Dax-gdb.h95 /* Given a GDB expression EXPR, translate it into the agent bytecode,
97 extern struct agent_expr *expr_to_agent (struct expression *EXPR,
100 /* Given a GDB expression EXPR denoting an lvalue in memory, produce a
103 extern struct agent_expr *expr_to_address_and_size (struct expression *EXPR);
105 /* Given a GDB expression EXPR, return bytecode to trace its value.
H A Dax.h150 /* Append a simple operator OP to EXPR. */
151 extern void ax_simple (struct agent_expr *EXPR, enum agent_op OP);
154 #define ax_float(EXPR) (ax_simple ((EXPR), aop_float))
156 /* Append a sign-extension instruction to EXPR, to extend an N-bit value. */
157 extern void ax_ext (struct agent_expr *EXPR, int N);
159 /* Append a zero-extension instruction to EXPR, to extend an N-bit value. */
160 extern void ax_zero_ext (struct agent_expr *EXPR, int N);
162 /* Append a trace_quick instruction to EXPR, to record N bytes. */
163 extern void ax_trace_quick (struct agent_expr *EXPR, in
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/
H A Dax-gdb.h95 /* Given a GDB expression EXPR, translate it into the agent bytecode,
97 extern struct agent_expr *expr_to_agent (struct expression *EXPR,
100 /* Given a GDB expression EXPR denoting an lvalue in memory, produce a
103 extern struct agent_expr *expr_to_address_and_size (struct expression *EXPR);
105 /* Given a GDB expression EXPR, return bytecode to trace its value.
H A Dax.h150 /* Append a simple operator OP to EXPR. */
151 extern void ax_simple (struct agent_expr *EXPR, enum agent_op OP);
154 #define ax_float(EXPR) (ax_simple ((EXPR), aop_float))
156 /* Append a sign-extension instruction to EXPR, to extend an N-bit value. */
157 extern void ax_ext (struct agent_expr *EXPR, int N);
159 /* Append a zero-extension instruction to EXPR, to extend an N-bit value. */
160 extern void ax_zero_ext (struct agent_expr *EXPR, int N);
162 /* Append a trace_quick instruction to EXPR, to record N bytes. */
163 extern void ax_trace_quick (struct agent_expr *EXPR, in
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/
H A Dax-gdb.h95 /* Given a GDB expression EXPR, translate it into the agent bytecode,
97 extern struct agent_expr *expr_to_agent (struct expression *EXPR,
100 /* Given a GDB expression EXPR denoting an lvalue in memory, produce a
103 extern struct agent_expr *expr_to_address_and_size (struct expression *EXPR);
105 /* Given a GDB expression EXPR, return bytecode to trace its value.
H A Dax.h150 /* Append a simple operator OP to EXPR. */
151 extern void ax_simple (struct agent_expr *EXPR, enum agent_op OP);
154 #define ax_float(EXPR) (ax_simple ((EXPR), aop_float))
156 /* Append a sign-extension instruction to EXPR, to extend an N-bit value. */
157 extern void ax_ext (struct agent_expr *EXPR, int N);
159 /* Append a zero-extension instruction to EXPR, to extend an N-bit value. */
160 extern void ax_zero_ext (struct agent_expr *EXPR, int N);
162 /* Append a trace_quick instruction to EXPR, to record N bytes. */
163 extern void ax_trace_quick (struct agent_expr *EXPR, in
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/miniupnpc/
H A Dupdateminiupnpcstrings.sh43 EXPR="s|OS_STRING \".*\"|OS_STRING \"${OS_NAME}/${OS_VERSION}\"|"
44 #echo $EXPR
47 sed -e "$EXPR" < $TEMPLATE_FILE > $TMPFILE
49 EXPR="s|MINIUPNPC_VERSION_STRING \".*\"|MINIUPNPC_VERSION_STRING \"${MINIUPNPC_VERSION}\"|"
51 sed -e "$EXPR" < $TMPFILE > $FILE
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/miniupnpc/
H A Dupdateminiupnpcstrings.sh43 EXPR="s|OS_STRING \".*\"|OS_STRING \"${OS_NAME}/${OS_VERSION}\"|"
44 #echo $EXPR
47 sed -e "$EXPR" < $TEMPLATE_FILE > $TMPFILE
49 EXPR="s|MINIUPNPC_VERSION_STRING \".*\"|MINIUPNPC_VERSION_STRING \"${MINIUPNPC_VERSION}\"|"
51 sed -e "$EXPR" < $TMPFILE > $FILE
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/miniupnpc/
H A Dupdateminiupnpcstrings.sh43 EXPR="s|OS_STRING \".*\"|OS_STRING \"${OS_NAME}/${OS_VERSION}\"|"
44 #echo $EXPR
47 sed -e "$EXPR" < $TEMPLATE_FILE > $TMPFILE
49 EXPR="s|MINIUPNPC_VERSION_STRING \".*\"|MINIUPNPC_VERSION_STRING \"${MINIUPNPC_VERSION}\"|"
51 sed -e "$EXPR" < $TMPFILE > $FILE
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/lib/gcc/arm-none-eabi/4.8.1/plugin/include/
H A Dggc.h90 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
92 #define ggc_test_and_set_mark(EXPR) \
93 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
95 #define ggc_mark(EXPR) \
97 const void *const a__ = (EXPR); \
H A Dsystem.h682 /* Use gcc_assert(EXPR) to test invariants. */
684 #define gcc_assert(EXPR) \
685 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
687 #define gcc_assert(EXPR) \
688 ((void)(__builtin_expect(!(EXPR), 0) ? __builtin_unreachable(), 0 : 0))
690 /* Include EXPR, so that unused variable warnings do not occur. */
691 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
695 #define gcc_checking_assert(EXPR) gcc_assert (EXPR)
[all...]
H A Dline-map.h569 #define linemap_assert(EXPR) \
571 if (! (EXPR)) \
581 #define linemap_assert(EXPR)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/avahi-0.6.31/initscript/debian/
H A Davahi-daemon.in48 EXPR=/usr/bin/expr
49 if [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
52 COL=`$EXPR $COLS - 7`
H A Davahi-dnsconfd.in48 EXPR=/usr/bin/expr
49 if [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
52 COL=`$EXPR $COLS - 7`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/avahi-0.6.31/initscript/debian/
H A Davahi-daemon.in48 EXPR=/usr/bin/expr
49 if [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
52 COL=`$EXPR $COLS - 7`
H A Davahi-dnsconfd.in48 EXPR=/usr/bin/expr
49 if [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
52 COL=`$EXPR $COLS - 7`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/testsuite/gdb.cp/
H A Dvirtfunc.cc154 #define TEST(EXPR, EXPECTED) \
155 ret = EXPR; \
157 printf("Failed %s is %d, should be %d!\n", #EXPR, ret, EXPECTED); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/avahi-0.6.31/initscript/debian/
H A Davahi-daemon.in48 EXPR=/usr/bin/expr
49 if [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
52 COL=`$EXPR $COLS - 7`
H A Davahi-dnsconfd.in48 EXPR=/usr/bin/expr
49 if [ -x $TPUT ] && [ -x $EXPR ] && $TPUT hpa 60 >/dev/null 2>&1; then
52 COL=`$EXPR $COLS - 7`
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/gdb/testsuite/gdb.cp/
H A Dvirtfunc.cc154 #define TEST(EXPR, EXPECTED) \
155 ret = EXPR; \
157 printf("Failed %s is %d, should be %d!\n", #EXPR, ret, EXPECTED); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/gdb/testsuite/gdb.cp/
H A Dvirtfunc.cc154 #define TEST(EXPR, EXPECTED) \
155 ret = EXPR; \
157 printf("Failed %s is %d, should be %d!\n", #EXPR, ret, EXPECTED); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/lib/gcc/arm-brcm-linux-uclibcgnueabi/4.5.3/plugin/include/
H A Dggc.h97 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
99 #define ggc_test_and_set_mark(EXPR) \
100 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
102 #define ggc_mark(EXPR) \
104 const void *const a__ = (EXPR); \
H A Dsystem.h592 /* Use gcc_assert(EXPR) to test invariants. */
594 #define gcc_assert(EXPR) \
595 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
597 #define gcc_assert(EXPR) \
598 ((void)(__builtin_expect(!(EXPR), 0) ? __builtin_unreachable(), 0 : 0))
600 /* Include EXPR, so that unused variable warnings do not occur. */
601 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2011.09/lib/gcc/arm-none-eabi/4.6.1/plugin/include/
H A Dggc.h95 /* If EXPR is not NULL and previously unmarked, mark it and evaluate
97 #define ggc_test_and_set_mark(EXPR) \
98 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR))
100 #define ggc_mark(EXPR) \
102 const void *const a__ = (EXPR); \
H A Dsystem.h633 /* Use gcc_assert(EXPR) to test invariants. */
635 #define gcc_assert(EXPR) \
636 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
638 #define gcc_assert(EXPR) \
639 ((void)(__builtin_expect(!(EXPR), 0) ? __builtin_unreachable(), 0 : 0))
641 /* Include EXPR, so that unused variable warnings do not occur. */
642 #define gcc_assert(EXPR) ((void)(0 && (EXPR)))
646 #define gcc_checking_assert(EXPR) gcc_assert (EXPR)
[all...]

Completed in 251 milliseconds

12