Searched defs:copy (Results 1 - 25 of 35) sorted by relevance

12

/ast/src/cmd/vczip/tests/
H A Dtio.c9 * A copy of the License is available at *
33 Vcint_t v, g, list[N_LIST], copy[N_LIST]; local
91 memcpy(copy,list,N_LIST*sizeof(Vcint_t));
131 if(list[v] != copy[v])
/ast/src/lib/librecsort/
H A Drs-copy.c9 * A copy of the License is available at *
22 * copy input records in original order
43 reg Copy_t* copy = (Copy_t*)rs->methdata; local
45 if (copy->tail)
46 copy->tail->right = obj;
48 copy->head = obj;
49 copy->tail = obj;
60 reg Copy_t* copy = (Copy_t*)rs->methdata; local
62 if (copy->tail)
64 copy
[all...]
/ast/src/cmd/INIT/
H A Diffe.sh9 # A copy of the License is available at #
397 copy() # "output-file" "data-that-must-not-be-processed-by-echo" function
499 *) copy ${tmp}r.c "
2304 comment)copy - "/* $* */"
2333 copy $tmp.c "$std
2343 copy - "#define $x$arg $v"
2353 copy $tmp.c "
2395 copy - "extern $t $x$v;"
2438 *) copy - "#include <$x>"
2445 *) copy
[all...]
/ast/src/lib/libvdelta/
H A Dvdexpand.c9 * A copy of the License is available at *
41 reg int size, copy; local
66 /* copy data from the delta stream to target */
88 { copy = STRGETC(tab);
89 copy = tab->quick[copy + ((k_type-K_QUICK)<<VD_BITS)];
92 { STRGETU(tab,copy);
94 copy += tab->recent[k_type - K_RECENT];
96 copy = c_addr - copy;
[all...]
H A Dvdupdate.c9 * A copy of the License is available at *
60 reg long size, copy; local
95 /* copy data from the delta stream to target */
138 if((copy = VDGETC((Vdio_t*)tab)) < 0)
141 copy = tab->quick[copy + ((k_type-K_QUICK)<<VD_BITS)];
143 { if(copy >= I_MORE &&
144 (copy = (long)(*_Vdgetu)((Vdio_t*)tab,copy)) < 0)
147 copy
[all...]
H A Dvddelta.c9 * A copy of the License is available at *
53 static int vdputinst(Table_t* tab, uchar* begs, uchar* here, reg int copy, int n_copy) argument
55 static int vdputinst(tab, begs, here, copy, n_copy)
59 reg int copy; /* best match if >= 0 */
73 best = copy;
75 if((d = c_addr - copy) < best)
80 { if((d = copy - tab->recent[n]) < 0 || d >= best)
85 if(best >= I_MORE && tab->quick[n = copy%K_QSIZE] == copy)
97 K_UPDATE(tab->quick,tab->recent,tab->rhere,copy);
[all...]
H A Dvdsqueeze.c9 * A copy of the License is available at *
51 static int vdputinst(Table_t* tab, uchar* begs, uchar* here, reg int copy, int n_copy) argument
53 static int vdputinst(tab, begs, here, copy, n_copy)
57 reg int copy; /* best match if any */
69 if(copy >= 0) /* process the COPY instruction */
72 best = copy;
74 if((d = c_addr - copy) < best)
79 { if((d = copy - tab->recent[n]) < 0 || d >= best)
84 if(best >= I_MORE && tab->quick[n = copy%K_QSIZE] == copy)
[all...]
/ast/src/lib/libpp/
H A Dppfsm.c9 * A copy of the License is available at *
84 #define copy(t,f) (memcpy(&fsm[t][1],&fsm[f][1],(MAX+1)*sizeof(short)),fsm[TERMINAL][(t)+1]=fsm[TERMINAL][(f)+1]) macro
274 /* copy QUICK to QUICK+1 through MAC0+1 */
306 /* copy MAC0+1 to MAC0+2 through MACN */
318 /* copy HIT0+1 to HIT0+2 through HITN */
628 copy(i, c);
/ast/src/lib/libvdelta/vd01/
H A Dvdupdate01.c9 * A copy of the License is available at *
58 reg long size, copy; local
93 /* copy data from the delta stream to target */
136 if((copy = VDGETC((Vdio_t*)tab)) < 0)
139 copy = tab->quick[copy + ((k_type-K_QUICK)<<VD_BITS)];
141 { if(copy >= I_MORE &&
142 (copy = (long)(*_Vdgetu)((Vdio_t*)tab,copy)) < 0)
145 copy
[all...]
H A Dvddelta01.c9 * A copy of the License is available at *
68 reg int n, c_addr, copy, best, d; local
77 best = copy = match - tab->base;
79 if((d = c_addr - copy) < best)
84 { if((d = copy - tab->recent[n]) < 0 || d >= best)
89 if(best >= I_MORE && tab->quick[n = copy%K_QSIZE] == copy)
101 K_UPDATE(tab->quick,tab->recent,tab->rhere,copy);
/ast/src/lib/libz/
H A Dinfback.c254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 if (copy > left) copy
[all...]
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
328 unsigned copy, dist; local
347 /* copy state->wsize or less output bytes into the circular window */
348 copy = out - strm->avail_out;
349 if (copy >= state->wsize) {
356 if (dist > copy) dist = copy;
357 zmemcpy(state->window + state->write, strm->next_out - copy, dis
565 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/ast/src/cmd/mailx/
H A Dsend.c185 copy(register struct msg* mp, FILE* op, Dt_t** ignore, char* prefix, unsigned long flags) function
276 note(DEBUG, "copy part text offset=%ld size=%ld lines=%ld", (long)ap->offset, (long)ap->size, (long)ap->lines);
410 * Now either copy the letter to the desired file
/ast/src/cmd/pax/
H A Dcopy.c9 * A copy of the License is available at *
25 * pax file copy support
31 * copy files in from archive
59 * copy a single file out to the archive
362 f->name = stash(&state.out->path.copy, NiL, state.pwdlen + f->namesize);
483 * copy files out using copyfile
489 copy(register Archive_t* ap, register int (*copyfile)(Ftw_t*)) function
/ast/src/cmd/proto/
H A Dproto.c9 * A copy of the License is available at *
142 "[C:copy?Convert each input \afile\a to \adirectory\a/\afile\a,"
291 proto(char* file, char* license, char* options, char* package, char* copy, char* comment, int flags) argument
321 else if (copy)
323 if (((n = strlen(copy)) + strlen(file) + 2) > sizeof(buf))
325 proto_error(b, 2, copy, "copy path too long");
329 strcpy(buf, copy);
344 proto_error(b, 2, buf, "cannot create copy directory");
353 proto_error(b, 2, buf, "cannot create copy fil
481 char* copy = 0; local
[all...]
/ast/src/cmd/dsslib/bgp/
H A Dbgp.c9 * A copy of the License is available at *
560 Dssmeth_t* copy; local
603 if (!(copy = newof(0, Dssmeth_t, 1, 0)))
609 *copy = *meth;
610 meth = copy;
/ast/src/lib/libvcodex/Vcdelta/
H A Dvcdhdr.h9 * A copy of the License is available at *
29 implementation only allows add+copy and copy+add instructions.
47 ssize_t copy[VCD_ADDR]; /* max single COPY size */ member in struct:_vcdsize_s
55 Vcchar_t copy[VCD_ADDR][VCD_COPYMAX]; member in struct:_vcdindex_s
/ast/src/lib/libast/misc/
H A Dstk.c9 * A copy of the License is available at *
102 int copy; member in struct:__anon294
448 * copy string <str> onto the stack as a new stack word
473 increment(copy);
493 * if <n> > 0, copy the bytes from stkbot to stktop to the new stack
494 * if <n> is zero, then copy the remainder of the stack frame from stkbot
/ast/src/lib/libbz/
H A Dblocksort.c202 /*-- copy 1 --*/
215 /*-- copy 2 --*/
228 /*-- copy 3 --*/
391 Int32 copy[256]; local
632 copy[j] = ftab[(j << 8) + ss] & CLEARMASK;
640 zptr[copy[c1]] = k;
641 copy[c1] ++;
/ast/src/lib/libcmd/
H A Dcut.c9 * A copy of the License is available at *
259 register int skip; /* non-zero for don't copy */
371 register unsigned char *copy; local
394 copy = cp;
396 copy = 0;
400 else if (copy)
401 copy = cp;
430 if (copy)
433 if ((c = cp - copy) > 0 && sfwrite(fdout, (char*)copy,
[all...]
/ast/src/lib/libtk/generic/
H A DtkCmds.c203 * Make a copy of the tags for the window, replacing window names
324 char *copy;
333 copy = (char *) ckalloc((unsigned) (strlen(p) + 1));
334 strcpy(copy, p);
335 winPtr->tagPtr[i] = (ClientData) copy;
320 char *copy; local
/ast/src/lib/libast/port/
H A Dlcgen.c9 * A copy of the License is available at *
175 copy(char** p, register char* f) function
177 copy(p, f)
427 cp->link.code = copy(&b, arg[0]);
428 cp->alternates = copy(&b, arg[1]);
429 cp->ms = copy(&b, arg[2]);
443 tp->link.code = copy(&b, arg[0]);
444 tp->name = copy(&b, arg[1]);
446 if (s = copy(&b, arg[2]))
497 lp->link.code = copy(
[all...]
H A Dastlicense.c9 * A copy of the License is available at *
47 #undef copy macro
223 * copy s of size n to b
228 copy(register Buffer_t* b, register char* s, int n) function
237 * center and copy comment line s to p
381 copy(b, "Copyright (c) ", -1);
399 copy(b, t, 4);
441 copy(buf, file, -1);
442 copy(buf, ": no space", -1);
470 copy(bu
[all...]
/ast/src/cmd/html/
H A Dhtmlrefs.c9 * A copy of the License is available at *
62 "[c:copy?Copy the selected references to \adirectory\a which must already"
82 "[l:limit?Limit \b--copy\b and \b--remove\b operations to path names matching"
101 "[S:symlink?Instruct \b--copy\b to \bsymlink\b(2) files that do not contain"
106 "[v:verbose?List files as they are copied (see \b--copy\b.)]"
108 "[x:unreferenced?If \b--copy\b is also specified then remove files and"
109 " directories in the \b--copy\b \adirectory\a that have not been copied."
124 " release, and remove unreferenced files in the copy.]"
202 String_t copy; member in struct:State_s
620 if (state->copy
[all...]
/ast/src/cmd/sortlib/sync/
H A Dss.h9 * A copy of the License is available at *
178 unsigned char copy; /* copy (no sort) */ member in struct:Ss_s

Completed in 312 milliseconds

12