Home
last modified time | relevance | path

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

/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 …]
/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]);
/qemu/hw/nvme/
H A Dnvme.h316 return zone->d.zs >> 4; in nvme_get_zone_state()
321 zone->d.zs = state << 4; in nvme_set_zone_state()
H A Dctrl.c3976 NvmeZoneState zs = nvme_get_zone_state(zone); in nvme_bulk_proc_zone() local
3979 switch (zs) { in nvme_bulk_proc_zone()
3998 status = op_hndlr(ns, zone, zs, req); in nvme_bulk_proc_zone()
4349 NvmeZoneState zs = nvme_get_zone_state(zl); in nvme_zone_matches_filter() local
4355 return zs == NVME_ZONE_STATE_EMPTY; in nvme_zone_matches_filter()
4357 return zs == NVME_ZONE_STATE_IMPLICITLY_OPEN; in nvme_zone_matches_filter()
4359 return zs == NVME_ZONE_STATE_EXPLICITLY_OPEN; in nvme_zone_matches_filter()
4361 return zs == NVME_ZONE_STATE_CLOSED; in nvme_zone_matches_filter()
4363 return zs == NVME_ZONE_STATE_FULL; in nvme_zone_matches_filter()
4365 return zs == NVME_ZONE_STATE_READ_ONLY; in nvme_zone_matches_filter()
[all …]
/qemu/include/block/
H A Dnvme.h1688 uint8_t zs; member