Searched refs:unpack (Results 1 - 25 of 38) sorted by relevance

12

/freebsd-13-stable/contrib/libarchive/cpio/test/
H A Dtest_option_f.c32 unpack(const char *dirname, const char *option) function
47 unpack("t0", "--no-preserve-owner");
56 unpack("t1", "--no-preserve-owner -f a*");
58 unpack("t1", "--no-preserve-owner -f 'a*'");
68 unpack("t2", "--no-preserve-owner -f b*");
70 unpack("t2", "--no-preserve-owner -f 'b*'");
/freebsd-13-stable/tools/test/devrandom/
H A Dhammer.urandom20 $k = unpack("S", substr($a, $j, 2));
21 $z = unpack("S", substr($b, $j, 2));
H A Dhammer.random18 $k = unpack("C", substr($a, $j, 1));
H A Dstat.16bit20 $k = unpack("S", substr($a, $j, 2));
H A Dstat.8bit20 $k = unpack("C", substr($a, $j, 1));
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua39 return table.unpack(res, 1, res.n)
57 -- testing unpack
59 local unpack = table.unpack
64 assert(select(lim, unpack(a)) == lim and select('#', unpack(a)) == lim)
65 x = unpack(a)
67 x = {unpack(a)}
69 x = {unpack(a, lim-2)}
71 x = {unpack(
[all...]
H A Dtst.lib_coroutine.lua53 _G.x = {coroutine.yield(table.unpack(arg[i]))}
55 return table.unpack(a)
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dstack_trace_compressor.h32 size_t unpack(const uint8_t *Packed, size_t PackedSize, uintptr_t *Unpacked,
H A Dcrash_handler.cpp115 return gwp_asan::compression::unpack(
133 return gwp_asan::compression::unpack(
H A Dstack_trace_compressor.cpp87 size_t unpack(const uint8_t *Packed, size_t PackedSize, uintptr_t *Unpacked, function in namespace:gwp_asan::compression
/freebsd-13-stable/contrib/ntp/scripts/monitoring/
H A Dntptrap93 ($my_port, $my_addr) = (unpack("S n a4 x8",getsockname(S)))[$[+1,$[+2];
95 unpack("C4",$my_addr), $my_port));
166 &debug(sprintf("hostname(%d.%d.%d.%d) = \"%s\"",unpack("C4",$addr),$name))
169 &debug(sprintf("Failed to get name for %d.%d.%d.%d",unpack("C4",$addr)));
170 return sprintf("[%d.%d.%d.%d]",unpack("C4",$addr));
198 ($addr,$assoc,$op) = unpack("a4SC",($req = shift(@Requests)));
202 &set_timeout("retry-".unpack("H*",$req),time+$BASE_TIMEOUT,
203 sprintf("&retry(\"%s\");",unpack("H*",$req)));
255 $from = (unpack("Sna4",$from))[$[+2]; # keep host addr only
269 &clear_timeout("retry-".unpack("
[all...]
H A Dntploopstat130 local($s,$us) = unpack("LL",$tz);
236 unpack("C4",$server_addr));
253 ($my_port, $my_addr) = (unpack("S n a4 x8",getsockname(S)))[$[+1,$[+2];
256 unpack("C4",$my_addr), $my_port);
329 (unpack("SnC4",$ret))[$[+2 .. $[+5], ($etime - $stime)));
340 = unpack($loopinfo_response_fmt,$reply);
356 warn(" \"".unpack("H*",$reply)."\"\n");
367 = unpack($loopinfo_response_fmt_v2,$reply);
/freebsd-13-stable/lib/libutil/
H A Dkinfo_getvmobject.c57 goto unpack;
66 unpack:
/freebsd-13-stable/contrib/unbound/contrib/
H A Dunbound-querycachedb.py39 timestamp = struct.unpack('!Q', value[-16:-8])[0]
40 expire = struct.unpack('!Q', value[-8:])[0]
/freebsd-13-stable/lib/libifconfig/
H A Dlibifconfig_sfp_tables.tpl.h52 val, sym, desc, disp = table.unpack(item)
H A Dlibifconfig_sfp_tables.tpl.c65 _, sym, desc, disp = table.unpack(item)
/freebsd-13-stable/contrib/lib9p/pytest/
H A Dsequencer.py31 All provide a pack() and unpack(). The pack() function
36 The pack/unpack functions take a dictionary of variable names
97 def unpack(self, vdict, cdict, bstring, offset, noerror=False): member in class:EncDec
98 "unpack bytes from <bstring> at <offset>"
139 >>> e.unpack({}, {}, b'\x00\x01', 0)
141 >>> e.unpack({}, {}, b'', 0)
145 >>> e.unpack({}, {}, b'', 0, noerror=True)
185 >>> unpacked = e.unpack({}, {}, b'\x04\x00data', 0)
200 >>> e.unpack({}, {}, b'\x07\x00stringy', 0)
235 "internal function to unpack singl
250 def unpack(self, vdict, cdict, bstring, offset, noerror=False): member in class:EncDecSimple
353 def unpack(self, vdict, cdict, bstring, offset, noerror=False): member in class:EncDecTyped
442 def unpack(self, vdict, cdict, bstring, offset, noerror=False): member in class:EncDecA
641 def unpack(self, vdict, cdict, bstring, noerror=False): member in class:Sequencer
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/
H A Dacpica_prep.sh49 # unpack
50 echo unpack
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitfields.h131 static T unpack(T StorageValue) { return StorageValue; } function in struct:llvm::bitfields_details::Compressor
147 static T unpack(T StorageValue) { function in struct:llvm::bitfields_details::Compressor
180 return C::unpack(StorageValue);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A Dembedded_interpreter.py67 hw = struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ, '1234'))
/freebsd-13-stable/sys/contrib/openzfs/module/lua/
H A Dltablib.c114 ** Pack/unpack
135 static int unpack (lua_State *L) { function
144 return luaL_error(L, "too many results to unpack");
267 {"unpack", unpack},
277 /* _G.unpack = table.unpack */
278 lua_getfield(L, -1, "unpack");
279 lua_setglobal(L, "unpack");
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h161 return UnpackOptionalValue<T>::unpack(
/freebsd-13-stable/usr.bin/mail/
H A Dextern.h242 char **unpack(struct name *);
/freebsd-13-stable/contrib/bmake/
H A DMakefile211 @echo need to unpack mk.tar.gz under ${srcdir} or set MKSRC; false
/freebsd-13-stable/usr.bin/gzip/
H A Dunpack.c2 /* $NetBSD: unpack.c,v 1.3 2017/08/04 07:27:08 mrg Exp $ */
66 * unpack descriptor
94 * Release resource allocated to an unpack descriptor.
320 unpack(int in, int out, char *pre, size_t prelen, off_t *bytes_in) function
335 /* If we reached here, the unpack was successful */

Completed in 121 milliseconds

12