Lines Matching refs:source
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 */
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;
69 source = tab->source;
153 if(copy < n_src) /* copy from source data */
180 disc = source;
258 long _vdupdate_01(Vddisc_t* source, Vddisc_t* target, Vddisc_t* delta)
260 long _vdupdate_01(source,target,delta)
261 Vddisc_t* source; /* source data */
280 tab.source = source;
299 /* get true source size */
303 { if(!source || (!source->data && !source->readf) )
305 if(source->data && source->size < t)
326 if(n_src > 0 && !source->data && window < (long)MAXINT)
336 src = (uchar*)(source ? source->data : NIL(Void_t*));
377 r = (*source->readf)(tab.src,n,p,source);