Searched refs:out (Results 1 - 25 of 5513) sorted by last modified time

1234567891011>>

/external/yaffs2/yaffs2/
H A Dyaffs_fs.c298 goto out;
303 out:
883 goto out;
895 goto out;
939 out:
/external/zlib/src/as400/
H A Dzlib.inc402 D out * value procptr Output function
/external/zlib/src/contrib/blast/
H A Dblast.c52 unsigned next; /* index of next write location in out[] */
54 unsigned char out[MAXWIN]; /* output buffer and sliding window */ member in struct:state
77 if (s->left == 0) longjmp(s->env, 1); /* out of input */
161 if (s->left == 0) longjmp(s->env, 1); /* out of input */
167 return -9; /* ran out of codes */
343 to = s->out + s->next;
358 if (s->outfun(s->outhow, s->out, s->next)) return 1;
367 s->out[s->next++] = symbol;
369 if (s->outfun(s->outhow, s->out, s->next)) return 1;
404 if (err != 1 && s.next && s.outfun(s.outhow, s.out,
[all...]
/external/zlib/src/contrib/delphi/
H A DZLib.pas134 out OutBuf: Pointer; out OutBytes: Integer);
144 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
287 out OutBuf: Pointer; out OutBytes: Integer);
325 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
/external/zlib/src/contrib/infback9/
H A Dinfback9.c174 /* Assure that some output space is available, by writing out the window
183 if (out(out_desc, put, (unsigned)left)) { \
195 in() and out() are the call-back input and output functions. When
198 window, it calls out() to write out the data. The application must not
203 in() and out() are called with a descriptor parameter provided in the
208 in() should return zero on failure. out() should return non-zero on
209 failure. If either in() or out() fails, than inflateBack() returns a
211 was in() or out() that caused in the error. Otherwise, inflateBack()
217 int ZEXPORT inflateBack9(strm, in, in_desc, out, out_des
[all...]
H A Dinfback9.h15 * the third parameter of the "out" function actually means 65536UL.
25 out_func out, void FAR *out_desc));
/external/zlib/src/contrib/inflate86/
H A Dinffas86.c37 Decode literal, length, and distance codes and write out the resulting
54 LEN -- ran out of enough output space or enough available input
83 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */ member in struct:inffast_ar
85 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
112 ar.out = strm->next_out;
113 ar.beg = ar.out - (start - strm->avail_out);
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
141 " movq 32(%%rsp), %%rdi\n" /* rdi = out */
282 " subq 40(%%rsp), %%rax\n" /* nbytes = out - beg */
289 " subq %%r15, %%rsi\n" /* from = out
[all...]
H A Dinffast.S173 #define out 60 /* unsigned char* */ define
243 * out = strm->next_out;
245 * beg = out - (start - strm->avail_out);
246 * end = out + (strm->avail_out - 257);
266 addl %ebx, %ecx /* avail_out += out */
268 movl %ebx, out(%esp)
351 movl out(%esp), out_r
426 /* while (in < last && out < end)
429 jbe .L_break_loop /* if (out >= end) */
435 /* regs: %esi = in, %ebp = hold, %bl = bits, %edi = out
[all...]
/external/zlib/src/contrib/iostream/
H A Dtest.cpp7 // to this stream will go to standard out.
8 gzofstream os( 1, ios::out );
H A Dzfstream.cpp34 mode = ios::out;
44 if ( io_mode & (ios::out|ios::app )) {
76 mode = ios::out;
86 if ( io_mode & (ios::out|ios::app )) {
175 if ( !is_open() || !(mode & ios::out) )
H A Dzfstream.h85 gzofstream( const char *name, int io_mode = ios::out );
86 gzofstream( int fd, int io_mode = ios::out );
/external/zlib/src/contrib/iostream2/
H A Dzstream_test.cpp9 ozstream out("temp.gz");
10 out < "This works well" < h < g;
11 out.close();
19 out.open("temp.gz"); // try ascii output; zcat temp.gz to see the results
20 out << setw(50) << setfill('#') << setprecision(20) << x << endl << y << endl << z << endl;
21 out << z << endl << y << endl << x << endl;
22 out << 1.1234567890123456789 << endl;
/external/zlib/src/contrib/iostream3/
H A Dzfstream.cc58 if ((mode & std::ios_base::in) && (mode & std::ios_base::out))
86 if ((mode & std::ios_base::in) && (mode & std::ios_base::out))
136 bool testo = mode & std::ios_base::out;
234 if (!this->is_open() || !(io_mode & std::ios_base::out))
247 if (!this->is_open() || !(io_mode & std::ios_base::out))
456 if (!sb.open(name, mode | std::ios_base::out))
467 if (!sb.attach(fd, mode | std::ios_base::out))
H A Dzfstream.h156 // std::ios_base::openmode mode = std::ios_base::in|std::ios_base::out);
159 // std::ios_base::openmode mode = std::ios_base::in|std::ios_base::out);
332 * @param mode Open mode flags (forced to contain ios::out).
336 std::ios_base::openmode mode = std::ios_base::out);
341 * @param mode Open mode flags (forced to contain ios::out).
345 std::ios_base::openmode mode = std::ios_base::out);
364 * @param mode Open mode flags (forced to contain ios::out).
375 std::ios_base::openmode mode = std::ios_base::out);
380 * @param mode Open mode flags (forced to contain ios::out).
387 std::ios_base::openmode mode = std::ios_base::out);
[all...]
/external/zlib/src/contrib/masmx64/
H A Dgvmat64.asm424 ;;; pointer. (rsi will still be misaligned three times out of four.)
H A Dinffas8664.c44 Decode literal, length, and distance codes and write out the resulting
61 LEN -- ran out of enough output space or enough available input
88 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */ member in struct:inffast_ar
90 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
129 ar.out = strm->next_out;
130 ar.beg = ar.out - (start - strm->avail_out);
131 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
174 strm->next_out = ar.out;
178 strm->avail_out = (unsigned)(ar.out < ar.end ?
179 PAD_AVAIL_OUT + (ar.end - ar.out)
[all...]
H A Dinffasx64.asm48 mov rdi, [rsp+32] ; /* rdi = out */
192 sub rax, [rsp+40] ; /* nbytes = out - beg */
199 sub rsi, r15 ; /* from = out - dist */
221 cmp [rsp+40], rdi ; /* if out == beg, outside window */
289 sub rsi, r15 ; /* from = &out[ -dist ] */
318 sub rsi, r15 ; /* from = out - dist */
334 sub rsi, r15 ; /* from = out - dist */
367 ; /* put in, out, bits, and hold back into ar and pop esp */
369 mov [rsp+32], rdi ; /* out */
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm363 ;;; pointer. (esi will still be misaligned three times out of four.)
/external/zlib/src/contrib/puff/
H A Dpuff.c75 * - Break out test code to separate file
100 unsigned char *out; /* output buffer */ member in struct:state
101 unsigned long outlen; /* available space at out */
102 unsigned long outcnt; /* bytes written to out so far */
134 longjmp(s->env, 1); /* out of input */
181 /* copy len bytes from in to out */
184 if (s->out != NIL) {
188 s->out[s->outcnt++] = s->in[s->incnt++];
254 return -10; /* ran out of codes */
299 longjmp(s->env, 1); /* out o
[all...]
/external/zlib/src/
H A Dcrc32.c21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_tabl
[all...]
/external/zlib/src/examples/
H A Dgun.c114 /* structure for infback() to pass to output function out() -- it maintains the
128 On success out() returns 0. For a write failure, out() returns 1. If the
131 local int out(void *out_desc, unsigned char *buf, unsigned len) function
168 /* throw out what's left in the current bits byte buffer (this is a vestigial
235 strm->msg = (char *)"lzw bits out of range";
281 if (outcnt && out(&outd, outbuf, outcnt)) {
353 if (out(&outd, outbuf, outcnt)) {
377 The return value is a zlib error code: Z_MEM_ERROR if out of memory,
475 ret = inflateBack(strm, in, indp, out,
[all...]
H A Dgzappend.c273 if (gz.buf == NULL) bye("out of memory", "");
282 if (window == NULL) bye("out of memory", "");
287 if (ret != Z_OK) bye("out of memory", " or library mismatch");
312 if (ret == Z_MEM_ERROR) bye("out of memory", "");
369 if (ret != Z_OK) bye("out of memory", "");
392 unsigned char *in, *out; local
405 out = malloc(CHUNK);
406 if (in == NULL || out == NULL) bye("out of memory", "");
425 strm->next_out = out;
[all...]
H A Dgzjoin.c34 gzjoin takes one or more gzip files on the command line and writes out a
244 /* write a four-byte little-endian unsigned integer to out */
245 local void put4(unsigned long val, FILE *out) argument
247 putc(val & 0xff, out);
248 putc((val >> 8) & 0xff, out);
249 putc((val >> 16) & 0xff, out);
250 putc((val >> 24) & 0xff, out);
264 /* Write header for gzip file to out and initialize trailer. */
265 local void gzinit(unsigned long *crc, unsigned long *tot, FILE *out) argument
267 fwrite("\x1f\x8b\x08\0\0\0\0\0\0\xff", 1, 10, out);
279 gzcopy(char *name, int clr, unsigned long *crc, unsigned long *tot, FILE *out) argument
[all...]
H A Dzpipe.c42 unsigned char out[CHUNK]; local
66 strm.next_out = out;
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
98 unsigned char out[CHUNK]; local
124 strm.next_out = out;
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
168 fputs("out of memory\n", stderr);
H A Dzran.c68 off_t out; /* corresponding offset in uncompressed data */ member in struct:point
90 /* Add an entry to the access point list. If out of memory, deallocate the
93 off_t in, off_t out, unsigned left, unsigned char *window)
125 next->out = out;
141 returns the number of access points on success (>= 1), Z_MEM_ERROR for out
191 /* inflate until out of input, output, or at end of block --
265 while (--ret && here[1].out <= offset)
291 offset -= here->out;
379 fprintf(stderr, "zran: out o
92 addpoint(struct access *index, int bits, off_t in, off_t out, unsigned left, unsigned char *window) argument
[all...]

Completed in 245 milliseconds

1234567891011>>