| /freebsd-12-stable/contrib/libarchive/libarchive/ |
| D | archive_write_set_format_raw.c | 41 struct raw { struct 52 struct raw *raw; in archive_write_set_format_raw() local 61 raw = (struct raw *)calloc(1, sizeof(*raw)); in archive_write_set_format_raw() 62 if (raw == NULL) { in archive_write_set_format_raw() 66 raw->entries_written = 0; in archive_write_set_format_raw() 67 a->format_data = raw; in archive_write_set_format_raw() 85 struct raw *raw = (struct raw *)a->format_data; in archive_write_raw_header() local 94 if (raw->entries_written > 0) { in archive_write_raw_header() 99 raw->entries_written++; in archive_write_raw_header() 119 struct raw *raw; in archive_write_raw_free() local [all …]
|
| /freebsd-12-stable/tools/tools/shlib-compat/ |
| D | shlib-compat.py | 502 def build_subprogram(self, raw): argument 503 if raw.optname == None: 504 raw.setname('SUBPROGRAM_NONAME_' + raw.arg('low_pc')); 505 params = [ self.build(x) for x in raw.nested ] 506 result = self._build_optarg_type(raw) 507 return FunctionDef(raw.id, raw.name, params=params, result=result) 509 def build_variable(self, raw): argument 510 type = self._build_optarg_type(raw) 511 return VariableDef(raw.id, raw.optname, type=type) 513 def build_subroutine_type(self, raw): argument [all …]
|
| /freebsd-12-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-12-stable/sys/arm64/rockchip/ |
| D | rk_tsadc.c | 102 uint32_t raw; member 320 int denom, ntbl, raw, i; in tsadc_temp_to_raw() local 326 return (tbl[0].raw); in tsadc_temp_to_raw() 329 return (tbl[ntbl - 1].raw); in tsadc_temp_to_raw() 334 return (tbl[i].raw); in tsadc_temp_to_raw() 343 raw = (int)tbl[i - 1].raw - (int)tbl[i].raw; in tsadc_temp_to_raw() 344 raw *= temp - tbl[i - 1].temp; in tsadc_temp_to_raw() 346 raw = tbl[i - 1].raw + raw / denom; in tsadc_temp_to_raw() 347 return (raw); in tsadc_temp_to_raw() 351 tsadc_raw_to_temp(struct tsadc_softc *sc, uint32_t raw) in tsadc_raw_to_temp() argument [all …]
|
| /freebsd-12-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-12-stable/tests/sys/netpfil/common/ |
| D | pft_ping.py | 51 raw = packet.getlayer(sp.Raw) 52 if not raw: 54 if raw.load != PAYLOAD_MAGIC: 84 raw = packet.getlayer(sp.Raw) 85 if not raw: 87 if raw.load != PAYLOAD_MAGIC: 141 raw = packet.getlayer(sp.Raw) 142 if not raw: 144 if raw.load != PAYLOAD_MAGIC: 153 raw = sp.raw(PAYLOAD_MAGIC) [all …]
|
| /freebsd-12-stable/contrib/ofed/libibverbs/examples/ |
| D | devinfo.c | 51 return !(gid->raw[8] | gid->raw[9] | gid->raw[10] | gid->raw[11] | in null_gid() 52 gid->raw[12] | gid->raw[13] | gid->raw[14] | gid->raw[15]); in null_gid() 180 gid.raw[ 0], gid.raw[ 1], in print_all_port_gids() 181 gid.raw[ 2], gid.raw[ 3], in print_all_port_gids() 182 gid.raw[ 4], gid.raw[ 5], in print_all_port_gids() 183 gid.raw[ 6], gid.raw[ 7], in print_all_port_gids() 184 gid.raw[ 8], gid.raw[ 9], in print_all_port_gids() 185 gid.raw[10], gid.raw[11], in print_all_port_gids() 186 gid.raw[12], gid.raw[13], in print_all_port_gids() 187 gid.raw[14], gid.raw[15]); in print_all_port_gids()
|
| /freebsd-12-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-12-stable/usr.sbin/ofwdump/ |
| D | ofwdump.c | 54 const char *prop, int raw, int str); 144 ofw_dump_properties(int fd, phandle_t n, int level, int raw, int str) in ofw_dump_properties() argument 151 ofw_dump_property(fd, n, level, prop, raw, str); in ofw_dump_properties() 155 ofw_dump_property(int fd, phandle_t n, int level, const char *prop, int raw, in ofw_dump_property() argument 167 if (raw) in ofw_dump_property() 212 const char *pmatch, int raw, int str) in ofw_dump_node() argument 219 if (!(raw || str)) { in ofw_dump_node() 230 ofw_dump_property(fd, n, level, pmatch, raw, str); in ofw_dump_node() 232 ofw_dump_properties(fd, n, level, raw, str); in ofw_dump_node() 237 raw, str); in ofw_dump_node() [all …]
|
| /freebsd-12-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-12-stable/release/ |
| D | Makefile.gce | 8 GCE_IMG?= ${.OBJDIR}/gce.raw 34 GCE_TARGET:= ${OSRELEASE:S,.raw,,:tl:S,.,-,g}${SNAPSHOT_DATE} 60 cd ${.OBJDIR} && mv gce.raw disk.raw 62 ${GCE_TARGET:S,${.OBJDIR}/,,}.tar.gz disk.raw 63 cd ${.OBJDIR} && mv disk.raw gce.raw
|
| /freebsd-12-stable/sys/ofed/drivers/infiniband/ulp/ipoib/ |
| D | ipoib_multicast.c | 70 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_free() 113 ret = memcmp(mgid, mcast->mcmember.mgid.raw, in __ipoib_mcast_find() 138 ret = memcmp(mcast->mcmember.mgid.raw, tmcast->mcmember.mgid.raw, in __ipoib_mcast_add() 166 if (!memcmp(mcast->mcmember.mgid.raw, dev->if_broadcastaddr + 4, in ipoib_mcast_join_finish() 182 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_join_finish() 191 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_join_finish() 223 mcast->mcmember.mgid.raw, ":", in ipoib_mcast_join_finish() 260 mcast->mcmember.mgid.raw, ":", status); in ipoib_mcast_sendonly_join_complete() 315 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_sendonly_join() 347 mcast->mcmember.mgid.raw, ":", status); in ipoib_mcast_join_complete() [all …]
|
| /freebsd-12-stable/sbin/ipf/libipf/ |
| D | save_file.c | 13 int raw; member 41 ctx->raw = 1; in file_parse() 65 if (f1->raw != f2->raw) in file_match() 88 if (file->raw) in file_print() 116 if (file->raw) { in file_send()
|
| /freebsd-12-stable/usr.sbin/bhyve/ |
| D | bhyvegc.c | 42 int raw; member 58 gc->raw = 1; in bhyvegc_init() 61 gc->raw = 0; in bhyvegc_init() 72 gc->raw = 1; in bhyvegc_set_fbaddr() 87 if (!gc->raw) { in bhyvegc_resize()
|
| /freebsd-12-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-12-stable/sys/ofed/include/rdma/ |
| D | ib_addr.h | 186 memcpy(gid->raw, &((const struct sockaddr_in6 *)addr)->sin6_addr, 16); in rdma_ip2gid() 188 if (IN6_IS_SCOPE_LINKLOCAL((struct in6_addr *)gid->raw) || in rdma_ip2gid() 189 IN6_IS_ADDR_MC_INTFACELOCAL((struct in6_addr *)gid->raw)) { in rdma_ip2gid() 190 gid->raw[2] = 0; in rdma_ip2gid() 191 gid->raw[3] = 0; in rdma_ip2gid() 208 memcpy(&out_in->sin_addr.s_addr, gid->raw + 12, 4); in rdma_gid2ip() 214 memcpy(&out_in->sin6_addr.s6_addr, gid->raw, 16); in rdma_gid2ip() 351 vid = dgid->raw[11] << 8 | dgid->raw[12]; in rdma_get_vlan_id()
|
| /freebsd-12-stable/usr.bin/uuencode/ |
| D | uuencode.c | 71 static char raw = 0; variable 97 raw = 1; in main() 161 if (!raw) in base64_encode() 172 if (!raw) in base64_encode() 186 if (!raw) in encode() 221 if (!raw) in encode()
|
| /freebsd-12-stable/sys/dev/bxe/ |
| D | ecore_sp.c | 336 static int ecore_raw_wait(struct bxe_softc *sc, struct ecore_raw_obj *raw) in ecore_raw_wait() argument 338 return ecore_state_wait(sc, raw->state, raw->pstate); in ecore_raw_wait() 881 struct ecore_raw_obj *raw = &o->raw; in ecore_vlan_mac_get_rx_tx_flag() local 884 if ((raw->obj_type == ECORE_OBJ_TYPE_TX) || in ecore_vlan_mac_get_rx_tx_flag() 885 (raw->obj_type == ECORE_OBJ_TYPE_RX_TX)) in ecore_vlan_mac_get_rx_tx_flag() 888 if ((raw->obj_type == ECORE_OBJ_TYPE_RX) || in ecore_vlan_mac_get_rx_tx_flag() 889 (raw->obj_type == ECORE_OBJ_TYPE_RX_TX)) in ecore_vlan_mac_get_rx_tx_flag() 940 struct ecore_raw_obj *raw = &o->raw; in ecore_vlan_mac_set_cmd_hdr_e2() local 942 hdr->client_id = raw->cl_id; in ecore_vlan_mac_set_cmd_hdr_e2() 943 hdr->func_id = raw->func_id; in ecore_vlan_mac_set_cmd_hdr_e2() [all …]
|
| /freebsd-12-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-12-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-12-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-12-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-12-stable/sys/kern/ |
| D | kern_ctf.c | 53 caddr_t raw = NULL; local 221 raw = malloc(shdr[i].sh_size, M_LINKER, M_WAITOK); 240 if ((error = vn_rdwr(UIO_READ, nd.ni_vp, raw == NULL ? ctftab : raw, 246 if (raw != NULL) { 265 zs.next_in = ((uint8_t *) raw) + sizeof(ctf_hdr); 307 if (raw != NULL) 308 free(raw, M_LINKER);
|
| /freebsd-12-stable/sys/contrib/zstd/zlibWrapper/examples/ |
| D | fitblk_original.c | 76 unsigned char raw[RAWLEN]; in partcompress() local 80 def->avail_in = fread(raw, 1, RAWLEN, in); in partcompress() 83 def->next_in = raw; in partcompress() 99 unsigned char raw[RAWLEN]; in recompress() local 105 inf->next_out = raw; in recompress() 114 def->next_in = raw; in recompress()
|