| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | ax.h | 151 extern void ax_simple (struct agent_expr *EXPR, enum agent_op OP); 154 #define ax_float(EXPR) (ax_simple ((EXPR), aop_float)) argument 157 extern void ax_ext (struct agent_expr *EXPR, int N); 160 extern void ax_zero_ext (struct agent_expr *EXPR, int N); 163 extern void ax_trace_quick (struct agent_expr *EXPR, int N); 171 extern int ax_goto (struct agent_expr *EXPR, enum agent_op OP); 177 extern void ax_label (struct agent_expr *EXPR, int patch, int target); 180 extern void ax_const_l (struct agent_expr *EXPR, LONGEST l); 181 extern void ax_const_d (struct agent_expr *EXPR, LONGEST d); 185 extern void ax_reg (struct agent_expr *EXPR, int REG); [all …]
|
| H A D | ax-gdb.h | 98 extern struct agent_expr *expr_to_agent (struct expression *EXPR, 104 extern struct agent_expr *expr_to_address_and_size (struct expression *EXPR);
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/orc/ |
| H A D | compiler.h | 59 #define ORC_RT_LIKELY(EXPR) __builtin_expect((bool)(EXPR), true) argument 60 #define ORC_RT_UNLIKELY(EXPR) __builtin_expect((bool)(EXPR), false) argument 62 #define ORC_RT_LIKELY(EXPR) (EXPR) argument 63 #define ORC_RT_UNLIKELY(EXPR) (EXPR) argument
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/ |
| H A D | m68k-parse.y | 107 %token <exp> EXPR 178 | EXPR 183 | '#' EXPR 188 | '&' EXPR 221 | '(' EXPR ',' zapc ')' 231 | '(' zapc ',' EXPR ')' 241 | EXPR '(' zapc ')' 266 | '(' EXPR ',' zapc ',' zireg ')' 273 | '(' EXPR ',' zapc ',' zpc ')' 284 | '(' EXPR ',' zdireg optczapc ')' [all …]
|
| H A D | tc-avr.h | 56 #define TC_PARSE_CONS_EXPRESSION(EXPR,N) avr_parse_cons_expression (EXPR, N) argument
|
| /openbsd-src/gnu/usr.bin/binutils/gas/config/ |
| H A D | m68k-parse.y | 105 %token <exp> EXPR 151 | EXPR 156 | '#' EXPR 161 | '&' EXPR 194 | '(' EXPR ',' zapc ')' 204 | '(' zapc ',' EXPR ')' 214 | EXPR '(' zapc ')' 239 | '(' EXPR ',' zapc ',' zireg ')' 246 | '(' EXPR ',' zapc ',' zpc ')' 257 | '(' EXPR ',' zdireg optczapc ')' [all …]
|
| H A D | tc-avr.h | 60 #define TC_PARSE_CONS_EXPRESSION(EXPR,N) avr_parse_cons_expression (EXPR,N) argument
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | ggc.h | 67 #define ggc_test_and_set_mark(EXPR) \ argument 68 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR)) 73 #define ggc_mark(EXPR) \ argument 75 const void *const a__ = (EXPR); \
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | tsystem.h | 125 #define gcc_assert(EXPR) ((void)(!(EXPR) ? abort (), 0 : 0)) argument 128 #define gcc_assert(EXPR) ((void)(0 && (EXPR))) argument
|
| H A D | ggc.h | 99 #define ggc_test_and_set_mark(EXPR) \ argument 100 ((EXPR) != NULL && ((void *) (EXPR)) != (void *) 1 && ! ggc_set_mark (EXPR)) 102 #define ggc_mark(EXPR) \ argument 104 const void *const a__ = (EXPR); \
|
| H A D | machmode.def | 57 An EXPR argument must be a syntactically valid C expression. 58 If an EXPR contains commas, you may need to write an extra pair of 133 ADJUST_BYTESIZE (MODE, EXPR); 134 ADJUST_ALIGNMENT (MODE, EXPR); 135 ADJUST_FLOAT_FORMAT (MODE, EXPR); 137 of MODE to be adjustable at run time. EXPR will be executed
|
| H A D | system.h | 576 #define gcc_assert(EXPR) \ argument 577 ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0)) 580 #define gcc_assert(EXPR) ((void)(0 && (EXPR))) argument
|
| H A D | vec.h | 431 #define VEC_ASSERT(EXPR,OP,T,A) \ argument 432 (void)((EXPR) ? 0 : (VEC_ASSERT_FAIL(OP,VEC(T,A)), 0)) 441 #define VEC_ASSERT(EXPR,OP,T,A) (void)(EXPR) argument
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | Compiler.h | 206 #define LLVM_LIKELY(EXPR) __builtin_expect((bool)(EXPR), true) argument 207 #define LLVM_UNLIKELY(EXPR) __builtin_expect((bool)(EXPR), false) argument 209 #define LLVM_LIKELY(EXPR) (EXPR) argument 210 #define LLVM_UNLIKELY(EXPR) (EXPR) argument
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlfunc.pod | 85 L<C<undef>|/undef EXPR> otherwise, as is usually mentioned in the 119 L<C<fc>|/fc EXPR>, L<C<hex>|/hex EXPR>, 120 L<C<index>|/index STR,SUBSTR,POSITION>, L<C<lc>|/lc EXPR>, 121 L<C<lcfirst>|/lcfirst EXPR>, L<C<length>|/length EXPR>, 122 L<C<oct>|/oct EXPR>, L<C<ord>|/ord EXPR>, 128 L<C<substr>|/substr EXPR,OFFSET,LENGTH,REPLACEMENT>, 129 L<C<trE<sol>E<sol>E<sol>>|/trE<sol>E<sol>E<sol>>, L<C<uc>|/uc EXPR>, [all...] |
| H A D | perlsyn.pod | 127 if EXPR 128 unless EXPR 129 while EXPR 130 until EXPR 133 when EXPR 135 The C<EXPR> following the modifier is referred to as the "condition". 224 C<< $_ ~~ I<EXPR> >> is true. If the statement executes, it is followed by 254 if (EXPR) BLOCK 255 if (EXPR) BLOCK else BLOCK 256 if (EXPR) BLOC [all...] |
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.cp/ |
| H A D | virtfunc.cc | 155 #define TEST(EXPR, EXPECTED) \ argument 156 ret = EXPR; \ 158 printf("Failed %s is %d, should be %d!\n", #EXPR, ret, EXPECTED); \
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/java/ |
| H A D | java-tree.h | 1513 #define COMPOUND_ASSIGN_P(EXPR) TREE_LANG_FLAG_1 (EXPR) argument 1520 #define PRIMARY_P(EXPR) TREE_LANG_FLAG_2 (EXPR) argument 1524 #define MODIFY_EXPR_FROM_INITIALIZATION_P(EXPR) TREE_LANG_FLAG_2 (EXPR) argument 1528 #define CLASS_METHOD_CHECKED_P(EXPR) TREE_LANG_FLAG_2 (EXPR) argument 1532 #define HAS_FINALIZER_P(EXPR) TREE_LANG_FLAG_3 (EXPR) argument 1538 #define FOR_LOOP_P(EXPR) TREE_LANG_FLAG_0 (EXPR) argument 1566 #define IS_CRAFTED_STRING_BUFFER_P(EXPR) TREE_LANG_FLAG_5 (EXPR) argument 1570 #define IS_INIT_CHECKED(EXPR) TREE_LANG_FLAG_5 (EXPR) argument 1573 #define CALL_USING_SUPER(EXPR) TREE_LANG_FLAG_4 (EXPR) argument
|
| /openbsd-src/regress/bin/expr/ |
| H A D | expr.sh | 4 : ${EXPR=expr} 8 res=`eval $EXPR $1 2>&1`
|
| /openbsd-src/gnu/llvm/llvm/utils/llvm-lit/ |
| H A D | CMakeLists.txt | 3 math(EXPR file_last "${file_len} - 1") 23 math(EXPR i1 "${i} + 1")
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Perldoc/corpus/ |
| H A D | perlfunc.pod | |
| /openbsd-src/gnu/llvm/llvm/tools/lto/ |
| H A D | CMakeLists.txt | 42 math(EXPR LTO_VERSION "${LLVM_VERSION_MAJOR} + ${LLVM_LTO_VERSION_OFFSET}")
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
| H A D | perlvaro.txt | 11 method HANDLE EXPR 13 HANDLE->method(EXPR) 14 … old value of the IO::Handle attribute. The methods each take an optional EXPR, which if supplied … 67 input_line_number HANDLE EXPR 72 input_record_separator HANDLE EXPR 88 autoflush HANDLE EXPR 92 output_field_separator HANDLE EXPR 97 output_record_separator HANDLE EXPR 122 format_page_number HANDLE EXPR 126 format_lines_per_page HANDLE EXPR [all …]
|
| H A D | perlvar.pod | 29 method HANDLE EXPR 33 HANDLE->method(EXPR) 36 The methods each take an optional EXPR, which if supplied specifies the 212 =item input_line_number HANDLE EXPR 233 =item input_record_separator HANDLE EXPR 286 =item autoflush HANDLE EXPR 304 =item output_field_separator HANDLE EXPR 319 =item output_record_separator HANDLE EXPR 390 =item format_page_number HANDLE EXPR 400 =item format_lines_per_page HANDLE EXPR [all …]
|
| /openbsd-src/gnu/usr.bin/perl/ext/Pod-Html/corpus/ |
| H A D | perlvar-copy.pod | 40 method HANDLE EXPR 44 HANDLE->method(EXPR) 47 The methods each take an optional EXPR, which, if supplied, specifies the 382 =item HANDLE->input_line_number(EXPR) 411 You can also use C<< HANDLE->input_line_number(EXPR) >> to access the 417 =item IO::Handle->input_record_separator(EXPR) 472 =item HANDLE->autoflush(EXPR) 492 =item IO::Handle->output_field_separator EXPR 505 =item IO::Handle->output_record_separator EXPR 561 =item HANDLE->format_page_number(EXPR) [all …]
|