Home | History | Annotate | Download | only in dist

Lines Matching refs:GET

36    1.1    28 Jan 2007  Avoid void * arithmetic (some compilers don't get that)
272 can't get way ahead of the write thread and build up a large backlog of
290 that reading does not get way ahead of compression and eat up memory with
1161 /* get a space from a pool -- the use count is initially set to one, so there
1410 /* get the next compression job from the head of the list, compress and compute
1440 /* get a job (like I tell my son) */
1528 /* add enough empty blocks to get to a byte boundary */
1657 /* get next write job in order */
1688 /* get the next buffer in sequence */
1778 /* get more input if we don't already have some */
1998 /* get data to compress, see if there is any more input */
2270 #define GET() (g.in_eof || (g.in_left == 0 && load() == 0) ? EOF : \
2272 #define GET2() (tmp2 = GET(), tmp2 + ((unsigned)(GET()) << 8))
2357 if (GET() & 1) {
2393 g.magic1 = GET();
2397 magic += GET();
2420 method = GET(); /* return low byte of method or 256 */
2421 if (GET() != 0 || flags & 1)
2463 /* it's gzip -- get method and flags */
2464 method = GET();
2465 flags = GET();
2471 /* get time stamp */
2515 while (GET() != 0)
2521 while (GET() != 0)
2720 /* skip to end to get trailer (8 bytes), compute compressed length */
2731 readn(g.ind, tail, 8); /* get trailer */
2995 check = (unsigned long)(GET()) << 24;
2996 check += (unsigned long)(GET()) << 16;
2997 check += (unsigned)(GET()) << 8;
2998 check += GET();
3033 else if ((was == 0 && ret != -1) || (was == 1 && GET() != EOF))
3071 int got; /* byte just read by GET() */
3090 flags = GET();
3107 /* set up: get first 9-bit code, which is the first decompressed byte, but
3109 got = GET();
3113 got = GET();
3133 /* get a code of length bits */
3137 got = GET();
3149 got = GET();
3166 continue; /* get next code */
3250 /* get all of from's Unix meta data, return if not a regular file */
3286 struct stat st; /* to get file type and mod time */
3741 get rid of old buffers and threads to force the creation of new ones with
3771 static int get = 0; /* if not zero, look for option parameter */
3774 /* if no argument or dash option, check status of get */
3775 if (get && (arg == NULL || *arg == '-')) {
3776 bad[1] = "bpSIM"[get - 1];
3806 if (get) {
3807 if (get == 3)
3828 case 'I': get = 4; break;
3839 case 'M': get = 5; break;
3843 case 'S': get = 3; break;
3850 case 'b': get = 1; break;
3859 case 'p': get = 2; break;
3874 if (get) {
3877 if (get == 1) {
3889 else if (get == 2) {
3902 else if (get == 3)
3904 else if (get == 4)
3906 else if (get == 5)
3908 get = 0;