Lines Matching defs:res
44 int fd, res;
55 res = ioctl(fd, CIOCGSESSION, &cs);
56 if (res < 0)
67 res = ioctl(fd, CIOCCRYPT, &co1);
68 if (res < 0)
79 res = inflateInit2(&z, -15);
80 if (res != Z_OK)
81 errx(1, "inflateInit: %d", res);
83 res = inflate(&z, Z_SYNC_FLUSH);
84 } while (res == Z_OK);
85 if (res != Z_STREAM_END)
86 errx(1, "inflate: %d", res);