Searched refs:raw (Results 1 - 25 of 315) sorted by relevance

1234567891011>>

/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_set_format_raw.c41 struct raw { struct
46 * Set output format to 'raw' format.
52 struct raw *raw; local
61 raw = (struct raw *)calloc(1, sizeof(*raw));
62 if (raw == NULL) {
63 archive_set_error(&a->archive, ENOMEM, "Can't allocate raw data");
66 raw
85 struct raw *raw = (struct raw *)a->format_data; local
119 struct raw *raw; local
[all...]
/freebsd-current/contrib/lutok/
H A Dstate_test.cpp71 luaL_loadstring(raw(state), (std::string("return ") + symbol).c_str());
72 const bool ok = (lua_pcall(raw(state), 0, 1, 0) == 0 &&
73 !lua_isnil(raw(state), -1));
74 lua_pop(raw(state), 1);
105 /// \param raw_state The raw Lua state.
131 const int f1 = lua_tointeger(raw(state), lua_upvalueindex(1));
132 const int f2 = lua_tointeger(raw(state), -1);
133 lua_pushinteger(raw(state), f1 * f2);
203 ATF_REQUIRE(luaL_dostring(raw(state), "test_variable = 3") == 0);
205 ATF_REQUIRE(lua_isnumber(raw(stat
[all...]
H A Ddebug_test.cpp42 ATF_REQUIRE(luaL_dostring(raw(state), "\n\nfunction hello() end\n"
54 ATF_REQUIRE(luaL_dostring(raw(state), "error('Hello')") == 1);
57 lua_pop(raw(state), 1);
/freebsd-current/share/examples/sound/
H A Dmidi.c38 unsigned char raw; local
43 while ((l = read(midi_config.fd, &raw, sizeof(raw))) != -1) {
44 if (!(raw & 0x80)) {
47 event.type = raw & CMD_MASK;
48 event.channel = raw & CHANNEL_MASK;
/freebsd-current/sys/dev/enic/
H A Dvnic_rss.h15 u64 raw[8]; member in union:vnic_rss_key
24 u64 raw[32]; member in union:vnic_rss_cpu
/freebsd-current/sys/contrib/openzfs/include/sys/zstd/
H A Dzstd.h159 uint32_t raw = blob->raw_version_level; local
163 findme = BF32_GET(raw, 8*shift, 8);
169 res->level = BF32_GET(raw, 24, 8);
170 res->version = BSWAP_32(raw);
174 res->level = BF32_GET(raw, 0, 8);
175 res->version = BSWAP_32(raw);
179 res->level = BF32_GET(raw, 24, 8);
180 res->version = BF32_GET(raw, 0, 24);
183 res->level = BF32_GET(raw, 0, 8);
184 res->version = BF32_GET(raw,
[all...]
/freebsd-current/usr.sbin/bhyve/
H A Dbhyvegc.c39 int raw; member in struct:bhyvegc
55 gc->raw = 1;
58 gc->raw = 0;
69 gc->raw = 1;
84 if (!gc->raw) {
/freebsd-current/sbin/ipf/libipf/
H A Dsave_file.c13 int raw; member in struct:file_opts_s
40 if (!strncmp(strings[0], "raw://", 6)) {
41 ctx->raw = 1;
65 if (f1->raw != f2->raw)
88 if (file->raw)
89 printf("raw://");
116 if (file->raw) {
H A Dsave_nothing.c10 int raw; member in struct:nothing_opts_s
/freebsd-current/tools/tools/shlib-compat/
H A Dshlib-compat.py501 def build_subprogram(self, raw):
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):
509 type = self._build_optarg_type(raw)
[all...]
/freebsd-current/sys/arm64/rockchip/
H A Drk_tsadc.c112 uint32_t raw; member in struct:rk_calib_entry
388 int denom, ntbl, raw, i; local
394 return (tbl[0].raw);
397 return (tbl[ntbl - 1].raw);
402 return (tbl[i].raw);
411 raw = (int)tbl[i - 1].raw - (int)tbl[i].raw;
412 raw *= temp - tbl[i - 1].temp;
414 raw
419 tsadc_raw_to_temp(struct tsadc_softc *sc, uint32_t raw) argument
[all...]
/freebsd-current/tests/sys/netpfil/pf/
H A Dpft_ether.py42 raw = sp.raw(PAYLOAD_MAGIC)
44 req = ether / ip / icmp / raw
H A Dpfsync_defer.py82 raw = sp.raw(bytes.fromhex('00010203'))
84 req = ether / ip / icmp / raw
/freebsd-current/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) argument
150 ofw_dump_property(fd, n, level, prop, raw, str);
154 ofw_dump_property(int fd, phandle_t n, int level, const char *prop, bool raw, argument
166 if (raw)
211 const char *pmatch, bool raw, bool str)
218 if (!(raw || str)) {
229 ofw_dump_property(fd, n, level, pmatch, raw, str);
231 ofw_dump_properties(fd, n, level, raw, str);
236 raw, st
210 ofw_dump_node(int fd, phandle_t n, int level, int rec, int prop, const char *pmatch, bool raw, bool str) argument
242 ofw_dump(int fd, const char *start, bool rec, bool prop, const char *pmatch, bool raw, bool str) argument
[all...]
/freebsd-current/tools/tools/net80211/w00t/redir/
H A Dbuddy.c99 void handle_dude(int dude, int raw) argument
105 rd = recv(raw, buf, sizeof(buf), 0);
124 int raw; local
131 if ((raw = socket(PF_INET, SOCK_RAW, 0)) == -1)
153 handle_dude(dude, raw);
/freebsd-current/usr.bin/bintrans/
H A Duuencode.c63 static bool raw; variable
70 raw = 1;
105 raw = true;
172 if (!raw)
193 if (!raw)
207 if (!raw)
242 if (!raw)
/freebsd-current/contrib/kyua/utils/sqlite/
H A Ddatabase_test.cpp50 create_test_table(raw(db));
51 verify_test_table(raw(db));
70 verify_test_table(raw(db));
91 create_test_table(raw(db));
126 create_test_table(raw(db));
127 verify_test_table(raw(db));
147 create_test_table(raw(db2));
149 verify_test_table(raw(db1));
153 verify_test_table(raw(db1));
200 verify_test_table(raw(d
[all...]
H A Dc_gate_test.cpp50 create_test_table(raw(database));
63 create_test_table(raw(db));
76 "means to access the filename of a database connected to a raw "
/freebsd-current/release/
H A DMakefile.gce60 GCE_IMG_${_FS}= ${.OBJDIR}/gce.${_FS}.raw
63 GCE_TARGET_${_FS}= ${OSRELEASE:S,.raw,,:tl:S,.,-,g}-${_FS}${SNAPSHOT_DATE}
67 cd ${.OBJDIR} && mv ${GCE_IMG_${_FS}} disk.raw
69 ${GCE_TARGET_${_FS}:S,${.OBJDIR}/,,}.tar.gz disk.raw
70 cd ${.OBJDIR} && mv disk.raw ${GCE_IMG_${_FS}}
/freebsd-current/contrib/ofed/libibverbs/examples/
H A Ddevinfo.c51 return !(gid->raw[8] | gid->raw[9] | gid->raw[10] | gid->raw[11] |
52 gid->raw[12] | gid->raw[13] | gid->raw[14] | gid->raw[15]);
180 gid.raw[ 0], gid.raw[
[all...]
/freebsd-current/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c8 Use fixed-size, stack-allocated raw buffers
76 unsigned char raw[RAWLEN]; local
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
99 unsigned char raw[RAWLEN]; local
105 inf->next_out = raw;
114 def->next_in = raw;
/freebsd-current/crypto/openssl/test/
H A Dpemtest.c18 const char *raw; member in struct:__anon145
40 const char *raw = b64_pem_data[idx].raw; local
51 || !TEST_int_eq(len, strlen(raw))
52 || !TEST_int_eq(memcmp(data, raw, strlen(raw)), 0))
/freebsd-current/sbin/ipf/ipsend/
H A Dsdlpi.c133 dl_hp_rawdata_req_t raw; variable
136 raw.dl_primitive = DL_HP_RAWDATA_REQ;
137 cp->len = sizeof(raw);
138 cp->buf = (char *)&raw;
/freebsd-current/sys/dev/mrsas/
H A Dmrsas_ioctl.h95 u_int8_t raw[MEGAMFI_RAW_FRAME_SIZE]; member in union:mrsas_iocpacket::__anon3555
113 u_int8_t raw[MEGAMFI_RAW_FRAME_SIZE]; member in union:mrsas_iocpacket32::__anon3556
/freebsd-current/sys/ofed/include/rdma/
H A Dib_addr.h197 memcpy(gid->raw, &((const struct sockaddr_in6 *)addr)->sin6_addr, 16);
199 if (IN6_IS_SCOPE_LINKLOCAL((struct in6_addr *)gid->raw) ||
200 IN6_IS_ADDR_MC_INTFACELOCAL((struct in6_addr *)gid->raw)) {
201 gid->raw[2] = 0;
202 gid->raw[3] = 0;
219 memcpy(&out_in->sin_addr.s_addr, gid->raw + 12, 4);
225 memcpy(&out_in->sin6_addr.s6_addr, gid->raw, 16);
363 vid = dgid->raw[11] << 8 | dgid->raw[12];

Completed in 287 milliseconds

1234567891011>>