| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | elf32-i860.c | 748 lookup_howto (unsigned int rtype) in lookup_howto() argument 764 BFD_ASSERT (rtype <= R_860_max); in lookup_howto() 765 i = elf_code_to_howto_index[rtype]; in lookup_howto() 776 unsigned int rtype; in elf32_i860_reloc_type_lookup() local 781 rtype = R_860_NONE; in elf32_i860_reloc_type_lookup() 784 rtype = R_860_32; in elf32_i860_reloc_type_lookup() 787 rtype = R_860_COPY; in elf32_i860_reloc_type_lookup() 790 rtype = R_860_GLOB_DAT; in elf32_i860_reloc_type_lookup() 793 rtype = R_860_JUMP_SLOT; in elf32_i860_reloc_type_lookup() 796 rtype = R_860_RELATIVE; in elf32_i860_reloc_type_lookup() [all …]
|
| D | elfxx-ia64.c | 184 PARAMS ((unsigned int rtype)); 475 lookup_howto (rtype) in lookup_howto() argument 476 unsigned int rtype; in lookup_howto() 490 if (rtype > R_IA64_MAX_RELOC_CODE) 492 i = elf_code_to_howto_index[rtype]; 503 unsigned int rtype; local 507 case BFD_RELOC_NONE: rtype = R_IA64_NONE; break; 509 case BFD_RELOC_IA64_IMM14: rtype = R_IA64_IMM14; break; 510 case BFD_RELOC_IA64_IMM22: rtype = R_IA64_IMM22; break; 511 case BFD_RELOC_IA64_IMM64: rtype = R_IA64_IMM64; break; [all …]
|
| D | elf64-alpha.c | 168 unsigned int rtype; member 1958 if (rent->rtype == r_type && rent->srel == sreloc) in elf64_alpha_check_relocs() 1969 rent->rtype = r_type; in elf64_alpha_check_relocs() 2114 if (ri->rtype == rs->rtype && ri->srel == rs->srel) in elf64_alpha_merge_ind_symbols() 2614 entries = alpha_dynamic_entries_for_reloc (relent->rtype, dynamic, in elf64_alpha_calc_dynrel_sizes() 3878 long dynindx, long rtype, bfd_vma addend) in elf64_alpha_emit_dynrel() argument 3885 outrel.r_info = ELF64_R_INFO (dynindx, rtype); in elf64_alpha_emit_dynrel()
|
| D | elfxx-mips.c | 350 unsigned int rtype : 4; /* Relocation types. See below. */ member 360 unsigned int rtype : 4; /* Relocation types. See below. */ member 412 #define mips_elf_set_cr_type(x,type) ((x).rtype = (type)) 524 #define MIPS_ELF_RTYPE_TO_HOWTO(abfd, rtype, rela) \ argument 525 (get_elf_backend_data (abfd)->elf_backend_mips_rtype_to_howto (rtype, rela)) 1479 | ((in->rtype & CRINFO_RTYPE) << CRINFO_RTYPE_SH) in bfd_elf32_swap_crinfo_out()
|
| /mirbsd/src/gnu/usr.bin/binutils/include/elf/ |
| D | reloc-macros.h | 72 static const char *name (unsigned long rtype); \ 74 name (unsigned long rtype) \ 76 switch (rtype) \
|
| /mirbsd/src/usr.bin/ssh/ |
| D | serverloop.c | 1064 char *rtype; in server_input_global_request() local 1068 rtype = packet_get_string(NULL); in server_input_global_request() 1070 debug("server_input_global_request: rtype %s want_reply %d", rtype, want_reply); in server_input_global_request() 1073 if (strcmp(rtype, "tcpip-forward") == 0) { in server_input_global_request() 1101 } else if (strcmp(rtype, "cancel-tcpip-forward") == 0) { in server_input_global_request() 1113 } else if (strcmp(rtype, "no-more-sessions@openssh.com") == 0) { in server_input_global_request() 1125 xfree(rtype); in server_input_global_request() 1133 char *rtype; in server_input_channel_req() local 1136 rtype = packet_get_string(NULL); in server_input_channel_req() 1140 id, rtype, reply); in server_input_channel_req() [all …]
|
| D | clientloop.c | 1813 char *rtype; in client_input_channel_req() local 1816 rtype = packet_get_string(NULL); in client_input_channel_req() 1820 id, rtype, reply); in client_input_channel_req() 1827 } else if (strcmp(rtype, "eow@openssh.com") == 0) { in client_input_channel_req() 1830 } else if (strcmp(rtype, "exit-status") == 0) { in client_input_channel_req() 1850 xfree(rtype); in client_input_channel_req() 1855 char *rtype; in client_input_global_request() local 1859 rtype = packet_get_string(NULL); in client_input_global_request() 1862 rtype, want_reply); in client_input_global_request() 1869 xfree(rtype); in client_input_global_request()
|
| D | session.c | 1807 session_input_channel_req(Channel *c, const char *rtype) in session_input_channel_req() argument 1814 c->self, rtype); in session_input_channel_req() 1817 debug("session_input_channel_req: session %d req %s", s->self, rtype); in session_input_channel_req() 1824 if (strcmp(rtype, "shell") == 0) { in session_input_channel_req() 1826 } else if (strcmp(rtype, "exec") == 0) { in session_input_channel_req() 1828 } else if (strcmp(rtype, "pty-req") == 0) { in session_input_channel_req() 1830 } else if (strcmp(rtype, "x11-req") == 0) { in session_input_channel_req() 1832 } else if (strcmp(rtype, "auth-agent-req@openssh.com") == 0) { in session_input_channel_req() 1834 } else if (strcmp(rtype, "subsystem") == 0) { in session_input_channel_req() 1836 } else if (strcmp(rtype, "env") == 0) { in session_input_channel_req() [all …]
|
| D | channels.c | 165 static void port_open_helper(Channel *c, const char *rtype); 1321 port_open_helper(Channel *c, const char *rtype) in port_open_helper() argument 1328 direct = (strcmp(rtype, "direct-tcpip") == 0); in port_open_helper() 1333 rtype, c->listening_port, c->path, c->host_port, in port_open_helper() 1341 packet_put_cstring(rtype); in port_open_helper() 1395 const char *rtype; in channel_post_port_listener() local 1404 rtype = "forwarded-tcpip"; in channel_post_port_listener() 1408 rtype = "dynamic-tcpip"; in channel_post_port_listener() 1411 rtype = "direct-tcpip"; in channel_post_port_listener() 1422 nc = channel_new(rtype, nextstate, newsock, newsock, -1, in channel_post_port_listener() [all …]
|
| D | monitor_wrap.c | 129 u_char rtype; in mm_request_receive_expect() local 134 rtype = buffer_get_char(m); in mm_request_receive_expect() 135 if (rtype != type) in mm_request_receive_expect() 137 rtype, type); in mm_request_receive_expect()
|
| /mirbsd/src/gnu/usr.bin/binutils/gas/config/ |
| D | tc-crx.c | 681 crx_ins->rtype = BFD_RELOC_NONE; in process_label_constant() 688 crx_ins->rtype = BFD_RELOC_CRX_REGREL12; in process_label_constant() 691 crx_ins->rtype = BFD_RELOC_CRX_REGREL28; in process_label_constant() 693 crx_ins->rtype = BFD_RELOC_CRX_REGREL32; in process_label_constant() 697 crx_ins->rtype = BFD_RELOC_CRX_REGREL22; in process_label_constant() 702 crx_ins->rtype = BFD_RELOC_CRX_REL16; in process_label_constant() 704 crx_ins->rtype = BFD_RELOC_CRX_REL8; in process_label_constant() 707 crx_ins->rtype = BFD_RELOC_CRX_ABS32; in process_label_constant() 709 crx_ins->rtype = BFD_RELOC_CRX_REL4; in process_label_constant() 711 crx_ins->rtype = BFD_RELOC_CRX_REL8_CMP; in process_label_constant() [all …]
|
| D | tc-maxq.c | 1291 && (i.maxq20_op[0].reg->rtype == Reg_8W)) in maxq20_immediate() 1299 && (i.maxq20_op[0].reg->rtype == Reg_8W)) in maxq20_immediate() 1308 && (i.maxq20_op[0].reg->rtype == Reg_8W)) in maxq20_immediate() 1314 && i.maxq20_op[0].reg->rtype == Reg_16W) in maxq20_immediate() 1324 && i.maxq20_op[0].reg->rtype == Reg_16W) in maxq20_immediate() 2380 switch (i.maxq20_op[bitnum].r_bit->reg->rtype) in match_filters() 2417 switch ((i.maxq20_op[0].r_bit)->reg->rtype) in match_filters() 2440 switch ((i.maxq20_op[1].r_bit)->reg->rtype) in match_filters() 2513 if (i.maxq20_op[regnum].reg->rtype == Reg_8R in match_filters() 2514 || i.maxq20_op[regnum].reg->rtype == Reg_16R) in match_filters() [all …]
|
| D | tc-ia64.c | 1208 output_R1_format (f, rtype, rlen) in output_R1_format() argument 1210 unw_record_type rtype; 1217 output_R3_format (f, rtype, rlen); 1221 if (rtype == body) 1223 else if (rtype != prologue) 1248 output_R3_format (f, rtype, rlen) in output_R3_format() argument 1250 unw_record_type rtype; 1257 output_R1_format (f, rtype, rlen); 1261 if (rtype == body) 1263 else if (rtype != prologue) [all …]
|
| D | tc-tic54x.c | 3921 bfd_reloc_code_real_type rtype = local 3927 if (rtype == BFD_RELOC_8) 3931 insn->opcode[which].r_type = rtype;
|
| /mirbsd/src/libexec/login_tis/ |
| D | login_tis.c | 79 enum response_type rtype = error; in main() local 180 if ((rtype = tis_authorize(&tc, user, class, chalbuf)) == error) in main() 186 if (rtype == display) { in main() 192 rtype == challenge ? RPP_ECHO_ON : RPP_ECHO_OFF)) in main() 198 switch (rtype) { in main() 233 if (rtype == error) { in main() 236 rtype = password; in main() 238 rtype = challenge; in main() 263 if (rtype == challenge) in main()
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | ada-lang.c | 6066 struct type *rtype; in ada_template_to_fixed_record_type_1() local 6087 rtype = alloc_type (TYPE_OBJFILE (type)); in ada_template_to_fixed_record_type_1() 6088 TYPE_CODE (rtype) = TYPE_CODE_STRUCT; in ada_template_to_fixed_record_type_1() 6089 INIT_CPLUS_SPECIFIC (rtype); in ada_template_to_fixed_record_type_1() 6090 TYPE_NFIELDS (rtype) = nfields; in ada_template_to_fixed_record_type_1() 6091 TYPE_FIELDS (rtype) = (struct field *) in ada_template_to_fixed_record_type_1() 6092 TYPE_ALLOC (rtype, nfields * sizeof (struct field)); in ada_template_to_fixed_record_type_1() 6093 memset (TYPE_FIELDS (rtype), 0, sizeof (struct field) * nfields); in ada_template_to_fixed_record_type_1() 6094 TYPE_NAME (rtype) = ada_type_name (type); in ada_template_to_fixed_record_type_1() 6095 TYPE_TAG_NAME (rtype) = NULL; in ada_template_to_fixed_record_type_1() [all …]
|
| D | valops.c | 2545 value_full_object (struct value *argp, struct type *rtype, int xfull, int xtop, in value_full_object() argument 2554 if (rtype) in value_full_object() 2556 real_type = rtype; in value_full_object()
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ExtUtils/Liblist/ |
| D | Kid.pm | 67 my($rtype) = $ptype; 70 $rtype = '-Wl,-R'; 72 $rtype = '-R'; 81 push(@ldloadlibs, "$rtype$thislib");
|
| /mirbsd/src/gnu/usr.bin/binutils/binutils/ |
| D | readelf.c | 1009 const char *rtype; in dump_relocations() local 1087 rtype = NULL; in dump_relocations() 1092 rtype = elf_m32r_reloc_type (type); in dump_relocations() 1097 rtype = elf_i386_reloc_type (type); in dump_relocations() 1102 rtype = elf_m68hc11_reloc_type (type); in dump_relocations() 1106 rtype = elf_m68k_reloc_type (type); in dump_relocations() 1110 rtype = elf_i960_reloc_type (type); in dump_relocations() 1115 rtype = elf_avr_reloc_type (type); in dump_relocations() 1122 rtype = elf_sparc_reloc_type (type); in dump_relocations() 1127 rtype = v850_reloc_type (type); in dump_relocations() [all …]
|
| D | ieee.c | 1750 debug_type rtype; in parse_ieee_ty() local 1758 || ! ieee_read_type_index (info, pp, &rtype) in parse_ieee_ty() 1774 && debug_get_type_kind (dhandle, rtype) == DEBUG_KIND_POINTER) in parse_ieee_ty() 1780 *pv->pslot = rtype; in parse_ieee_ty() 1781 rtype = debug_make_indirect_type (dhandle, pv->pslot, in parse_ieee_ty() 1785 type = debug_make_function_type (dhandle, rtype, (debug_type *) NULL, in parse_ieee_ty() 1913 debug_type rtype; in parse_ieee_ty() local 1925 || ! ieee_read_type_index (info, pp, &rtype) in parse_ieee_ty() 1995 && debug_get_type_kind (dhandle, rtype) == DEBUG_KIND_POINTER) in parse_ieee_ty() 2001 *pv->pslot = rtype; in parse_ieee_ty() [all …]
|
| /mirbsd/src/sys/dev/usb/ |
| D | if_wi_usb.c | 1377 u_int16_t rtype; in wi_usb_rxeof() local 1421 rtype = letoh16(uin->type); in wi_usb_rxeof() 1428 if (WI_USB_ISRXFRM(rtype)) { in wi_usb_rxeof() 1432 if (WI_USB_ISTXFRM(rtype)) { in wi_usb_rxeof() 1434 USBDEVNAME(sc->wi_usb_dev), __func__, rtype)); in wi_usb_rxeof() 1439 switch (rtype) { in wi_usb_rxeof() 1443 USBDEVNAME(sc->wi_usb_dev), __func__, rtype)); in wi_usb_rxeof() 1458 USBDEVNAME(sc->wi_usb_dev), __func__, rtype)); in wi_usb_rxeof() 1463 USBDEVNAME(sc->wi_usb_dev), __func__, rtype)); in wi_usb_rxeof() 1474 rtype, total_len); in wi_usb_rxeof()
|
| /mirbsd/src/gnu/usr.bin/binutils/include/opcode/ |
| D | crx.h | 308 bfd_reloc_code_real_type rtype; member
|
| D | maxq.h | 346 Reg_type rtype; /* 8 bit/16 bit and read only/read write. */ member
|
| /mirbsd/src/gnu/usr.bin/binutils/opcodes/ |
| D | maxq-dis.c | 235 && ((reg_x->rtype == Reg_16W) || (reg_x->rtype == Reg_8W))) in check_move()
|
| /mirbsd/src/gnu/usr.sbin/sendmail/sendmail/ |
| D | usersmtp.c | 3052 reply(m, mci, e, timeout, pfunc, enhstat, rtype) in reply() argument 3059 int rtype; 3211 (rtype == XS_STARTTLS) 3213 : ((rtype == XS_AUTH)
|