Searched refs:dest (Results 1 - 25 of 2355) sorted by last modified time

1234567891011>>

/external/zlib/src/as400/
H A Dzlib.inc114 D dest 65535 options(*varsize) Destination buffer
120 D dest 65535 options(*varsize) Destination buffer
130 D dest 65535 options(*varsize) Destination buffer
325 D dest like(z_stream) Destination stream
372 D dest like(z_stream) Destination stream
/external/zlib/src/
H A Dcompress.c22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 Bytef *dest;
38 stream.next_out = dest;
62 int ZEXPORT compress (dest, destLen, source, sourceLen)
63 Bytef *dest;
68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
H A Ddeflate.c1014 int ZEXPORT deflateCopy (dest, source)
1015 z_streamp dest;
1026 if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
1032 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
1034 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1036 dest->state = (struct internal_state FAR *) ds;
1038 ds->strm = dest;
1040 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1041 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1042 ds->head = (Posf *) ZALLOC(dest, d
[all...]
H A Dgzread.c469 unsigned char *dest = state->out + (state->size << 1); local
471 *--dest = *--src;
472 state->x.next = dest;
H A Dinflate.c1438 int ZEXPORT inflateCopy(dest, source)
1439 z_streamp dest;
1448 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
1468 zmemcpy((voidpf)dest, (voidpf)source, sizeof(z_stream));
1481 dest->state = (struct internal_state FAR *)copy;
H A Duncompr.c24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
25 Bytef *dest;
38 stream.next_out = dest;
H A Dzlib.h631 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
876 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
1160 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1174 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1197 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
H A Dzutil.c152 void ZLIB_INTERNAL zmemcpy(dest, source, len)
153 Bytef* dest;
159 *dest++ = *source++; /* ??? to be unrolled */
176 void ZLIB_INTERNAL zmemzero(dest, len)
177 Bytef* dest;
182 *dest++ = 0; /* ??? to be unrolled */
H A Dzutil.h206 # define zmemzero(dest, len) _fmemset(dest, 0, len)
210 # define zmemzero(dest, len) memset(dest, 0, len)
213 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
215 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
/external/zlib/src/contrib/delphi/
H A DZLib.pas233 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
235 Move(source^, dest^, count);
/external/zlib/src/contrib/minizip/
H A Dzip.c310 local void zip64local_putValue_inmemory OF((void* dest, ZPOS64_T x, int nbByte));
311 local void zip64local_putValue_inmemory (void* dest, ZPOS64_T x, int nbByte) argument
313 unsigned char* buf=(unsigned char*)dest;
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas118 function deflateCopy(var dest, source: z_stream): Integer;
130 function inflateCopy(var dest, source: z_stream): Integer;
144 function compress(dest: PChar; var destLen: LongInt;
146 function compress2(dest: PChar; var destLen: LongInt;
150 function uncompress(dest: PChar; var destLen: LongInt;
271 procedure _memcpy(dest, source: Pointer; count: Integer); cdecl;
273 Move(source^, dest^, count);
/external/zlib/src/contrib/puff/
H A Dpuff.c36 * - Update puff() dest and source pointers on negative
750 * Inflate source to dest. On return, destlen and sourcelen are updated to the
758 * inflate data (a negative error), the dest and source pointers are updated to
762 * no output written. For this dest must be (unsigned char *)0. In this case,
793 int puff(unsigned char *dest, /* pointer to destination pointer */ argument
803 s.out = dest;
804 s.outlen = *destlen; /* ignored if dest is NIL */
H A Dpuff.h32 int puff(unsigned char *dest, /* pointer to destination pointer */
H A Dpufftest.c93 unsigned char *source = NULL, *dest; local
150 dest = malloc(destlen);
151 if (dest == NULL) {
156 puff(dest, &destlen, source + skip, &sourcelen);
158 fwrite(dest, 1, destlen, stdout);
159 free(dest);
/external/zlib/src/examples/
H A Dgzlog.c574 char *dest; local
583 dest = malloc(strlen(log->path) + 1);
584 if (dest == NULL)
586 strcpy(dest, log->path);
588 ret = rename(log->path, dest);
589 free(dest);
H A Dzpipe.c30 /* Compress from file source to file dest until EOF on source.
36 int def(FILE *source, FILE *dest, int level) argument
70 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
86 /* Decompress from file source to file dest until stream ends or EOF.
92 int inf(FILE *source, FILE *dest) argument
136 if (fwrite(out, 1, have, dest) != have || ferror(dest)) {
202 fputs("zpipe usage: zpipe [-d] < source > dest\n", stderr);
/external/zlib/
H A Dzlib.h631 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
876 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
1160 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1174 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1197 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
H A Dzutil.h206 # define zmemzero(dest, len) _fmemset(dest, 0, len)
210 # define zmemzero(dest, len) memset(dest, 0, len)
213 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
215 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
/external/zopfli/src/zopfli/
H A Dlz77.c39 const ZopfliLZ77Store* source, ZopfliLZ77Store* dest) {
41 ZopfliCleanLZ77Store(dest);
42 dest->litlens =
43 (unsigned short*)malloc(sizeof(*dest->litlens) * source->size);
44 dest->dists = (unsigned short*)malloc(sizeof(*dest->dists) * source->size);
46 if (!dest->litlens || !dest->dists) exit(-1); /* Allocation failed. */
48 dest->size = source->size;
50 dest
38 ZopfliCopyLZ77Store( const ZopfliLZ77Store* source, ZopfliLZ77Store* dest) argument
[all...]
H A Dlz77.h53 void ZopfliCopyLZ77Store(const ZopfliLZ77Store* source, ZopfliLZ77Store* dest);
H A Dsqueeze.c50 static void CopyStats(SymbolStats* source, SymbolStats* dest) { argument
51 memcpy(dest->litlens, source->litlens, 288 * sizeof(dest->litlens[0]));
52 memcpy(dest->dists, source->dists, 32 * sizeof(dest->dists[0]));
54 memcpy(dest->ll_symbols, source->ll_symbols,
55 288 * sizeof(dest->ll_symbols[0]));
56 memcpy(dest->d_symbols, source->d_symbols, 32 * sizeof(dest->d_symbols[0]));
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp2539 unsigned lodepng_color_mode_copy(LodePNGColorMode* dest, const LodePNGColorMode* source) argument
2542 lodepng_color_mode_cleanup(dest);
2543 *dest = *source;
2546 dest->palette = (unsigned char*)lodepng_malloc(1024);
2547 if(!dest->palette && source->palettesize) return 83; /*alloc fail*/
2548 for(i = 0; i < source->palettesize * 4; i++) dest->palette[i] = source->palette[i];
2669 static unsigned LodePNGUnknownChunks_copy(LodePNGInfo* dest, const LodePNGInfo* src) argument
2673 LodePNGUnknownChunks_cleanup(dest);
2678 dest->unknown_chunks_size[i] = src->unknown_chunks_size[i];
2679 dest
2711 LodePNGText_copy(LodePNGInfo* dest, const LodePNGInfo* source) argument
2780 LodePNGIText_copy(LodePNGInfo* dest, const LodePNGInfo* source) argument
2870 lodepng_info_copy(LodePNGInfo* dest, const LodePNGInfo* source) argument
4863 lodepng_state_copy(LodePNGState* dest, const LodePNGState* source) argument
[all...]
H A Dlodepng.h355 unsigned lodepng_color_mode_copy(LodePNGColorMode* dest, const LodePNGColorMode* source);
482 unsigned lodepng_info_copy(LodePNGInfo* dest, const LodePNGInfo* source);
651 void lodepng_state_copy(LodePNGState* dest, const LodePNGState* source);
/external/webrtc/src/common_audio/signal_processing/
H A Dcopy_set_operations.c53 void WebRtcSpl_MemCpyReversedOrder(WebRtc_Word16* dest, WebRtc_Word16* source, int length) argument
56 WebRtc_Word16* destPtr = dest;

Completed in 4075 milliseconds

1234567891011>>