Home
last modified time | relevance | path

Searched refs:zrc (Results 1 – 2 of 2) sorted by relevance

/third_party/elfutils/libelf/
Delf_compress.c111 int zrc = deflateInit (&z, Z_BEST_COMPRESSION); in __libelf_compress() local
112 if (zrc != Z_OK) in __libelf_compress()
161 zrc = deflate (&z, flush); in __libelf_compress()
162 if (zrc == Z_STREAM_ERROR) in __libelf_compress()
197 if (zrc != Z_STREAM_END) in __libelf_compress()
239 int zrc = inflateInit (&z); in __libelf_decompress() local
240 while (z.avail_in > 0 && likely (zrc == Z_OK)) in __libelf_decompress()
243 zrc = inflate (&z, Z_FINISH); in __libelf_decompress()
244 if (unlikely (zrc != Z_STREAM_END)) in __libelf_decompress()
246 zrc = Z_DATA_ERROR; in __libelf_decompress()
[all …]
/third_party/cups-filters/cupsfilters/
Dimage-colorspace.c1149 float zrs, zrc; /* Z rotation sine/cosine */ in huerotate() local
1185 zrc = cos(rot * M_PI / 180.0); in huerotate()
1187 zrotate(hmat, zrs, zrc); in huerotate()