Home
last modified time | relevance | path

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

/Linux-v5.4/tools/perf/util/
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()
/Linux-v5.4/arch/mips/math-emu/
Dsp_maddf.c77 ((!(flags & MADDF_NEGATE_PRODUCT) && (zs != (xs ^ ys))) || in _sp_maddf()
78 ((flags & MADDF_NEGATE_PRODUCT) && (zs == (xs ^ ys))))) { in _sp_maddf()
104 return ieee754sp_inf(zs); in _sp_maddf()
108 && (zs == (xs ^ ys))) || in _sp_maddf()
110 && (zs != (xs ^ ys)))) in _sp_maddf()
130 return ieee754sp_inf(zs); in _sp_maddf()
136 return ieee754sp_inf(zs); in _sp_maddf()
142 return ieee754sp_inf(zs); in _sp_maddf()
213 if (zs == rs) { in _sp_maddf()
228 zs = rs; in _sp_maddf()
[all …]
Ddp_maddf.c108 ((!(flags & MADDF_NEGATE_PRODUCT) && (zs != (xs ^ ys))) || in _dp_maddf()
109 ((flags & MADDF_NEGATE_PRODUCT) && (zs == (xs ^ ys))))) { in _dp_maddf()
135 return ieee754dp_inf(zs); in _dp_maddf()
139 && (zs == (xs ^ ys))) || in _dp_maddf()
141 && (zs != (xs ^ ys)))) in _dp_maddf()
161 return ieee754dp_inf(zs); in _dp_maddf()
167 return ieee754dp_inf(zs); in _dp_maddf()
173 return ieee754dp_inf(zs); in _dp_maddf()
270 if (zs == rs) { in _dp_maddf()
288 zs = rs; in _dp_maddf()
[all …]
Dieee754int.h51 unsigned int zm; int ze; int zs; int zc
79 #define EXPLODEZSP EXPLODESP(z, zc, zs, ze, zm)
89 u64 zm; int ze; int zs; int zc
117 #define EXPLODEZDP EXPLODEDP(z, zc, zs, ze, zm)
143 #define FLUSHZDP FLUSHDP(z, zc, zs, ze, zm)
146 #define FLUSHZSP FLUSHSP(z, zc, zs, ze, zm)
/Linux-v5.4/tools/build/feature/
Dtest-zlib.c6 z_stream zs; in main() local
8 inflateInit(&zs); in main()
/Linux-v5.4/Documentation/devicetree/bindings/clock/
Drenesas,r8a73a4-cpg-clocks.txt18 "m1", "m2", "zx", "zs", and "hp".
32 "zx", "zs", "hp";
Drenesas,r8a7779-cpg-clocks.txt16 "z", "zs", "s", "s1", "p", "b", "out".
35 clock-output-names = "plla", "z", "zs", "s", "s1", "p",
/Linux-v5.4/drivers/tty/serial/
DMakefile42 obj-$(CONFIG_SERIAL_ZS) += zs.o
DKconfig401 the module will be called zs.
/Linux-v5.4/arch/arm/boot/dts/
Dr8a7779.dtsi505 clock-output-names = "plla", "z", "zs", "s",
Dr8a73a4.dtsi524 "zx", "zs", "hp";
/Linux-v5.4/
DMAINTAINERS18029 F: drivers/tty/serial/zs.*