| /freebsd-9-stable/contrib/gdb/gdb/ |
| D | i387-tdep.c | 45 print_i387_value (char *raw, struct ui_file *file) in print_i387_value() argument 53 value = extract_typed_floating (raw, builtin_type_i387_ext); in print_i387_value() 69 print_i387_ext (unsigned char *raw, struct ui_file *file) in print_i387_ext() argument 76 sign = raw[9] & 0x80; in print_i387_ext() 77 integer = raw[7] & 0x80; in print_i387_ext() 78 exponent = (((raw[9] & 0x7f) << 8) | raw[8]); in print_i387_ext() 79 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in print_i387_ext() 80 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in print_i387_ext() 81 | (raw[5] << 8) | raw[4]); in print_i387_ext() 100 print_i387_value (raw, file); in print_i387_ext() [all …]
|
| /freebsd-9-stable/contrib/ofed/libibverbs/examples/ |
| D | devinfo.c | 53 return !(gid->raw[8] | gid->raw[9] | gid->raw[10] | gid->raw[11] | in null_gid() 54 gid->raw[12] | gid->raw[13] | gid->raw[14] | gid->raw[15]); in null_gid() 173 gid.raw[ 0], gid.raw[ 1], in print_all_port_gids() 174 gid.raw[ 2], gid.raw[ 3], in print_all_port_gids() 175 gid.raw[ 4], gid.raw[ 5], in print_all_port_gids() 176 gid.raw[ 6], gid.raw[ 7], in print_all_port_gids() 177 gid.raw[ 8], gid.raw[ 9], in print_all_port_gids() 178 gid.raw[10], gid.raw[11], in print_all_port_gids() 179 gid.raw[12], gid.raw[13], in print_all_port_gids() 180 gid.raw[14], gid.raw[15]); in print_all_port_gids()
|
| /freebsd-9-stable/contrib/gdb/gdb/mi/ |
| D | mi-console.c | 37 struct ui_file *raw; member 46 mi_console_file_new (struct ui_file *raw, in mi_console_file_new() argument 52 mi_console->raw = raw; in mi_console_file_new() 100 fputs_unfiltered (mi_console->prefix, mi_console->raw); in mi_console_raw_packet() 103 fputs_unfiltered ("\"", mi_console->raw); in mi_console_raw_packet() 104 fputstrn_unfiltered (buf, length_buf, mi_console->quote, mi_console->raw); in mi_console_raw_packet() 105 fputs_unfiltered ("\"\n", mi_console->raw); in mi_console_raw_packet() 109 fputstrn_unfiltered (buf, length_buf, 0, mi_console->raw); in mi_console_raw_packet() 110 fputs_unfiltered ("\n", mi_console->raw); in mi_console_raw_packet() 112 gdb_flush (mi_console->raw); in mi_console_raw_packet()
|
| /freebsd-9-stable/contrib/bind9/lib/dns/ |
| D | ncache.c | 408 unsigned char *raw = rdataset->private3; in rdataset_first() local 411 count = raw[0] * 256 + raw[1]; in rdataset_first() 416 raw += 2; in rdataset_first() 424 rdataset->private5 = raw; in rdataset_first() 433 unsigned char *raw; in rdataset_next() local 440 raw = rdataset->private5; in rdataset_next() 441 length = raw[0] * 256 + raw[1]; in rdataset_next() 442 raw += length + 2; in rdataset_next() 443 rdataset->private5 = raw; in rdataset_next() 450 unsigned char *raw = rdataset->private5; in rdataset_current() local [all …]
|
| D | rdataslab.c | 99 unsigned char *raw; in fillin_offsets() local 109 raw = &offsetbase[j*4 + 2]; in fillin_offsets() 110 *raw++ = (offsettable[i] & 0xff000000) >> 24; in fillin_offsets() 111 *raw++ = (offsettable[i] & 0xff0000) >> 16; in fillin_offsets() 112 *raw++ = (offsettable[i] & 0xff00) >> 8; in fillin_offsets() 113 *raw = offsettable[i] & 0xff; in fillin_offsets() 118 raw = offsetbase + offsettable[i] + 2; in fillin_offsets() 119 *raw++ = (j & 0xff00) >> 8; in fillin_offsets() 120 *raw = j++ & 0xff; in fillin_offsets() 358 unsigned char *raw = rdataset->private3; in rdataset_first() local [all …]
|
| D | ecdb.c | 394 unsigned char *raw; in bind_rdataset() local 415 raw = (unsigned char *)header + sizeof(*header); in bind_rdataset() 416 rdataset->private3 = raw; in bind_rdataset() 658 unsigned char *raw = rdataset->private3; in rdataset_first() local 661 count = raw[0] * 256 + raw[1]; in rdataset_first() 667 raw += 2 + (4 * count); in rdataset_first() 669 raw += 2; in rdataset_first() 678 rdataset->private5 = raw; in rdataset_first() 687 unsigned char *raw; in rdataset_next() local 694 raw = rdataset->private5; in rdataset_next() [all …]
|
| D | journal.c | 347 journal_pos_decode(journal_rawpos_t *raw, journal_pos_t *cooked) { in journal_pos_decode() argument 348 cooked->serial = decode_uint32(raw->serial); in journal_pos_decode() 349 cooked->offset = decode_uint32(raw->offset); in journal_pos_decode() 353 journal_pos_encode(journal_rawpos_t *raw, journal_pos_t *cooked) { in journal_pos_encode() argument 354 encode_uint32(cooked->serial, raw->serial); in journal_pos_encode() 355 encode_uint32(cooked->offset, raw->offset); in journal_pos_encode() 359 journal_header_decode(journal_rawheader_t *raw, journal_header_t *cooked) { in journal_header_decode() argument 360 INSIST(sizeof(cooked->format) == sizeof(raw->h.format)); in journal_header_decode() 361 memmove(cooked->format, raw->h.format, sizeof(cooked->format)); in journal_header_decode() 362 journal_pos_decode(&raw->h.begin, &cooked->begin); in journal_header_decode() [all …]
|
| /freebsd-9-stable/contrib/gdb/gdb/gdbserver/ |
| D | i387-fp.c | 199 unsigned char *raw = &fp->st_space[regno * 16]; in i387_ftag() local 204 integer = raw[7] & 0x80; in i387_ftag() 205 exponent = (((raw[9] & 0x7f) << 8) | raw[8]); in i387_ftag() 206 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]); in i387_ftag() 207 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16) in i387_ftag() 208 | (raw[5] << 8) | raw[4]); in i387_ftag()
|
| /freebsd-9-stable/contrib/file/magic/Magdir/ |
| D | spec | 4 # spec: file(1) magic for SPEC raw results (*.raw, *.rsf) 11 >>12 string . raw result text 15 >>37 string <: v%.4s raw result text 20 >>>20 string <: v%.4s raw result text 21 >>16 string <: v%.4s raw result text
|
| D | modem | 11 # Summary: CCITT Group 3 Facsimile in "raw" form (i.e. no header). 35 >>>>>>>8 ubequad !0x5dee74ad1aa56394 raw G3 (Group 3) FAX, byte-padded 36 # version 5.25 labeled the entry above "raw G3 data, byte-padded" 41 #0 short 0x1300 raw G3 (Group 3) FAX 46 >2 default x raw G3 (Group 3) FAX 47 # version 5.25 labeled the above entry as "raw G3 data" 51 #0 short 0x1900 raw G3 (Group 3) FAX 58 # raw modem data version 1 60 0 string RMD1 raw modem data
|
| /freebsd-9-stable/sys/ofed/include/rdma/ |
| D | ib_addr.h | 135 memset(gid->raw, 0, 16); in iboe_mac_vlan_to_ll() 136 *((u32 *)gid->raw) = cpu_to_be32(0xfe800000); in iboe_mac_vlan_to_ll() 138 gid->raw[12] = vid & 0xff; in iboe_mac_vlan_to_ll() 139 gid->raw[11] = vid >> 8; in iboe_mac_vlan_to_ll() 141 gid->raw[12] = 0xfe; in iboe_mac_vlan_to_ll() 142 gid->raw[11] = 0xff; in iboe_mac_vlan_to_ll() 145 memcpy(gid->raw + 13, mac + 3, 3); in iboe_mac_vlan_to_ll() 146 memcpy(gid->raw + 8, mac, 3); in iboe_mac_vlan_to_ll() 147 gid->raw[8] ^= 2; in iboe_mac_vlan_to_ll() 299 vid = dgid->raw[11] << 8 | dgid->raw[12]; in rdma_get_vlan_id()
|
| /freebsd-9-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ |
| D | ipoib_multicast.c | 65 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_free() 108 ret = memcmp(mgid, mcast->mcmember.mgid.raw, in __ipoib_mcast_find() 133 ret = memcmp(mcast->mcmember.mgid.raw, tmcast->mcmember.mgid.raw, in __ipoib_mcast_add() 161 if (!memcmp(mcast->mcmember.mgid.raw, dev->if_broadcastaddr + 4, in ipoib_mcast_join_finish() 177 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_join_finish() 186 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_join_finish() 218 mcast->mcmember.mgid.raw, ":", in ipoib_mcast_join_finish() 255 mcast->mcmember.mgid.raw, ":", status); in ipoib_mcast_sendonly_join_complete() 310 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_sendonly_join() 342 mcast->mcmember.mgid.raw, ":", status); in ipoib_mcast_join_complete() [all …]
|
| /freebsd-9-stable/usr.sbin/ofwdump/ |
| D | ofwdump.c | 143 ofw_dump_properties(int fd, phandle_t n, int level, const char *pmatch, int raw, in ofw_dump_properties() argument 160 if (raw) in ofw_dump_properties() 206 const char *pmatch, int raw, int str) in ofw_dump_node() argument 213 if (!(raw || str)) { in ofw_dump_node() 223 ofw_dump_properties(fd, n, level, pmatch, raw, str); in ofw_dump_node() 227 raw, str); in ofw_dump_node() 234 int raw, int str) in ofw_dump() argument 239 ofw_dump_node(fd, n, 0, rec, prop, pmatch, raw, str); in ofw_dump()
|
| /freebsd-9-stable/tools/tools/net80211/ |
| D | README | 8 stumbler view nearby networks using raw packet interface 9 w00t variety of programs that use the raw packet interface 10 wesside WEP frag attack tool using raw packet interface 11 wlaninject inject 802.11 packets using the raw packet interface 16 The raw packet tools are from Andrea Bittau <a.bittau@cs.ucl.ac.uk>.
|
| /freebsd-9-stable/contrib/bind9/doc/misc/ |
| D | Makefile.in | 43 ${CFG_TEST} --named --grammar > $@.raw ; \ 44 ${PERL} ${srcdir}/sort-options.pl < $@.raw > $@.sorted ; \ 47 rm -f $@.raw $@.sorted ; \ 49 rm -f $@.new $@.raw $@.sorted ; \
|
| /freebsd-9-stable/sys/dev/bxe/ |
| D | ecore_sp.c | 334 static int ecore_raw_wait(struct bxe_softc *sc, struct ecore_raw_obj *raw) in ecore_raw_wait() argument 336 return ecore_state_wait(sc, raw->state, raw->pstate); in ecore_raw_wait() 879 struct ecore_raw_obj *raw = &o->raw; in ecore_vlan_mac_get_rx_tx_flag() local 882 if ((raw->obj_type == ECORE_OBJ_TYPE_TX) || in ecore_vlan_mac_get_rx_tx_flag() 883 (raw->obj_type == ECORE_OBJ_TYPE_RX_TX)) in ecore_vlan_mac_get_rx_tx_flag() 886 if ((raw->obj_type == ECORE_OBJ_TYPE_RX) || in ecore_vlan_mac_get_rx_tx_flag() 887 (raw->obj_type == ECORE_OBJ_TYPE_RX_TX)) in ecore_vlan_mac_get_rx_tx_flag() 938 struct ecore_raw_obj *raw = &o->raw; in ecore_vlan_mac_set_cmd_hdr_e2() local 940 hdr->client_id = raw->cl_id; in ecore_vlan_mac_set_cmd_hdr_e2() 941 hdr->func_id = raw->func_id; in ecore_vlan_mac_set_cmd_hdr_e2() [all …]
|
| /freebsd-9-stable/tools/tools/net80211/w00t/redir/ |
| D | buddy.c | 101 void handle_dude(int dude, int raw) in handle_dude() argument 107 rd = recv(raw, buf, sizeof(buf), 0); in handle_dude() 126 int raw; in main() local 133 if ((raw = socket(PF_INET, SOCK_RAW, 0)) == -1) in main() 155 handle_dude(dude, raw); in main()
|
| /freebsd-9-stable/contrib/binutils/bfd/ |
| D | bout.c | 308 unsigned char *raw = (unsigned char *) natptr; in b_out_squirt_out_relocs() local 312 H_PUT_32 (abfd, g->address, raw); in b_out_squirt_out_relocs() 319 raw[7] = callj_mask + pcrel_mask + len_2; in b_out_squirt_out_relocs() 321 raw[7] = pcrel_mask + len_2; in b_out_squirt_out_relocs() 323 raw[7] = pcrel_mask + len_1; in b_out_squirt_out_relocs() 325 raw[7] = len_2 + incode_mask; in b_out_squirt_out_relocs() 332 raw[7] = (pcrel_mask in b_out_squirt_out_relocs() 336 raw[7] = len_2; in b_out_squirt_out_relocs() 367 raw[4] = (unsigned char) (r_idx >> 16); in b_out_squirt_out_relocs() 368 raw[5] = (unsigned char) (r_idx >> 8); in b_out_squirt_out_relocs() [all …]
|
| /freebsd-9-stable/contrib/ntp/sntp/ag-tpl/0-old/ |
| D | mdoc2man | 20 Mdoc::def_macro( '.Sh', sub { '.SH', hs, @_ }, raw => 1); 21 Mdoc::def_macro( '.Ss', sub { '.SS', hs, @_ }, raw => 1); 49 Mdoc::def_macro( '.An', sub { ".NOP ", @_, "\n.br" }, raw => 1 ); 107 }, raw => 1); 112 }, raw => 1); 140 }}, raw => 1);
|
| /freebsd-9-stable/contrib/ntp/sntp/ag-tpl/ |
| D | mdoc2man | 46 Mdoc::def_macro( '.Sh', sub { '.SH', hs, @_ }, raw => 1); 47 Mdoc::def_macro( '.Ss', sub { '.SS', hs, @_ }, raw => 1); 75 Mdoc::def_macro( '.An', sub { ".NOP ", @_, "\n.br" }, raw => 1 ); 133 }, raw => 1); 138 }, raw => 1); 166 }}, raw => 1);
|
| /freebsd-9-stable/sys/kern/ |
| D | kern_ctf.c | 65 caddr_t raw = NULL; in link_elf_ctf_get() local 243 if ((raw = malloc(shdr[i].sh_size, M_LINKER, M_WAITOK)) == NULL) { in link_elf_ctf_get() 268 if ((error = vn_rdwr(UIO_READ, nd.ni_vp, raw == NULL ? ctftab : raw, in link_elf_ctf_get() 274 if (raw != NULL) { in link_elf_ctf_get() 295 zs.next_in = ((uint8_t *) raw) + sizeof(ctf_hdr); in link_elf_ctf_get() 336 if (raw != NULL) in link_elf_ctf_get() 337 free(raw, M_LINKER); in link_elf_ctf_get()
|
| /freebsd-9-stable/contrib/ofed/management/opensm/osmtest/ |
| D | osmt_multicast.c | 241 inet_ntop(AF_INET6, p_rec->mgid.raw, gid_str, in osmt_query_mcast() 588 p_mgrp->mcmember_rec.mgid.raw, in osmt_run_mcast_flow() 622 inet_ntop(AF_INET6, mc_req_rec.port_gid.raw, in osmt_run_mcast_flow() 624 inet_ntop(AF_INET6, mc_req_rec.mgid.raw, in osmt_run_mcast_flow() 680 inet_ntop(AF_INET6, mc_req_rec.mgid.raw, in osmt_run_mcast_flow() 811 mc_req_rec.mgid.raw[15] = 0x01; in osmt_run_mcast_flow() 1271 inet_ntop(AF_INET6, p_recvd_rec->mgid.raw, gid_str, in osmt_run_mcast_flow() 1298 inet_ntop(AF_INET6, p_recvd_rec->mgid.raw, gid_str, in osmt_run_mcast_flow() 1324 inet_ntop(AF_INET6, p_recvd_rec->mgid.raw, gid_str, in osmt_run_mcast_flow() 1349 inet_ntop(AF_INET6, p_recvd_rec->mgid.raw, gid_str, in osmt_run_mcast_flow() [all …]
|
| /freebsd-9-stable/sys/dev/nvme/ |
| D | nvme_ctrlr.c | 243 cap_lo.raw = nvme_mmio_read_4(ctrlr, cap_lo); in nvme_ctrlr_construct_io_qpairs() 331 cc.raw = nvme_mmio_read_4(ctrlr, cc); in nvme_ctrlr_wait_for_ready() 332 csts.raw = nvme_mmio_read_4(ctrlr, csts); in nvme_ctrlr_wait_for_ready() 348 csts.raw = nvme_mmio_read_4(ctrlr, csts); in nvme_ctrlr_wait_for_ready() 360 cc.raw = nvme_mmio_read_4(ctrlr, cc); in nvme_ctrlr_disable() 361 csts.raw = nvme_mmio_read_4(ctrlr, csts); in nvme_ctrlr_disable() 367 nvme_mmio_write_4(ctrlr, cc, cc.raw); in nvme_ctrlr_disable() 378 cc.raw = nvme_mmio_read_4(ctrlr, cc); in nvme_ctrlr_enable() 379 csts.raw = nvme_mmio_read_4(ctrlr, csts); in nvme_ctrlr_enable() 393 aqa.raw = 0; in nvme_ctrlr_enable() [all …]
|
| /freebsd-9-stable/contrib/ipfilter/ipsend/ |
| D | sdlpi.c | 146 dl_hp_rawdata_req_t raw; local 149 raw.dl_primitive = DL_HP_RAWDATA_REQ; 150 cp->len = sizeof(raw); 151 cp->buf = (char *)&raw;
|
| /freebsd-9-stable/contrib/tcpdump/ |
| D | print-snmp.c | 331 caddr_t raw; member 530 elem->data.raw = (caddr_t)p; in asn1_parse() 535 elem->data.raw = NULL; in asn1_parse() 540 elem->data.raw = (caddr_t)p; in asn1_parse() 551 elem->data.raw = (caddr_t)p; in asn1_parse() 584 elem->data.raw = (caddr_t)p; in asn1_parse() 595 elem->data.raw = NULL; in asn1_parse() 600 elem->data.raw = NULL; in asn1_parse() 605 elem->data.raw = NULL; in asn1_parse() 615 elem->data.raw = (caddr_t)p; in asn1_parse() [all …]
|