/openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
H A D | TargetOpcodes.def | 229 /// The following generic opcodes are not supposed to appear after ISel. 243 /// Generic ADD instruction. This is an integer add. 247 /// Generic SUB instruction. This is an integer sub. 250 // Generic multiply instruction. 253 // Generic signed division instruction. 256 // Generic unsigned division instruction. 259 // Generic signed remainder instruction. 262 // Generic unsigned remainder instruction. 265 // Generic signed divrem instruction. 268 // Generic unsigned divrem instruction. [all …]
|
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/emulparams/ |
H A D | msp430all.sh | 14 TEMPLATE_NAME=generic 31 TEMPLATE_NAME=generic 48 TEMPLATE_NAME=generic 65 TEMPLATE_NAME=generic 82 TEMPLATE_NAME=generic 99 TEMPLATE_NAME=generic 116 TEMPLATE_NAME=generic 133 TEMPLATE_NAME=generic 150 TEMPLATE_NAME=generic 167 TEMPLATE_NAME=generic [all …]
|
/openbsd-src/gnu/usr.bin/binutils/ld/emulparams/ |
H A D | msp430all.sh | 14 TEMPLATE_NAME=generic 31 TEMPLATE_NAME=generic 48 TEMPLATE_NAME=generic 65 TEMPLATE_NAME=generic 82 TEMPLATE_NAME=generic 99 TEMPLATE_NAME=generic 116 TEMPLATE_NAME=generic 133 TEMPLATE_NAME=generic 150 TEMPLATE_NAME=generic 167 TEMPLATE_NAME=generic [all …]
|
/openbsd-src/gnu/usr.bin/binutils/gdb/tui/ |
H A D | tui-win.c | 1 /* TUI window generic functions. 425 tui_active ? TUI_CMD_WIN->generic.width : screenwidth); in tui_update_gdb_sizes() 428 tui_active ? TUI_CMD_WIN->generic.height : screenheight); in tui_update_gdb_sizes() 442 && win_with_focus->generic.type != CMD_WIN) in tui_set_win_focus_to() 445 if (win_info->generic.type != CMD_WIN) in tui_set_win_focus_to() 459 _num_to_scroll = win_to_scroll->generic.height - 3; in tui_scroll_forward() 483 _num_to_scroll = win_to_scroll->generic.height - 3; in tui_scroll_backward() 577 if (tui_win_list[type] && tui_win_list[type]->generic.is_visible) in tui_refresh_all_win() 626 keypad (TUI_CMD_WIN->generic.handle, FALSE); in tui_resize_all() 650 first_win->generic.width += width_diff; in tui_resize_all() [all …]
|
H A D | tui-winsource.c | 91 if (win_info->generic.type == SRC_WIN) in tui_update_source_window_as_is() 106 if (win_info->generic.type == SRC_WIN) in tui_update_source_window_as_is() 111 (win_info->generic.content_size - 2); in tui_update_source_window_as_is() 205 win_info->generic.content_in_use = FALSE; in tui_clear_source_content() 207 for (i = 0; i < win_info->generic.content_size; i++) in tui_clear_source_content() 210 (struct tui_win_element *) win_info->generic.content[i]; in tui_clear_source_content() 222 int half_width = (win_info->generic.width - 2) / 2; in tui_erase_source_content() 224 if (win_info->generic.handle != (WINDOW *) NULL) in tui_erase_source_content() 226 werase (win_info->generic.handle); in tui_erase_source_content() 232 if (win_info->generic.type == SRC_WIN) in tui_erase_source_content() [all …]
|
H A D | tui-layout.c | 320 h = tui_win_list[type]->generic.height; in tui_default_win_height() 330 h = tui_term_height () - TUI_CMD_WIN->generic.height; in tui_default_win_height() 338 h = (tui_term_height () - TUI_CMD_WIN->generic.height) / 2; in tui_default_win_height() 718 cmd_height = TUI_CMD_WIN->generic.height; in show_source_disasm_command() 729 init_gen_win_info (&TUI_SRC_WIN->generic, in show_source_disasm_command() 730 TUI_SRC_WIN->generic.type, in show_source_disasm_command() 732 TUI_SRC_WIN->generic.width, in show_source_disasm_command() 742 tui_make_visible (&TUI_SRC_WIN->generic); in show_source_disasm_command() 772 &TUI_DISASM_WIN->generic, in show_source_disasm_command() 773 TUI_DISASM_WIN->generic.type, in show_source_disasm_command() [all …]
|
H A D | tui-data.c | 206 switch (win_info->generic.type) in tui_clear_win_detail() 328 enum tui_win_type type = cur_win->generic.type; in tui_next_win() 331 if (cur_win->generic.type == CMD_WIN) in tui_next_win() 334 type = cur_win->generic.type + 1; in tui_next_win() 335 while (type != cur_win->generic.type && (next_win == NULL)) in tui_next_win() 337 if (tui_win_list[type] && tui_win_list[type]->generic.is_visible) in tui_next_win() 357 enum tui_win_type type = cur_win->generic.type; in tui_prev_win() 360 if (cur_win->generic.type == SRC_WIN) in tui_prev_win() 363 type = cur_win->generic.type - 1; in tui_prev_win() 364 while (type != cur_win->generic.type && (prev == NULL)) in tui_prev_win() [all …]
|
H A D | tui-source.c | 56 line_width = TUI_SRC_WIN->generic.width - 1; in tui_set_source_content() 59 nlines = (line_no + (TUI_SRC_WIN->generic.height - 2)) - line_no; in tui_set_source_content() 94 if (TUI_SRC_WIN->generic.title) in tui_set_source_content() 95 xfree (TUI_SRC_WIN->generic.title); in tui_set_source_content() 96 TUI_SRC_WIN->generic.title = xstrdup (s->filename); in tui_set_source_content() 116 TUI_SRC_WIN->generic.content[cur_line]; in tui_set_source_content() 123 TUI_SRC_WIN->generic.content[ in tui_set_source_content() 201 strcpy (((struct tui_win_element *) TUI_SRC_WIN->generic.content[ in tui_set_source_content() 206 TUI_SRC_WIN->generic.content[ in tui_set_source_content() 214 TUI_SRC_WIN->generic.content_size = nlines; in tui_set_source_content() [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/ |
H A D | Event.t | 7 use Test2::Event::Generic; 66 my $e = Test2::Event::Generic->new( 83 package => 'Test2::Event::Generic', 84 details => 'Test2::Event::Generic', 102 package => 'Test2::Event::Generic', 103 details => 'Test2::Event::Generic', 126 package => 'Test2::Event::Generic', 127 details => 'Test2::Event::Generic', 144 details => 'Test2::Event::Generic', 157 package => 'Test2::Event::Generic', [all …]
|
/openbsd-src/gnu/llvm/libcxx/utils/ci/ |
H A D | run-buildbot | 235 generic-cxx03) 237 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx03.cmake" 241 generic-cxx11) 243 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx11.cmake" 247 generic-cxx14) 249 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx14.cmake" 253 generic-cxx17) 255 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx17.cmake" 259 generic-cxx20) 261 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx20.cmake" [all …]
|
/openbsd-src/gnu/gcc/gcc/ |
H A D | hooks.c | 22 /* This file contains generic hooks that can be used as defaults for 31 /* Generic hook that does absolutely zappo. */ 37 /* Generic hook that takes no arguments and returns false. */ 44 /* Generic hook that takes no arguments and returns true. */ 51 /* Generic hook that takes no arguments and returns NO_REGS. */ 58 /* Generic hook that takes (bool) and returns false. */ 65 /* Generic hook that takes (enum machine_mode) and returns false. */ 72 /* Generic hook that takes (enum machine_mode, rtx) and returns false. */ 80 /* Generic hook that takes (enum machine_mode, rtx) and returns true. */ 88 /* Generic hook that takes (FILE *, const char *) and does nothing. */ [all …]
|
/openbsd-src/gnu/llvm/llvm/docs/GlobalISel/ |
H A D | GMIR.rst | 3 Generic Machine IR 9 Generic MIR (gMIR) is an intermediate representation that shares the same data 20 Generic Machine Instructions 30 gMIR defines a rich collection of ``Generic Opcodes`` which are target 32 One example is ``G_ADD`` which is the generic opcode for an integer addition. 33 More information on each of the generic opcodes can be found at 37 a convenient way to create these generic instructions. 41 Generic Virtual Registers 49 Generic virtual registers are like virtual registers but they are not assigned a 50 Register Class constraint. Instead, generic virtual registers have less strict [all …]
|
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
H A D | genlink.h | 1 /* genlink.h -- interface to the BFD generic linker 25 structures and functions used by the BFD generic linker, in case 34 /* The generic linker uses a hash table which is a derived class of 36 linkers do. Do not confuse the generic linker hash table with the 39 /* Generic linker hash table entries. */ 50 /* Generic linker hash table. */ 57 /* Look up an entry in a generic link hash table. */ 63 /* Traverse a generic link hash table. */ 71 /* Get the generic link hash table from the info structure. This is 77 /* The generic linker reads in the asymbol structures for an input BFD [all …]
|
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | MachineIRBuilder.h | 432 /// \pre \p Res must be a generic virtual register with pointer type. 444 /// \pre \p Res must be a generic virtual register with pointer type. 455 /// \pre \p Res must be a generic virtual register with pointer type 468 /// \pre \p Res and \p Op0 must be generic virtual registers with pointer 470 /// \pre \p Op1 must be a generic virtual register with scalar type. 484 /// \pre \p Op0 must be a generic virtual register with pointer type. 488 /// \post \p Res will either be a new generic virtual register of the same 510 /// \pre \p Res and \p Op0 must be generic virtual registers with pointer 526 /// \pre \p Res and \p Op0 must be generic virtual registers with vector type, 540 /// \pre \p Res and \p Op0 must be generic virtual registers with vector type, [all …]
|
/openbsd-src/gnu/usr.bin/binutils/bfd/ |
H A D | genlink.h | 1 /* genlink.h -- interface to the BFD generic linker 25 structures and functions used by the BFD generic linker, in case 34 /* The generic linker uses a hash table which is a derived class of 36 linkers do. Do not confuse the generic linker hash table with the 39 /* Generic linker hash table entries. */ 50 /* Generic linker hash table. */ 57 /* Look up an entry in a generic link hash table. */ 63 /* Traverse a generic link hash table. */ 71 /* Get the generic link hash table from the info structure. This is 77 /* The generic linker reads in the asymbol structures for an input BFD [all …]
|
/openbsd-src/gnu/usr.bin/binutils/include/opcode/ |
H A D | pdp11.h | 26 #define PDP11_OPCODE_OP 2 /* generic operand */ 27 #define PDP11_OPCODE_REG_OP 3 /* register and generic operand */ 28 #define PDP11_OPCODE_REG_OP_REV 4 /* register and generic operand, 30 #define PDP11_OPCODE_AC_FOP 5 /* fpu accumulator and generic float 32 #define PDP11_OPCODE_OP_OP 6 /* two generic operands */ 40 #define PDP11_OPCODE_FOP_AC 13 /* generic float argument, then fpu 42 #define PDP11_OPCODE_FOP 14 /* generic float operand */ 43 #define PDP11_OPCODE_AC_OP 15 /* fpu accumulator and generic int 45 #define PDP11_OPCODE_OP_AC 16 /* generic int argument, then fpu
|
/openbsd-src/gnu/usr.bin/binutils-2.17/include/opcode/ |
H A D | pdp11.h | 26 #define PDP11_OPCODE_OP 2 /* generic operand */ 27 #define PDP11_OPCODE_REG_OP 3 /* register and generic operand */ 28 #define PDP11_OPCODE_REG_OP_REV 4 /* register and generic operand, 30 #define PDP11_OPCODE_AC_FOP 5 /* fpu accumulator and generic float 32 #define PDP11_OPCODE_OP_OP 6 /* two generic operands */ 40 #define PDP11_OPCODE_FOP_AC 13 /* generic float argument, then fpu 42 #define PDP11_OPCODE_FOP 14 /* generic float operand */ 43 #define PDP11_OPCODE_AC_OP 15 /* fpu accumulator and generic int 45 #define PDP11_OPCODE_OP_AC 16 /* generic int argument, then fpu
|
/openbsd-src/gnu/usr.bin/cvs/tools/ |
H A D | Makefile.in | 167 mostlyclean-generic: 169 clean-generic: 171 distclean-generic: 175 maintainer-clean-generic: 181 clean-am: clean-generic mostlyclean-am 185 distclean-am: clean-am distclean-generic 207 maintainer-clean-am: distclean-am maintainer-clean-generic 211 mostlyclean-am: mostlyclean-generic 213 .PHONY: all all-am check check-am clean clean-generic distclean \ 214 distclean-generic distdir dvi dvi-am info info-am install \ [all …]
|
/openbsd-src/regress/bin/ksh/ |
H A D | README | 6 sh generic any v7 bourne shell like thing 7 sh-v generic any system V bourne shell like thing 8 ksh generic any ksh 9 posix generic basic posix shell 10 posix-upu generic `user portability utility' options 19 (most generic thing). All generics that apply should be specified.
|
/openbsd-src/gnu/usr.bin/cvs/windows-NT/SCC/ |
H A D | Makefile.in | 176 mostlyclean-generic: 178 clean-generic: 180 distclean-generic: 184 maintainer-clean-generic: 190 clean-am: clean-generic mostlyclean-am 194 distclean-am: clean-am distclean-generic 216 maintainer-clean-am: distclean-am maintainer-clean-generic 220 mostlyclean-am: mostlyclean-generic 222 .PHONY: all all-am check check-am clean clean-generic distclean \ 223 distclean-generic distdir dvi dvi-am info info-am install \ [all …]
|
/openbsd-src/gnu/usr.bin/cvs/vms/ |
H A D | Makefile.in | 204 mostlyclean-generic: 206 clean-generic: 208 distclean-generic: 212 maintainer-clean-generic: 218 clean-am: clean-generic mostlyclean-am 222 distclean-am: clean-am distclean-generic 244 maintainer-clean-am: distclean-am maintainer-clean-generic 248 mostlyclean-am: mostlyclean-generic 250 .PHONY: all all-am check check-am clean clean-generic distclean \ 251 distclean-generic distdir dvi dvi-am info info-am install \ [all …]
|
/openbsd-src/gnu/usr.bin/binutils/ld/ |
H A D | Makefile.am | 469 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/a29k.sc ${GEN_DEPENDS} 484 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS} 487 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} 537 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS} 540 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS} 546 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} 559 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ 563 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ 567 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ 571 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ [all …]
|
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/ |
H A D | Makefile.am | 515 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS} 518 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} 582 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS} 585 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS} 591 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} 609 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ 613 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ 617 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ 621 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ 625 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ [all …]
|
/openbsd-src/gnu/llvm/llvm/docs/ |
H A D | AMDGPUUsage.rst | 138 generic 143 generic 148 generic 153 generic 160 generic 165 generic 170 generic 177 generic 182 generic 187 generic [all …]
|
/openbsd-src/gnu/llvm/llvm/include/llvm/Target/ |
H A D | GenericOpcodes.td | 9 // This file defines the generic opcodes used with GlobalISel. 244 // Generic addition. 252 // Generic subtraction. 260 // Generic multiplication. 268 // Generic signed division. 276 // Generic unsigned division. 284 // Generic signed remainder. 292 // Generic unsigned remainder. 300 // Generic signed division and remainder. 308 // Generic unsigned division and remainder. [all …]
|