Searched refs:zrc (Results 1 – 2 of 2) sorted by relevance
111 int zrc = deflateInit (&z, Z_BEST_COMPRESSION); in __libelf_compress() local112 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() local240 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 …]
1149 float zrs, zrc; /* Z rotation sine/cosine */ in huerotate() local1185 zrc = cos(rot * M_PI / 180.0); in huerotate()1187 zrotate(hmat, zrs, zrc); in huerotate()