Searched refs:raw (Results 51 - 75 of 229) sorted by relevance

12345678910

/freebsd-11-stable/sys/net/
H A Draw_cb.c51 * Routines to manage the raw protocol control blocks.
62 static SYSCTL_NODE(_net, OID_AUTO, raw, CTLFLAG_RW, 0,
67 "Default raw socket send space");
71 "Default raw socket receive space");
104 * Detach the raw connection block and discard socket resources.
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/rpc/
H A Dt_rpc.c320 ATF_TC(raw); variable
321 ATF_TC_HEAD(raw, tc)
323 atf_tc_set_md_var(tc, "descr", "Checks svc raw");
326 ATF_TC_BODY(raw, tc)
396 ATF_TP_ADD_TC(tp, raw);
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
H A Dlib_raw.c37 * raw.c
40 * raw()
81 NCURSES_SP_NAME(raw) (NCURSES_SP_DCL0) function
86 T((T_CALLED("raw(%p)"), (void *) SP_PARM));
90 BEFORE("raw");
119 AFTER("raw");
126 raw(void) function
128 return NCURSES_SP_NAME(raw) (CURRENT_SCREEN);
/freebsd-11-stable/sys/dev/usb/template/
H A Dusb_template.c165 * This function will insert a raw USB descriptor into the generated
170 const uint8_t *raw)
178 if (raw) {
179 len = raw[0];
182 memcpy(dst, raw, len);
186 if ((raw[0] == sizeof(struct usb_cdc_union_descriptor)) &&
187 (raw[1] == UDESC_CS_INTERFACE) &&
188 (raw[2] == UDESCSUB_CDC_UNION)) {
201 if ((raw[0] == sizeof(struct usb_interface_assoc_descriptor)) &&
202 (raw[
169 usb_make_raw_desc(struct usb_temp_setup *temp, const uint8_t *raw) argument
[all...]
/freebsd-11-stable/sys/dev/iicbus/twsi/
H A Dmv_twsi.c179 rate->raw = TWSI_BAUD_RATE_RAW(clk, m0, n0);
204 sc->baud_rate[IIC_SLOW].raw / 1000,
207 sc->baud_rate[IIC_FAST].raw / 1000,
/freebsd-11-stable/sys/netgraph/
H A Dng_parse.c740 const char *const raw = (const char *)data + *off; local
741 char *const s = ng_encode_string(raw, strlen(raw));
750 *off += strlen(raw) + 1;
912 const char *const raw = (const char *)data + *off + 2; local
914 char *const s = ng_encode_string(raw, slen);
1817 ng_encode_string(const char *raw, int slen) argument
1823 cbuf = malloc(strlen(raw) * 4 + 3, M_NETGRAPH_PARSE, M_NOWAIT);
1827 for (i = 0; i < slen; i++, raw++) {
1828 switch (*raw) {
[all...]
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_inform.c253 inet_ntop(AF_INET6, p_infr->inform_record.subscriber_gid.raw,
418 inet_ntop(AF_INET6, source_gid.raw, gid_str, sizeof gid_str));
428 inet_ntop(AF_INET6, source_gid.raw, gid_str, sizeof gid_str),
625 inet_ntop(AF_INET6, gid->raw, gid_str, sizeof gid_str));
632 inet_ntop(AF_INET6, gid->raw, gid_str, sizeof gid_str));
721 inet_ntop(AF_INET6, gid1->raw, gid_str, sizeof gid_str),
722 inet_ntop(AF_INET6, gid2->raw, gid_str2, sizeof gid_str2));
743 inet_ntop(AF_INET6, gid1->raw, gid_str, sizeof gid_str),
744 inet_ntop(AF_INET6, gid2->raw, gid_str2, sizeof gid_str2));
754 inet_ntop(AF_INET6, gid->raw, gid_st
[all...]
H A Dosm_prtn_config.c124 ib_net16_t ipsig = *(ib_net16_t *)&mgid->raw[2];
131 ib_net16_t mpkey = *(ib_net16_t *)&group->mgid.raw[4];
144 inet_ntop(AF_INET6, group->mgid.raw, gid_str, sizeof gid_str),
161 inet_ntop(AF_INET6, group->mgid.raw, gid_str, sizeof gid_str),
179 inet_ntop(AF_INET6, group->mgid.raw, gid_str, sizeof gid_str),
255 memcpy(&broadcast_mgroup.mgid.raw[4], &pkey , sizeof(pkey));
594 || mgroup.mgid.raw[0] != 0xff) {
622 memcpy(&mgroup.mgid.raw[4], &pkey, sizeof(pkey));
/freebsd-11-stable/sys/dev/aacraid/
H A Daacraid_cam.c436 struct aac_raw_io2 *raw; local
437 raw = (struct aac_raw_io2 *)&fib->data[0];
438 bzero(raw, sizeof(struct aac_raw_io2));
440 raw->strtBlkLow = (u_int32_t)blockno;
441 raw->strtBlkHigh = (u_int32_t)(blockno >> 32);
442 raw->byteCnt = cm->cm_datalen;
443 raw->ldNum = ccb->ccb_h.target_id;
445 cm->cm_sgtable = (struct aac_sg_table *)raw->sge;
447 raw->flags = RIO2_IO_TYPE_READ | RIO2_SG_FORMAT_IEEE1212;
449 raw
451 struct aac_raw_io *raw; local
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_port.c97 memset(table->roce_gids[i].raw, 0, MLX4_ROCE_GID_ENTRY_SIZE);
1185 memcpy(priv->port[port].gid_table.roce_gids[offset].raw,
1186 zgid_entry.raw, MLX4_ROCE_GID_ENTRY_SIZE);
1191 memcpy(gid_entry_mbox->raw,
1192 priv->port[port].gid_table.roce_gids[i].raw,
1349 if (!memcmp(gid_entry_mbox->raw, zgid_entry.raw,
1354 if (!memcmp(gid_entry_mb1->raw,
1355 zgid_entry.raw, sizeof(zgid_entry)))
1357 if (!memcmp(gid_entry_mb1->raw, gid_entry_mbo
[all...]
/freebsd-11-stable/contrib/ntp/sntp/ag-tpl/0-old/
H A DMdoc.pm15 =item def_macro( NAME, CODE, [ raw => 1, greedy => 1, concat_until => '.Xx' ] )
24 By default the surrouding "" from arguments to macros are removed, use C<raw>
49 { run => CODE, raw => [1|0], greedy => [1|0] }
301 raw => delete $def{raw} || 0,
434 @args = _unquote(@args) if (!$macros{ $macro }{raw});
/freebsd-11-stable/contrib/ntp/sntp/ag-tpl/
H A DMdoc.pm42 =item def_macro( NAME, CODE, [ raw => 1, greedy => 1, concat_until => '.Xx' ] )
51 By default the surrouding "" from arguments to macros are removed, use C<raw>
76 { run => CODE, raw => [1|0], greedy => [1|0] }
328 raw => delete $def{raw} || 0,
461 @args = _unquote(@args) if (!$macros{ $macro }{raw});
/freebsd-11-stable/sbin/dhclient/
H A Doptions.c74 if (memcmp(packet->raw->options, DHCP_OPTIONS_COOKIE, 4)) {
83 parse_option_buffer(packet, &packet->raw->options[4],
94 (unsigned char *)packet->raw->file,
95 sizeof(packet->raw->file));
98 (unsigned char *)packet->raw->sname,
99 sizeof(packet->raw->sname));
881 tp.raw = packet;
H A Ddhclient.c737 if (packet->interface->client->xid != packet->raw->xid ||
738 (packet->interface->hw_address.hlen != packet->raw->hlen) ||
740 packet->raw->chaddr, packet->raw->hlen)))
928 if (packet->raw->op != BOOTREPLY)
992 packet->interface->client->xid != packet->raw->xid ||
993 (packet->interface->hw_address.hlen != packet->raw->hlen) ||
995 packet->raw->chaddr, packet->raw->hlen)))
1014 if (lease->address.len == sizeof(packet->raw
[all...]
/freebsd-11-stable/contrib/binutils/binutils/
H A Dsysdump.c260 unsigned char raw[255]; local
262 memset (raw, 0, 255);
263 fillup (raw);
/freebsd-11-stable/sys/dev/mthca/
H A Dmthca_av.c215 memcpy(av->dgid, ah_attr->grh.dgid.raw, 16);
285 memcpy(header->grh.destination_gid.raw,
318 memcpy(attr->grh.dgid.raw, ah->av->dgid, 16);
/freebsd-11-stable/sys/netgraph/bluetooth/hci/
H A Dng_hci_misc.c67 if (unit->raw != NULL && NG_HOOK_IS_VALID(unit->raw)) {
70 NG_SEND_DATA_ONLY(error, unit->raw, m);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclarationName.cpp500 unsigned raw = LocInfo.CXXOperatorName.EndOpNameLoc; local
501 return SourceLocation::getFromRawEncoding(raw);
505 unsigned raw = LocInfo.CXXLiteralOperatorName.OpNameLoc; local
506 return SourceLocation::getFromRawEncoding(raw);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp607 u64 raw = atomic_load((atomic_uint64_t*)p, memory_order_relaxed); local
608 return Shadow(raw);
625 thr->racy_state[0] = cur.raw();
626 thr->racy_state[1] = old.raw();
651 u64 store_word = cur.raw();
862 if (LIKELY(ContainsSameAccess(shadow_mem, cur.raw(),
887 if (LIKELY(ContainsSameAccess(shadow_mem, cur.raw(),
984 MemoryRangeSet(thr, pc, addr, size, s.raw());
996 MemoryRangeSet(thr, pc, addr, size, s.raw());
/freebsd-11-stable/etc/rc.d/
H A Dbluetooth120 ngctl connect ${dev}hci: btsock_hci_raw: raw ${dev}raw \
/freebsd-11-stable/contrib/ntp/sntp/scripts/
H A Dcvo.sh151 # keys['raw'] = "cvo.CVO['CVO_raw']"
152 TS=`echo $TS | sed -e s/@raw@/$CVO_raw/g`
/freebsd-11-stable/contrib/netcat/
H A Dnetcat.c1360 char *raw; local
1363 raw = ipsec_set_policy(policy, strlen(policy));
1364 if (raw == NULL)
1368 e = setsockopt(s, IPPROTO_IP, IP_IPSEC_POLICY, raw,
1369 ipsec_get_policylen(raw));
1371 e = setsockopt(s, IPPROTO_IPV6, IPV6_IPSEC_POLICY, raw,
1372 ipsec_get_policylen(raw));
1375 free(raw);
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_sysfs.c127 be16_to_cpu(((__be16 *) gid.raw)[0]),
128 be16_to_cpu(((__be16 *) gid.raw)[1]),
129 be16_to_cpu(((__be16 *) gid.raw)[2]),
130 be16_to_cpu(((__be16 *) gid.raw)[3]),
131 be16_to_cpu(((__be16 *) gid.raw)[4]),
132 be16_to_cpu(((__be16 *) gid.raw)[5]),
133 be16_to_cpu(((__be16 *) gid.raw)[6]),
134 be16_to_cpu(((__be16 *) gid.raw)[7]));
/freebsd-11-stable/release/
H A DMakefile.ec290 ${.OBJDIR}/ec2.raw \
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dwps_upnp.c817 u8 *raw = NULL; local
829 raw = os_zalloc(raw_len);
830 if (!raw)
833 *(raw + pos) = (u8) ev_type;
838 os_memcpy(raw + pos, mac_text, 17);
841 os_memcpy(raw + pos, wpabuf_head(msg), wpabuf_len(msg));
846 val = (char *) base64_encode(raw, raw_len, &val_len);
858 os_free(raw);

Completed in 209 milliseconds

12345678910