HomeSort by relevance Sort by last modified time
    Searched refs:outcnt (Results 1 - 6 of 6) sorted by null

  /external/zlib/contrib/puff/
puff.c 95 unsigned long outcnt; /* bytes written to out so far */ member in struct:state
175 if (s->outcnt + len > s->outlen)
178 s->out[s->outcnt++] = s->in[s->incnt++];
181 s->outcnt += len;
451 if (s->outcnt == s->outlen) return 1;
452 s->out[s->outcnt] = symbol;
454 s->outcnt++;
467 if (dist > s->outcnt)
473 if (s->outcnt + len > s->outlen) return 1;
475 s->out[s->outcnt]
    [all...]
  /external/zlib/examples/
gun.c 216 unsigned outcnt; /* bytes in output buffer */ local
261 outcnt = 1;
280 if (outcnt && out(&outd, outbuf, outcnt)) {
349 while (stack > SIZE - outcnt) {
350 while (outcnt < SIZE)
351 outbuf[outcnt++] = match[--stack];
352 if (out(&outd, outbuf, outcnt)) {
356 outcnt = 0;
360 outbuf[outcnt++] = *--p
    [all...]
  /ndk/sources/host-tools/make-3.81/w32/subproc/
sub_proc.c 40 volatile DWORD outcnt; member in struct:sub_process_t
235 return (((sub_process *)proc)->outcnt);
614 pproc->outcnt = 0;
624 if (pproc->outcnt + nread > bufsize) {
628 pproc->outcnt = 0;
632 pproc->outp[pproc->outcnt++] = c;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
xfrm.h 302 __u32 outcnt; member in struct:xfrmu_spdinfo
  /external/iproute2/include/linux/
xfrm.h 321 __u32 outcnt; member in struct:xfrmu_spdinfo
  /external/iproute2/ip/
xfrm_policy.c 868 fprintf(fp," OUT %d", si->outcnt);

Completed in 76 milliseconds