Searched refs:dest (Results 1 - 20 of 20) sorted by relevance

/ast/src/lib/libz/
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 Duncompr.c26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
27 Bytef *dest;
40 stream.next_out = dest;
H A Dzutil.c149 void zmemcpy(dest, source, len)
150 Bytef* dest;
156 *dest++ = *source++; /* ??? to be unrolled */
173 void zmemzero(dest, len)
174 Bytef* dest;
179 *dest++ = 0; /* ??? to be unrolled */
H A Dzutil.h228 # define zmemzero(dest, len) _fmemset(dest, 0, len)
232 # define zmemzero(dest, len) memset(dest, 0, len)
235 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
237 extern void zmemzero OF((Bytef* dest, uInt len));
H A Dzlib.h577 ZEXTERN int ZEXPORT deflateCopy OF((z_streamp dest,
773 ZEXTERN int ZEXPORT inflateCopy OF((z_streamp dest,
1009 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1024 ZEXTERN int ZEXPORT compress2 OF((Bytef *dest, uLongf *destLen,
1047 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
H A Ddeflate.c894 int ZEXPORT deflateCopy (dest, source)
895 z_streamp dest;
906 if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) {
912 zmemcpy(dest, source, sizeof(z_stream));
914 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
916 dest->state = (struct internal_state FAR *) ds;
918 ds->strm = dest;
920 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
921 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
922 ds->head = (Posf *) ZALLOC(dest, d
[all...]
H A Dinflate.c1323 int ZEXPORT inflateCopy(dest, source)
1324 z_streamp dest;
1333 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL ||
1353 zmemcpy(dest, source, sizeof(z_stream));
1366 dest->state = (struct internal_state FAR *)copy;
/ast/src/cmd/ksh93/tests/
H A Dtreemove.sh126 nameref src=$2 dest=$1
127 typeset -m dest=src
135 [[ $(print -v ar) == "$exp" ]] || err_exit 'typeset -m dest=src where dest and src are name references fails'
/ast/src/lib/libtksh/include/
H A DtclInt.h78 EXTERN void TclRegSub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
/ast/src/lib/libbz/
H A Dbzlib.h266 char* dest,
276 char* dest,
H A Dbzlib.c1191 ( char* dest,
1202 if (dest == NULL || destLen == NULL ||
1218 strm.next_out = dest;
1243 ( char* dest,
1253 if (dest == NULL || destLen == NULL ||
1266 strm.next_out = dest;
1190 bzBuffToBuffCompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int blockSize100k, int verbosity, int workFactor ) argument
1242 bzBuffToBuffDecompress( char* dest, unsigned int* destLen, char* source, unsigned int sourceLen, int small, int verbosity ) argument
/ast/src/cmd/ie/
H A Dedit.c1169 * convert external representation <src> to an array of genchars <dest>
1170 * <src> and <dest> can be the same
1171 * returns number of chars in dest
1174 int ed_internal(src,dest)
1176 genchar *dest;
1179 register genchar *dp = dest;
1182 if((unsigned char*)dest == src)
1208 return(dp-dest);
1212 * convert internal representation <src> into character array <dest>.
1213 * The <src> and <dest> ma
[all...]
/ast/src/cmd/mam/
H A Dshmam.awk407 function call_CP_cmds(lin, nlin, cmd, cmdtype, iindex, i,j,k,arr,tmp,opt, kloop, command, src, dest, starti, ddest, dsrc, bdest, bsrc, opt, u)
413 dest=$(j+2)
418 dest=$(j+5)
423 dest=$(kloop)
424 if (dest ~ /^\-.*/ ) {
425 opt=opt " " dest
428 debug(1,"%s -> %s\n", src, dest);
435 if (isfile(dest) > 0) {
436 basename(dest); bdest= base
437 dirname(dest); ddes
[all...]
/ast/src/lib/libtksh/src/
H A Dfilecmd.c898 char *p, *dest;
947 dest = Tcl_DStringValue(resultPtr) + length;
954 *dest++ = '/';
957 *dest++ = *p;
960 length = dest - Tcl_DStringValue(resultPtr);
896 char *p, *dest; local
/ast/src/lib/libtk/library/
H A Dconsole.tcl395 # dest - The output tag to be used: either "stderr" or "stdout".
398 proc tkConsoleOutput {dest string} {
399 .console insert output $string $dest
/ast/src/cmd/ksh93/edit/
H A Dedit.c1372 * convert external representation <src> to an array of genchars <dest>
1373 * <src> and <dest> can be the same
1374 * returns number of chars in dest
1377 int ed_internal(const char *src, genchar *dest) argument
1381 register wchar_t *dp = (wchar_t*)dest;
1382 if(dest == (genchar*)roundof(cp-(unsigned char*)0,sizeof(genchar)))
1392 return(dp-(wchar_t*)dest);
1396 * convert internal representation <src> into character array <dest>.
1397 * The <src> and <dest> may be the same.
1398 * returns number of chars in dest
1401 ed_external(const genchar *src, char *dest) argument
[all...]
/ast/src/cmd/INIT/
H A Dratz.c768 # define zmemzero(dest, len) _fmemset(dest, 0, len)
772 # define zmemzero(dest, len) memset(dest, 0, len)
775 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
777 extern void zmemzero OF((Bytef* dest, uInt len));
819 void zmemcpy(dest, source, len)
820 Bytef* dest;
826 *dest++ = *source++; /* ??? to be unrolled */
843 void zmemzero(dest, le
[all...]
H A Dpackage.sh3991 package_install() # dest sum
3993 dest=$1 sum=$2
3999 1:*|?:.)t=$dest/$dir ;;
4000 *) t=$dest/$arch/$dir ;;
5265 1:*|?:.)dest=$directory
5267 *) dest=$directory/arch/$a
5268 if test "" = "$exec" -a ! -d $dest
5269 then mkdir -p $dest || {
5270 echo "$command: $dest: destination directory must exist" >&2
5283 elif test ! -d $dest
[all...]
/ast/src/cmd/pzip/
H A Dpin.c378 unsigned int dest; local
393 dest = bufsize;
394 if (bzBuffToBuffCompress((char*)buf, &dest, (char*)b, size, state.level, 0, 30) != BZ_OK)
396 used = dest;
/ast/src/cmd/coshell/
H A Dcommand.c449 sfprintf(state.string, "%3d dest\n", n);

Completed in 69 milliseconds