Home
last modified time | relevance | path

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

/Linux-v4.19/tools/perf/util/
Dzlib.c26 z_stream zs = { in gzip_decompress_to_file() local
45 if (inflateInit2(&zs, 16 + MAX_WBITS) != Z_OK) in gzip_decompress_to_file()
48 zs.next_in = ptr; in gzip_decompress_to_file()
49 zs.avail_in = stbuf.st_size; in gzip_decompress_to_file()
52 zs.next_out = buf; in gzip_decompress_to_file()
53 zs.avail_out = CHUNK_SIZE; in gzip_decompress_to_file()
55 ret = inflate(&zs, Z_NO_FLUSH); in gzip_decompress_to_file()
67 len = CHUNK_SIZE - zs.avail_out; in gzip_decompress_to_file()
76 inflateEnd(&zs); in gzip_decompress_to_file()
/Linux-v4.19/arch/mips/math-emu/
Dsp_maddf.c80 ((!(flags & MADDF_NEGATE_PRODUCT) && (zs != (xs ^ ys))) || in _sp_maddf()
81 ((flags & MADDF_NEGATE_PRODUCT) && (zs == (xs ^ ys))))) { in _sp_maddf()
107 return ieee754sp_inf(zs); in _sp_maddf()
111 && (zs == (xs ^ ys))) || in _sp_maddf()
113 && (zs != (xs ^ ys)))) in _sp_maddf()
133 return ieee754sp_inf(zs); in _sp_maddf()
139 return ieee754sp_inf(zs); in _sp_maddf()
145 return ieee754sp_inf(zs); in _sp_maddf()
216 if (zs == rs) { in _sp_maddf()
231 zs = rs; in _sp_maddf()
[all …]
Ddp_maddf.c111 ((!(flags & MADDF_NEGATE_PRODUCT) && (zs != (xs ^ ys))) || in _dp_maddf()
112 ((flags & MADDF_NEGATE_PRODUCT) && (zs == (xs ^ ys))))) { in _dp_maddf()
138 return ieee754dp_inf(zs); in _dp_maddf()
142 && (zs == (xs ^ ys))) || in _dp_maddf()
144 && (zs != (xs ^ ys)))) in _dp_maddf()
164 return ieee754dp_inf(zs); in _dp_maddf()
170 return ieee754dp_inf(zs); in _dp_maddf()
176 return ieee754dp_inf(zs); in _dp_maddf()
273 if (zs == rs) { in _dp_maddf()
291 zs = rs; in _dp_maddf()
[all …]
Dieee754int.h63 unsigned int zm; int ze; int zs; int zc
91 #define EXPLODEZSP EXPLODESP(z, zc, zs, ze, zm)
101 u64 zm; int ze; int zs; int zc
129 #define EXPLODEZDP EXPLODEDP(z, zc, zs, ze, zm)
155 #define FLUSHZDP FLUSHDP(z, zc, zs, ze, zm)
158 #define FLUSHZSP FLUSHSP(z, zc, zs, ze, zm)
/Linux-v4.19/tools/build/feature/
Dtest-zlib.c6 z_stream zs; in main() local
8 inflateInit(&zs); in main()
/Linux-v4.19/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-v4.19/drivers/tty/serial/
DMakefile41 obj-$(CONFIG_SERIAL_ZS) += zs.o
DKconfig383 the module will be called zs.
/Linux-v4.19/arch/arm/boot/dts/
Dr8a7779.dtsi479 clock-output-names = "plla", "z", "zs", "s",
Dr8a73a4.dtsi524 "zx", "zs", "hp";
/Linux-v4.19/
DMAINTAINERS16235 F: drivers/tty/serial/zs.*