/ast/src/lib/libz/ |
H A D | compress.c | 12 Compresses the source buffer into the destination buffer. The level 14 length of the source buffer. Upon entry, destLen is the total size of the 22 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) 25 const Bytef *source; 32 stream.next_in = (Bytef*)source; 35 /* Check for source > 64K on 16-bit machine: */ 62 int ZEXPORT compress (dest, destLen, source, sourceLen) 65 const Bytef *source; 68 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
|
H A D | uncompr.c | 12 Decompresses the source buffer into the destination buffer. sourceLen is 13 the byte length of the source buffer. Upon entry, destLen is the total 26 int ZEXPORT uncompress (dest, destLen, source, sourceLen) 29 const Bytef *source; 35 stream.next_in = (Bytef*)source; 37 /* Check for source > 64K on 16-bit machine: */
|
H A D | zutil.c | 149 void zmemcpy(dest, source, len) 151 const Bytef* source; 156 *dest++ = *source++; /* ??? to be unrolled */
|
H A D | zlib.h | 18 2. Altered source versions must be plainly marked as such, and must not be 20 3. This notice may not be removed or altered from any source distribution. 578 z_streamp source)); 580 Sets the destination stream as a complete copy of the source stream. 590 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent 591 (such as zalloc being NULL). msg is left unchanged in both source and 602 deflateReset returns Z_OK if success, or Z_STREAM_ERROR if the source 622 deflateParams returns Z_OK if success, Z_STREAM_ERROR if the source 637 specific input data. Read the deflate.c source code for the meaning of the 665 deflatePrime returns Z_OK if success, or Z_STREAM_ERROR if the source [all...] |
H A D | inflate.c | 53 * source file infback.c to provide a call-back interface to inflate for 1323 int ZEXPORT inflateCopy(dest, source) 1325 z_streamp source; 1333 if (dest == Z_NULL || source == Z_NULL || source->state == Z_NULL || 1334 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0) 1336 state = (struct inflate_state FAR *)source->state; 1340 ZALLOC(source, 1, sizeof(struct inflate_state)); 1345 ZALLOC(source, [all...] |
/ast/src/lib/libvdelta/ |
H A D | vdupdate.c | 23 /* Apply the transformation source->target to reconstruct target 27 ** machine must be large enough to hold source and target sizes. 38 Vddisc_t* source; /* source data discipline */ member in struct:_utable_s 40 uchar* src; /* source string */ 44 long s_org; /* start of window in source */ 47 char s_alloc; /* 1 if source was allocated */ 64 reg Vddisc_t *target, *source; local 71 source = tab->source; 260 vdupdate(Vddisc_t* source, Vddisc_t* target, Vddisc_t* delta) argument [all...] |
H A D | vddelta.c | 22 /* Compute a transformation that takes source data to target data 41 uchar* src; /* source string */ 368 long vddelta(Vddisc_t* source, Vddisc_t* target, Vddisc_t* delta) argument 370 long vddelta(source, target, delta) 371 Vddisc_t* source; /* source data */ 385 if((n_src = source ? source->size : 0) < 0) 387 if(n_src > 0 && !source->data && !source [all...] |
/ast/src/lib/libvdelta/vd01/ |
H A D | vdupdate01.c | 23 /* Apply the transformation source->target to reconstruct target 27 ** machine must be large enough to hold source and target sizes. 36 Vddisc_t* source; /* source data discipline */ member in struct:_table_s 38 uchar* src; /* source string */ 42 long s_org; /* start of window in source */ 45 char s_alloc; /* 1 if source was allocated */ 62 reg Vddisc_t *target, *source; local 69 source = tab->source; 258 _vdupdate_01(Vddisc_t* source, Vddisc_t* target, Vddisc_t* delta) argument [all...] |
H A D | vddelta01.c | 22 /* Compute a transformation that takes source data to target data 45 uchar* src; /* source string */ 312 long _vddelta_01(Vddisc_t* source, Vddisc_t* target, Vddisc_t* delta, long window) argument 314 long _vddelta_01(source, target, delta, window) 315 Vddisc_t* source; /* source data */ 330 if((n_src = source ? source->size : 0) < 0) 332 if(n_src > 0 && !source->data && !source [all...] |
/ast/src/cmd/mailx/ |
H A D | misc.c | 6 * Redistribution and use in source and binary forms, with or * 10 * 1. Redistributions of source code must retain the above * 38 * Redistribution and use in source and binary forms, with or without * 41 * 1. Redistributions of source code must retain the above copyright * 180 * The following code deals with input stacking to do source 191 source(char** arglist) function 197 if (state.source.sp >= NOFILE - 1) { 202 state.source.stack[state.source.sp].input = state.input; 203 state.source [all...] |
/ast/src/lib/libtk/unix/ |
H A D | tkUnixCursor.c | 158 Pixmap source = None; 235 * should be either two elements in the list (source, color) or 236 * four (source mask fg bg). 245 &source, &xHot, &yHot) != BitmapSuccess) { 262 cursor = XCreatePixmapCursor(display, source, source, 275 "source and mask bitmaps have different sizes"; 290 cursor = XCreatePixmapCursor(display, source, mask, 305 if (source != None) { 306 Tk_FreePixmap(display, source); 157 Pixmap source = None; local [all...] |
/ast/src/lib/libtk/generic/ |
H A D | tkBitmap.c | 79 char *source; /* Bits for bitmap. */ member in struct:__anon388 100 char *source; /* Bitmap bits. */ member in struct:__anon389 214 RootWindowOfScreen(nameKey.screen), predefPtr->source, 267 Tk_DefineBitmap(interp, name, source, width, height) 271 char *source; /* Address of bits for bitmap. */ 290 predefPtr->source = source; 468 Tk_GetBitmapFromData(interp, tkwin, source, width, height) 471 char *source; /* Bitmap data for bitmap shape. */ 486 nameKey.source [all...] |
H A D | tkCursor.c | 45 char *source; /* Cursor bits. */ member in struct:__anon394 179 Tk_GetCursorFromData(interp, tkwin, source, mask, width, height, 183 char *source; /* Bitmap data for cursor shape. */ 201 dataKey.source = source; 233 cursorPtr = TkCreateCursorFromData(tkwin, source, mask, width, height,
|
H A D | tkFont.c | 469 * The return value is the number of characters from source 482 TkMeasureChars(fontStructPtr, source, maxChars, startX, maxX, 485 char *source; /* Characters to be displayed. Need not 488 * source. */ 556 term = source; 557 for (p = source, c = *p & 0xff; maxChars > 0; p++, maxChars--) { 608 if ((flags & TK_AT_LEAST_ONE) && (term == source) && (maxChars > 0) 612 if (term == source) { 621 return term-source;
|
/ast/src/lib/libast/misc/ |
H A D | fs3d.c | 113 fs3d_mount(const char* source, char* target, int flags, void* data) argument 115 return mount(source, target, flags, data);
|
/ast/lib/package/ |
H A D | package.mk | 2 * source and binary package support 15 * type source build source archive, generates 42 * target :INSTALL: [ source ] 62 * do not prepend source file copyright notice 70 * incremental=[source:1 binary:0] 143 Any archives, distributions or packages made from source or 254 source = $(PACKAGEDIR)/$(name).$(version)$(release:?.$(release)??).$(suffix) macro 257 old.new.source = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(suffix) 261 source 495 source := $(B:D:B:S=.$(release).$(suffix)) macro 511 source := $(B) macro 591 source = $(PACKAGEDIR)/$(name)-$(version)$(release:?.$(release)??).$(suffix) macro [all...] |
/ast/src/cmd/INIT/ |
H A D | package.mk | 2 * source and binary package support 15 * type source build source archive, generates 42 * target :INSTALL: [ source ] 62 * do not prepend source file copyright notice 70 * incremental=[source:1 binary:0] 143 Any archives, distributions or packages made from source or 254 source = $(PACKAGEDIR)/$(name).$(version)$(release:?.$(release)??).$(suffix) macro 257 old.new.source = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(suffix) 261 source 495 source := $(B:D:B:S=.$(release).$(suffix)) macro 511 source := $(B) macro 591 source = $(PACKAGEDIR)/$(name)-$(version)$(release:?.$(release)??).$(suffix) macro [all...] |
/ast/src/lib/libvcodex/ |
H A D | vcsfio.h | 56 char* source; /* source file to delta against */ member in struct:_vcsfdata_s
|
/ast/src/lib/libtksh/include/ |
H A D | tclInt.h | 78 EXTERN void TclRegSub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
|
/ast/src/cmd/nmake/ |
H A D | object.c | 244 unsigned char source; /* source bind index */ member in struct:OLD_rule_s 881 markcompile(state.source[n].path); 903 x = state.source[n].path; 1231 * if source!=0 then source prereqs are checked 1235 loadable(register Sfio_t* sp, register Rule_t* r, int source) argument 1256 if (!source) 1260 * check previous source prerequisites 1423 load(register Sfio_t* sp, const char* objfile, int source, in argument [all...] |
H A D | bind.c | 1003 if ((x = internal.source) != a) 1006 x = source(x); 1013 if ((flags & BIND_MAKEFILE) && (x = catrule(internal.source->name, external.source, NiL, 0)) && x != a) 1016 x = source(x); 1023 edit(buf, name, DELETE, internal.source->name, KEEP); 1024 if ((z = getrule(sfstruse(buf))) && z != x && z != internal.source && z != internal.source_p) 1027 z = source(z); 1038 a = source(a); 1057 * <source> 1760 source(register Rule_t* r) function [all...] |
/ast/src/lib/libbz/ |
H A D | bzlib.h | 13 Redistribution and use in source and binary forms, with or without 17 1. Redistributions of source code must retain the above copyright 25 3. Altered source versions must be plainly marked as such, and must 268 char* source, 278 char* source,
|
/ast/src/cmd/vczip/ |
H A D | vczip.c | 92 "\n[ source ] < input > output\n" 240 apply(int action, const char* vt, Vcsfdata_t* vcodexdisc, const char* ct, Codexdisc_t* codexdisc, const char* input, const char* source, const char* output, void* buf, size_t bufsize, Sfoff_t donez, Sfoff_t lastz) argument 292 error(-1, "AHA action=%s input=%s source=%s output=%s vt=%s ct=%s", action == VC_ENCODE ? "encode" : "decode", input, source, output, vt, ct); 308 vcodexdisc->source = (char*)source; 534 " the same source file must be given on both encoding and decoding.\n", 702 sfdt.source = argc == 2 ? argv[1] : NIL(char*);
|
/ast/src/cmd/mam/ |
H A D | mamnew.c | 70 #define A_directory (A_LAST<<3) /* source directory */ 94 struct rule* source; /* .SOURCE */ member in struct:__anon157::__anon158 127 * initialize source dir 150 sfsprintf(buf, sizeof(buf), "%s%s", state.atom.source->name, suf); 619 state.atom.source = mamrule(state.mam->main, ".SOURCE");
|
/ast/src/cmd/ksh93/bltins/ |
H A D | regress.c | 101 "[104:source?The intercepts are:]" 121 "source", 317 TRACE(source, argv[0], ("%s", sh_isregress(n) ? "on" : "off"));
|