Lines Matching defs:res
46 int fd, res;
60 res = ioctl(fd, CIOCGSESSION, &cs);
61 if (res < 0)
71 res = ioctl(fd, CIOCCRYPT, &co1);
72 if (res < 0)
83 res = inflateInit2(&z, -15);
84 if (res != Z_OK)
85 errx(1, "inflateInit: %d", res);
87 res = inflate(&z, Z_SYNC_FLUSH);
88 } while (res == Z_OK);
89 if (res != Z_STREAM_END)
90 errx(1, "inflate: %d", res);