Home
last modified time | relevance | path

Searched refs:zs (Results 1 – 25 of 25) sorted by relevance

/openbmc/qemu/migration/
H A Dmultifd-zlib.c26 z_stream zs; member
40 z_stream *zs = &z->zs; in multifd_zlib_send_setup() local
43 zs->zalloc = Z_NULL; in multifd_zlib_send_setup()
44 zs->zfree = Z_NULL; in multifd_zlib_send_setup()
45 zs->opaque = Z_NULL; in multifd_zlib_send_setup()
46 if (deflateInit(zs, migrate_multifd_zlib_level()) != Z_OK) { in multifd_zlib_send_setup()
72 deflateEnd(zs); in multifd_zlib_send_setup()
83 deflateEnd(&z->zs); in multifd_zlib_send_cleanup()
99 z_stream *zs = &z->zs; in multifd_zlib_send_prepare() local
123 zs->avail_in = page_size; in multifd_zlib_send_prepare()
[all …]
/openbmc/linux/tools/perf/util/
H A Dzlib.c24 z_stream zs = { in gzip_decompress_to_file() local
43 if (inflateInit2(&zs, 16 + MAX_WBITS) != Z_OK) in gzip_decompress_to_file()
46 zs.next_in = ptr; in gzip_decompress_to_file()
47 zs.avail_in = stbuf.st_size; in gzip_decompress_to_file()
50 zs.next_out = buf; in gzip_decompress_to_file()
51 zs.avail_out = CHUNK_SIZE; in gzip_decompress_to_file()
53 ret = inflate(&zs, Z_NO_FLUSH); in gzip_decompress_to_file()
65 len = CHUNK_SIZE - zs.avail_out; in gzip_decompress_to_file()
74 inflateEnd(&zs); in gzip_decompress_to_file()
/openbmc/qemu/target/s390x/tcg/
H A Dvec_string_helper.c79 bool rt, bool zs, uint8_t es) in vfae() argument
110 if (zs) { in vfae()
142 const bool zs = extract32(simd_data(desc), 1, 1); \
144 vfae(v1, v2, v3, in, rt, zs, MO_##BITS); \
156 const bool zs = extract32(simd_data(desc), 1, 1); \
158 env->cc_op = vfae(v1, v2, v3, in, rt, zs, MO_##BITS); \
164 static int vfee(void *v1, const void *v2, const void *v3, bool zs, uint8_t es) in vfee() argument
179 if (zs) { in vfee()
201 const bool zs = extract32(simd_data(desc), 1, 1); \
203 vfee(v1, v2, v3, zs, MO_##BITS); \
[all …]
H A Dtranslate_vx.c.inc2676 const bool zs = extract32(m6, 1, 1);
2685 tcg_env, 0, fns[es][zs]);
/openbmc/linux/arch/mips/math-emu/
H A Dsp_maddf.c43 zs ^= 1; in _sp_maddf()
82 if ((zc == IEEE754_CLASS_INF) && (zs != rs)) { in _sp_maddf()
103 return ieee754sp_inf(zs); in _sp_maddf()
106 if (zs == rs) in _sp_maddf()
125 return ieee754sp_inf(zs); in _sp_maddf()
131 return ieee754sp_inf(zs); in _sp_maddf()
137 return ieee754sp_inf(zs); in _sp_maddf()
205 if (zs == rs) { in _sp_maddf()
220 zs = rs; in _sp_maddf()
241 return ieee754sp_format(zs, ze, zm); in _sp_maddf()
H A Ddp_maddf.c75 zs ^= 1; in _dp_maddf()
113 if ((zc == IEEE754_CLASS_INF) && (zs != rs)) { in _dp_maddf()
134 return ieee754dp_inf(zs); in _dp_maddf()
137 if (zs == rs) in _dp_maddf()
156 return ieee754dp_inf(zs); in _dp_maddf()
162 return ieee754dp_inf(zs); in _dp_maddf()
168 return ieee754dp_inf(zs); in _dp_maddf()
262 if (zs == rs) { in _dp_maddf()
280 zs = rs; in _dp_maddf()
321 return ieee754dp_format(zs, ze, lzm); in _dp_maddf()
H A Dieee754int.h52 unsigned int zm; int ze; int zs; int zc
80 #define EXPLODEZSP EXPLODESP(z, zc, zs, ze, zm)
90 u64 zm; int ze; int zs; int zc
118 #define EXPLODEZDP EXPLODEDP(z, zc, zs, ze, zm)
144 #define FLUSHZDP FLUSHDP(z, zc, zs, ze, zm)
147 #define FLUSHZSP FLUSHSP(z, zc, zs, ze, zm)
/openbmc/linux/tools/build/feature/
H A Dtest-zlib.c6 z_stream zs; in main() local
8 inflateInit(&zs); in main()
/openbmc/u-boot/lib/bzip2/
H A Dbzlib.c311 #define ADD_CHAR_TO_BLOCK(zs,zchh0) \ argument
315 if (zchh != zs->state_in_ch && \
316 zs->state_in_len == 1) { \
317 UChar ch = (UChar)(zs->state_in_ch); \
318 BZ_UPDATE_CRC( zs->blockCRC, ch ); \
319 zs->inUse[zs->state_in_ch] = True; \
320 zs->block[zs->nblock] = (UChar)ch; \
321 zs->nblock++; \
322 zs->state_in_ch = zchh; \
326 if (zchh != zs->state_in_ch || \
[all …]
/openbmc/u-boot/lib/
H A Dtiny-printf.c18 char zs; /* non-zero if a digit has been written */ member
33 info->zs = 1; in out_dgt()
46 if (info->zs || dgt > 0) in div_out()
237 info->zs = 0; in _vprintf()
/openbmc/linux/drivers/tty/serial/
H A DMakefile42 obj-$(CONFIG_SERIAL_ZS) += zs.o
H A DKconfig367 the module will be called zs.
/openbmc/qemu/hw/nvme/
H A Dnvme.h314 return zone->d.zs >> 4; in nvme_get_zone_state()
319 zone->d.zs = state << 4; in nvme_set_zone_state()
H A Dctrl.c3978 NvmeZoneState zs = nvme_get_zone_state(zone); in nvme_bulk_proc_zone() local
3981 switch (zs) { in nvme_bulk_proc_zone()
4000 status = op_hndlr(ns, zone, zs, req); in nvme_bulk_proc_zone()
4351 NvmeZoneState zs = nvme_get_zone_state(zl); in nvme_zone_matches_filter() local
4357 return zs == NVME_ZONE_STATE_EMPTY; in nvme_zone_matches_filter()
4359 return zs == NVME_ZONE_STATE_IMPLICITLY_OPEN; in nvme_zone_matches_filter()
4361 return zs == NVME_ZONE_STATE_EXPLICITLY_OPEN; in nvme_zone_matches_filter()
4363 return zs == NVME_ZONE_STATE_CLOSED; in nvme_zone_matches_filter()
4365 return zs == NVME_ZONE_STATE_FULL; in nvme_zone_matches_filter()
4367 return zs == NVME_ZONE_STATE_READ_ONLY; in nvme_zone_matches_filter()
[all …]
/openbmc/linux/drivers/nvme/host/
H A Dzns.c164 zone.cond = entry->zs >> 4; in nvme_zone_parse_entry()
/openbmc/linux/drivers/nvme/target/
H A Dzns.c239 zdesc.zs = z->cond << 4; in nvmet_bdev_report_zone_cb()
/openbmc/linux/arch/arm/boot/dts/renesas/
H A Dr8a7779.dtsi580 clock-output-names = "plla", "z", "zs", "s",
H A Dr8a73a4.dtsi490 "zx", "zs", "hp";
/openbmc/linux/include/linux/
H A Dnvme.h682 __u8 zs; member
/openbmc/qemu/include/block/
H A Dnvme.h1642 uint8_t zs; member
/openbmc/openbmc/poky/meta/recipes-support/vte/vte/
H A D0004-fast_float-Add-single-header-library-for-from_char-i.patch2831 + limb_span zs = limb_span(z.data, z.len());
2842 + FASTFLOAT_TRY(zi.try_extend(zs));
/openbmc/linux/
H A DMAINTAINERS23958 F: drivers/tty/serial/zs.*
H A Dopengrok0.0.log[all...]
H A Dopengrok1.0.log[all...]
H A Dopengrok2.0.log[all...]