HomeSort by relevance Sort by last modified time
    Searched defs:have (Results 1 - 25 of 58) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
ZLib.c 32 INTN have; local
88 have = CHUNK - stream.avail_out;
89 CopyMem (UncompressData + uncomp_offset, out, have);
90 uncomp_offset += have;
inflate.c 102 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
481 have = strm->avail_in; \
492 strm->avail_in = have; \
508 if (have == 0) goto inf_leave; \
509 have--; \
583 would all have to actually be part of the saved state in case NEEDBITS()
629 unsigned have, left; /* available input and output */ local
652 in = have;
759 if (copy > have) copy = have;
    [all...]
  /external/zlib/src/examples/
zpipe.c 39 unsigned have; local
69 have = CHUNK - strm.avail_out;
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
95 unsigned have; local
135 have = CHUNK - strm.avail_out;
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
fitblk.c 131 unsigned have; /* bytes written by deflate() call */ local
165 have = size + EXCESS - def.avail_out;
166 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
175 size - have, size);
218 have = size - def.avail_out;
219 if (fwrite(blk, 1, have, stdout) != have || ferror(stdout))
231 size - have, size, def.total_in);
zran.c 49 not be constrained to have access points at block boundaries, but requires
76 int have; /* number of list entries filled in */ member in struct:access
107 index->have = 0;
111 else if (index->have == index->size) {
121 /* fill in entry and increment how many we have */
122 next = index->list + index->have;
130 index->have++;
229 index->list = realloc(index->list, sizeof(struct point) * index->have);
230 index->size = index->have;
264 ret = index->have;
    [all...]
gun.c 155 #define NEXT() (have ? 0 : (have = in(indp, &next)), \
156 last = have ? (have--, (int)(*next++)) : -1)
160 have offset the index, but it's faster to waste the memory */
175 if (chunk > have) { \
176 chunk -= have; \
177 have = 0; \
181 if (chunk > have) { \
182 chunk = have = 0;
386 unsigned have, flags, len; local
    [all...]
gzappend.c 262 unsigned have; local
296 have = full = 0;
306 strm->avail_out = DSIZE - have;
307 strm->next_out = window + have;
317 crc = crc32(crc, window + have, DSIZE - have - strm->avail_out);
319 have = DSIZE - strm->avail_out;
321 have = 0;
363 rotate(window, DSIZE, have);
364 have = DSIZE
    [all...]
  /external/zlib/src/contrib/infback9/
inflate9.h 42 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
infback9.c 127 if (have == 0) { \
128 have = in(in_desc, &next); \
129 if (have == 0) { \
142 have--; \
227 unsigned have; /* available input */ local
264 have = next != Z_NULL ? strm->avail_in : 0;
331 if (copy > have) copy = have;
334 have -= copy;
361 state->have = 0
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzwrite.c 75 unsigned have; local
100 have = (unsigned)(strm->next_out - state->x.next);
101 if (have && ((got = write(state->fd, state->x.next, have)) < 0 ||
102 (unsigned)got != have)) {
114 have = strm->avail_out;
121 have -= strm->avail_out;
122 } while (have);
210 unsigned have, copy; local
214 have = (unsigned)((strm->next_in + strm->avail_in) - state->in);
249 unsigned have; local
    [all...]
infback.c 133 have = strm->avail_in; \
144 strm->avail_in = have; \
160 if (have == 0) { \
161 have = in(in_desc, &next); \
162 if (have == 0) { \
175 have--; \
260 unsigned have, left; /* available input and output */ local
283 have = next != Z_NULL ? strm->avail_in : 0;
345 if (copy > have) copy = have;
    [all...]
inflate.c 101 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
464 have = strm->avail_in; \
475 strm->avail_in = have; \
491 if (have == 0) goto inf_leave; \
492 have--; \
566 would all have to actually be part of the saved state in case NEEDBITS()
612 unsigned have, left; /* available input and output */ local
635 in = have;
736 if (copy > have) copy = have;
    [all...]
  /external/openssh/openbsd-compat/
md5.c 71 size_t have, need; local
73 /* Check how many bytes we already have and how many more we need. */
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1));
75 need = MD5_BLOCK_LENGTH - have;
81 if (have != 0) {
82 memcpy(ctx->buffer + have, input, need);
86 have = 0;
99 memcpy(ctx->buffer + have, input, len);
rmd160.c 112 size_t have, off, need; local
114 have = (ctx->count / 8) % RMD160_BLOCK_LENGTH;
115 need = RMD160_BLOCK_LENGTH - have;
120 if (have) {
121 memcpy(ctx->buffer + have, input, need);
124 have = 0;
133 memcpy(ctx->buffer + have, input+off, len-off);
  /external/python/cpython2/Modules/zlib/
gzwrite.c 78 unsigned have, put, max = ((unsigned)-1 >> 2) + 1; local
125 have = strm->avail_out;
132 have -= strm->avail_out;
133 } while (have);
204 unsigned have, copy; local
208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
210 copy = state->size - have;
213 memcpy(state->in + have, buf, copy);
308 unsigned have; local
335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in)
    [all...]
infback.c 133 have = strm->avail_in; \
144 strm->avail_in = have; \
160 if (have == 0) { \
161 have = in(in_desc, &next); \
162 if (have == 0) { \
175 have--; \
260 unsigned have, left; /* available input and output */ local
283 have = next != Z_NULL ? strm->avail_in : 0;
345 if (copy > have) copy = have;
    [all...]
inflate.c 102 local unsigned syncsearch OF((unsigned FAR *have, const unsigned char FAR *buf,
481 have = strm->avail_in; \
492 strm->avail_in = have; \
508 if (have == 0) goto inf_leave; \
509 have--; \
583 would all have to actually be part of the saved state in case NEEDBITS()
629 unsigned have, left; /* available input and output */ local
652 in = have;
759 if (copy > have) copy = have;
    [all...]
  /external/zlib/src/
gzwrite.c 78 unsigned have, put, max = ((unsigned)-1 >> 2) + 1; local
125 have = strm->avail_out;
132 have -= strm->avail_out;
133 } while (have);
204 unsigned have, copy; local
208 have = (unsigned)((state->strm.next_in + state->strm.avail_in) -
210 copy = state->size - have;
213 memcpy(state->in + have, buf, copy);
308 unsigned have; local
335 have = (unsigned)((strm->next_in + strm->avail_in) - state->in)
    [all...]
infback.c 133 have = strm->avail_in; \
144 strm->avail_in = have; \
160 if (have == 0) { \
161 have = in(in_desc, &next); \
162 if (have == 0) { \
175 have--; \
260 unsigned have, left; /* available input and output */ local
283 have = next != Z_NULL ? strm->avail_in : 0;
345 if (copy > have) copy = have;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
infback.c 124 have = strm->avail_in; \
135 strm->avail_in = have; \
151 if (have == 0) { \
152 have = in(in_desc, &next); \
153 if (have == 0) { \
166 have--; \
251 unsigned have, left; /* available input and output */ local
274 have = next != Z_NULL ? strm->avail_in : 0;
336 if (copy > have) copy = have;
    [all...]
inflate.c 100 local unsigned syncsearch OF((unsigned FAR *have, unsigned char FAR *buf,
408 have = strm->avail_in; \
419 strm->avail_in = have; \
435 if (have == 0) goto inf_leave; \
436 have--; \
515 would all have to actually be part of the saved state in case NEEDBITS()
561 unsigned have, left; /* available input and output */ local
584 in = have;
683 if (copy > have) copy = have;
    [all...]
inflate.h 110 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
  /external/u-boot/lib/zlib/
inflate.c 183 have = strm->avail_in; \
194 strm->avail_in = have; \
210 if (have == 0) goto inf_leave; \
211 have--; \
290 would all have to actually be part of the saved state in case NEEDBITS()
333 unsigned have, left; /* available input and output */ local
356 in = have;
455 if (copy > have) copy = have;
466 have -= copy
    [all...]
inflate.h 110 unsigned have; /* number of code lengths in lens[] */ member in struct:inflate_state
  /external/wpa_supplicant_8/src/crypto/
md4-internal.c 113 size_t have, need; local
115 /* Check how many bytes we already have and how many more we need. */
116 have = (size_t)((ctx->count >> 3) & (MD4_BLOCK_LENGTH - 1));
117 need = MD4_BLOCK_LENGTH - have;
123 if (have != 0) {
124 os_memcpy(ctx->buffer + have, input, need);
128 have = 0;
141 os_memcpy(ctx->buffer + have, input, len);

Completed in 572 milliseconds

1 2 3