Home
last modified time | relevance | path

Searched full:raw (Results 1 – 25 of 2361) sorted by relevance

12345678910>>...95

/freebsd/contrib/lutok/
H A Dstate_test.cpp71 luaL_loadstring(raw(state), (std::string("return ") + symbol).c_str()); in is_available()
72 const bool ok = (lua_pcall(raw(state), 0, 1, 0) == 0 && in is_available()
73 !lua_isnil(raw(state), -1)); in is_available()
74 lua_pop(raw(state), 1); in is_available()
105 /// \param raw_state The raw Lua state.
131 const int f1 = lua_tointeger(raw(state), lua_upvalueindex(1)); in cxx_multiply_closure()
132 const int f2 = lua_tointeger(raw(state), -1); in cxx_multiply_closure()
133 lua_pushinteger(raw(state), f1 * f2); in cxx_multiply_closure()
203 ATF_REQUIRE(luaL_dostring(raw(state), "test_variable = 3") == 0); in ATF_TEST_CASE_BODY()
205 ATF_REQUIRE(lua_isnumber(raw(state), -1)); in ATF_TEST_CASE_BODY()
[all …]
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_set_format_raw.c41 struct raw { struct
46 * Set output format to 'raw' format. argument
52 struct raw *raw; in archive_write_set_format_raw() local
61 raw = calloc(1, sizeof(*raw)); in archive_write_set_format_raw()
62 if (raw == NULL) { in archive_write_set_format_raw()
63 archive_set_error(&a->archive, ENOMEM, "Can't allocate raw data"); 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()
68 a->format_name = "raw"; in archive_write_set_format_raw()
78 a->archive.archive_format_name = "RAW"; in archive_write_set_format_raw()
[all …]
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devppkey_ecx.txt43 #Raw versions of the same keys as above
45 PrivateKeyRaw=Alice-25519-Raw:X25519:77076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c…
47 PublicKeyRaw=Alice-25519-PUBLIC-Raw:X25519:8520f0098930a754748b7ddcb43ef75a0dbf3a0d26381af4eba4a98e…
49 PrivPubKeyPair = Alice-25519-Raw:Alice-25519-PUBLIC-Raw
51 PrivateKeyRaw=Bob-25519-Raw:X25519:5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb
53 PublicKeyRaw=Bob-25519-PUBLIC-Raw:X25519:de9edb7d7b7dc1b4d35b61c2ece435373f8343c85b78674dadfc7e146f…
57 PrivPubKeyPair = Bob-25519-Raw:Bob-25519-PUBLIC-Raw
67 Derive=Alice-25519-Raw
68 PeerKey=Bob-25519-PUBLIC-Raw
71 Derive=Bob-25519-Raw
[all …]
/freebsd/tools/tools/shlib-compat/
H A Dshlib-compat.py501 def build_subprogram(self, raw): argument
502 if raw.optname == None:
503 raw.setname('SUBPROGRAM_NONAME_' + raw.arg('low_pc'));
504 params = [ self.build(x) for x in raw.nested ]
505 result = self._build_optarg_type(raw)
506 return FunctionDef(raw.id, raw.name, params=params, result=result)
508 def build_variable(self, raw): argument
509 type = self._build_optarg_type(raw)
510 return VariableDef(raw.id, raw.optname, type=type)
512 def build_subroutine_type(self, raw): argument
[all …]
/freebsd/share/doc/smm/18.net/
H A Db.t29 .\".ds RH "Raw sockets
33 \s+2Raw sockets\s0
35 A raw socket is an object which allows users direct access
36 to a lower-level protocol. Raw sockets are intended for knowledgeable
41 user level by utilizing a raw IP socket for delivery of packets.
42 The raw IP socket interface attempts to provide an identical interface
45 The raw socket support is built around a generic raw socket interface,
47 This section will describe the core of the raw socket interface.
51 Every raw socket has a protocol control block of the following form:
72 number with which the raw socket is associated.
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend_mixed_raw.ksh25 # raw and non-raw sends in a way that would break IV set
30 # 2. Perform a raw send of the first snapshot to 2 other datasets.
31 # 3. Perform a non-raw send of the second snapshot to one of
32 # the other datasets. Perform a raw send from this dataset to
34 # 4. Attempt to raw send the final snapshot of the first dataset
41 # snap1 ---raw---> snap1 --raw--> snap1 # all snaps initialized via raw send
42 # snap2 -non-raw-> snap2 --raw--> snap2 # A sends non-raw to B, B sends raw to C
43 # snap3 ------------raw---------> snap3 # attempt send to C (should fail)
60 log_assert "Mixing raw and non-raw receives should fail"
118 log_pass "Mixing raw and non-raw receives fail as expected"
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DLazyAtomicPointer.h43 uintptr_t Raw = Value ? reinterpret_cast<uintptr_t>(Value) : getNull(); in makeRaw() local
44 assert(Raw != getBusy()); in makeRaw()
45 return Raw; in makeRaw()
111 uintptr_t Raw = Storage.load(); in loadOrGenerate() local
112 if (Raw != getNull() && Raw != getBusy()) in loadOrGenerate()
113 return *makePointer(Raw); in loadOrGenerate()
116 if (LLVM_LIKELY(Raw == getNull() && in loadOrGenerate()
117 Storage.compare_exchange_strong(Raw, getBusy()))) { in loadOrGenerate()
118 Raw = makeRaw(Generator()); in loadOrGenerate()
119 assert(Raw != getNull() && "Expected non-null from generator"); in loadOrGenerate()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_send/
H A Dzfs_send_raw.ksh25 # ZFS should perform raw sends of datasets.
30 # 3. Attempt a raw send of both datasets
31 # 4. Attempt a raw send with properties of both datasets
32 # 5. Attempt a raw replication send of both datasets
34 # 7. Attempt a raw send of the encrypted dataset
48 log_assert "ZFS should perform raw sends of datasets"
63 log_note "Verify ZFS can perform raw sends with properties"
67 log_note "Verify ZFS can perform raw replication sends"
71 log_note "Verify ZFS can perform a raw send of an encrypted datasets with" \
77 log_pass "ZFS performs raw sends of datasets"
/freebsd/sys/arm64/rockchip/
H A Drk_tsadc.c112 uint32_t raw; member
388 int denom, ntbl, raw, i; in tsadc_temp_to_raw() local
394 return (tbl[0].raw); in tsadc_temp_to_raw()
397 return (tbl[ntbl - 1].raw); in tsadc_temp_to_raw()
402 return (tbl[i].raw); in tsadc_temp_to_raw()
411 raw = (int)tbl[i - 1].raw - (int)tbl[i].raw; in tsadc_temp_to_raw()
412 raw *= temp - tbl[i - 1].temp; in tsadc_temp_to_raw()
414 raw = tbl[i - 1].raw + raw / denom; in tsadc_temp_to_raw()
415 return (raw); in tsadc_temp_to_raw()
419 tsadc_raw_to_temp(struct tsadc_softc *sc, uint32_t raw) in tsadc_raw_to_temp() argument
[all …]
/freebsd/sbin/ipf/libipf/
H A Dsave_file.c13 int raw; member
40 if (!strncmp(strings[0], "raw://", 6)) { in file_parse()
41 ctx->raw = 1; in file_parse()
65 if (f1->raw != f2->raw) in file_match()
88 if (file->raw) in file_print()
89 printf("raw://"); in file_print()
116 if (file->raw) { in file_send()
/freebsd/contrib/file/magic/Magdir/
H A Dspec4 # 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
H A Dmodem11 # Summary: CCITT Group 3 Facsimile in "raw" form (i.e. no header).
39 >>>>>>>>-0 offset !32034 raw G3 (Group 3) FAX, byte-padded
40 # version 5.25 labeled the entry above "raw G3 data, byte-padded"
45 #0 short 0x1300 raw G3 (Group 3) FAX
52 >>122 ubeshort&0xFcFf !0x8081 raw G3 (Group 3) FAX
53 # version 5.25 labeled the above entry as "raw G3 data"
57 #0 short 0x1900 raw G3 (Group 3) FAX
64 # raw modem data version 1
66 0 string RMD1 raw modem data
/freebsd/crypto/openssl/doc/man3/
H A DEVP_PKEY_new.pod18 - public/private key allocation and raw key handling functions
88 a raw key, otherwise the duplication will fail.
97 string for a public key algorithm that supports raw private keys, i.e one of
98 "X25519", "ED25519", "X448" or "ED448". I<key> points to the raw private key
109 algorithm that supports raw private keys, i.e. one of B<EVP_PKEY_X25519>,
119 EVP_PKEY_new_raw_private_key_ex() except that I<key> points to the raw
121 private key information. Algorithm types that support raw public keys are
125 EVP_PKEY_new_raw_private_key() except that I<key> points to the raw public key
127 information. Algorithm types that support raw public keys are
133 EVP_PKEY_get_raw_private_key() fills the buffer provided by I<priv> with raw
[all …]
H A DBIO_ADDR.pod54 Read on about the addresses in L</RAW ADDRESSES> below.
61 BIO_ADDR_rawaddress() will write the raw address of the given
63 and will set B<*l> to be the amount of bytes the raw address
66 with B<p> set to B<NULL>. The raw address will be in network byte
71 Read on about the addresses in L</RAW ADDRESSES> below.
73 BIO_ADDR_rawport() returns the raw port of the given B<BIO_ADDR>.
74 The raw port will be in network byte order.
95 =head1 RAW ADDRESSES
/freebsd/tools/tools/net80211/
H A DREADME7 stumbler view nearby networks using raw packet interface
8 w00t variety of programs that use the raw packet interface
9 wesside WEP frag attack tool using raw packet interface
10 wlaninject inject 802.11 packets using the raw packet interface
15 The raw packet tools are from Andrea Bittau <a.bittau@cs.ucl.ac.uk>.
/freebsd/usr.sbin/ofwdump/
H A Dofwdump.c53 const char *prop, bool raw, bool str);
143 ofw_dump_properties(int fd, phandle_t n, int level, bool raw, bool str) in ofw_dump_properties() argument
150 ofw_dump_property(fd, n, level, prop, raw, str); in ofw_dump_properties()
154 ofw_dump_property(int fd, phandle_t n, int level, const char *prop, bool raw, in ofw_dump_property() argument
166 if (raw) in ofw_dump_property()
211 const char *pmatch, bool raw, bool str) in ofw_dump_node() argument
218 if (!(raw || str)) { in ofw_dump_node()
229 ofw_dump_property(fd, n, level, pmatch, raw, str); in ofw_dump_node()
231 ofw_dump_properties(fd, n, level, raw, str); in ofw_dump_node()
236 raw, str); in ofw_dump_node()
[all …]
/freebsd/share/examples/sound/
H A Dmidi.c48 unsigned char raw, type, channel, b1, b2; in main() local
54 if (read(fd, &raw, sizeof(raw)) < sizeof(raw)) in main()
56 if (!(raw & 0x80)) in main()
59 type = raw & CMD_MASK; in main()
60 channel = raw & CHANNEL_MASK; in main()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_receive/
H A Dzfs_receive_raw.ksh25 # ZFS should receive streams from raw sends.
31 # 4. Attempt to receive a raw send stream as a child of an unencrypted dataset
35 # 8. Attempt to receive a raw send stream as a child of an encrypted dataset
39 # 12. Verify 'zfs receive -n' works with the raw stream
55 log_assert "ZFS should receive streams from raw sends"
68 log_note "Verify ZFS can receive a raw send stream from an encrypted dataset"
94 log_pass "ZFS can receive streams from raw sends"
/freebsd/tools/boot/
H A Dfull-test.sh294 # The raw variant, currently used only on arm64. It boots with the raw interface of qemu
304 img=${IMAGES}/${ma_combo}/linuxboot-${ma_combo}-raw
343 img2=${IMAGES}/${ma_combo}/linuxboot-${ma_combo}-raw
346 out2=${SCRIPTS}/${ma_combo}/linuxboot-test-raw.sh
354 -drive file=${img},if=none,id=drive0,cache=writeback,format=raw \\
356 -drive file=${bios_code},format=raw,if=pflash \\
357 -drive file=${bios_vars},format=raw,if=pflash \\
364 raw=${IMAGES}/${ma_combo}/freebsd-arm64-aarch64.img
370 -drive file=${raw},if=none,id=drive1,cache=writeback \\
372 -drive file=${bios_code},format=raw,if=pflash \\
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/userquota/
H A Duserspace_send_encrypted.ksh22 # Sending raw encrypted datasets back to the source dataset succeeds.
29 # 4. Raw send both snapshots
32 # 7. Raw send latest snapshot back to source
51 log_assert "Sending raw encrypted datasets back to the source dataset succeeds."
75 # Raw send both snapshots
91 # Raw send latest snapshot back to source
119 log_pass "Sending raw encrypted datasets back to the source dataset succeeds."
/freebsd/contrib/ofed/libibverbs/examples/
H A Ddevinfo.c51 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/tests/sys/netpfil/common/
H A Dpft_ping.py105 icmp = sp.ICMPv6EchoRequest(data=sp.raw(build_payload(send_length)))
115 raw = sp.raw(build_payload(send_length))
117 for packet in sp.fragment(ip / icmp / raw, fragsize=send_frag_length):
120 packets.append(ether / ip / icmp / raw)
156 raw = sp.Raw(load=build_payload(send_length))
158 for packet in sp.fragment6(ip6 / udp / raw, fragSize=send_frag_length):
161 packets.append(ether / ip6 / udp / raw)
167 raw = sp.Raw(load=build_payload(send_length))
169 for packet in sp.fragment(ip / udp / raw, fragsize=send_frag_length):
172 packets.append(ether / ip / udp / raw)
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DEVP_PKEY_new.3153 \&\- public/private key allocation and raw key handling functions
223 a raw key, otherwise the duplication will fail.
232 string for a public key algorithm that supports raw private keys, i.e one of
233 …1ED25519\*(R", \*(L"X448\*(R"\s0 or \*(L"\s-1ED448\*(R".\s0 \fIkey\fR points to the raw private key
244 algorithm that supports raw private keys, i.e. one of \fB\s-1EVP_PKEY_X25519\s0\fR,
254 \&\fBEVP_PKEY_new_raw_private_key_ex()\fR except that \fIkey\fR points to the raw
256 private key information. Algorithm types that support raw public keys are
260 \&\fBEVP_PKEY_new_raw_private_key()\fR except that \fIkey\fR points to the raw public key
262 information. Algorithm types that support raw public keys are
268 \&\fBEVP_PKEY_get_raw_private_key()\fR fills the buffer provided by \fIpriv\fR with raw
[all …]
/freebsd/share/man/man4/
H A Dng_btsocket.452 Raw HCI sockets allow sending of raw HCI command datagrams
61 The Bluetooth raw HCI socket address is defined as follows:
63 /* Bluetooth version of struct sockaddr for raw HCI sockets */
117 .Va net.bluetooth.hci.sockets.raw.ioctl_timeout
120 controls the control request timeout (in seconds) for raw HCI sockets.
125 The raw HCI socket filter defined as follows:
128 * Raw HCI socket filter.
164 Raw L2CAP sockets do not provide access to raw L2CAP datagrams.
202 .Va net.bluetooth.l2cap.sockets.raw.ioctl_timeout
205 controls the control request timeout (in seconds) for raw L2CAP sockets.
/freebsd/sys/contrib/device-tree/Bindings/perf/
H A Driscv,pmu.yaml45 This property shouldn't encode any raw hardware event.
61 This property shouldn't encode any raw event.
68 riscv,raw-event-to-mhpmcounters:
73 that raw event.
74 The encoding of the raw events are platform specific. The information is
75 encoded in a matrix format where each element represents the specific raw
77 If a platform directly encodes each raw PMU event as a unique ID, the
109 riscv,raw-event-to-mhpmcounters =
157 riscv,raw-event-to-mhpmcounters = <0x0 0x0 0xffffffff 0xfc0000ff 0x18>,

12345678910>>...95