/src/lib/libc/stdio/ |
fvwrite.c | 87 #define COPY(n) (void)memcpy(fp->_p, p, (size_t)(n)) 152 COPY(w); /* copy MIN(fp->_w,len), */ 158 COPY(w); 179 COPY(w); 206 COPY(w); 217 COPY(w);
|
/src/sys/dev/isapnp/ |
isapnpres.c | 225 #define COPY(a, b) strncpy((a), (b), sizeof(a)), (a)[sizeof(a) - 1] = '\0' 238 COPY((*dev)->ipa_devlogic, str); 249 COPY((*dev)->ipa_devcompat, str); 276 COPY((*card)->ipa_devident, buf); 278 COPY((*dev)->ipa_devclass, buf);
|
/src/common/lib/libc/stdlib/ |
heapsort.c | 94 /* Copy one block of size size to another. */ 95 #define COPY(a, b, count, size, tmp1, tmp2) { \ 153 COPY(par, child, count, size, tmp1, tmp2); \ 161 COPY(child, k, count, size, tmp1, tmp2); \ 164 COPY(child, par, count, size, tmp1, tmp2); \ 226 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2); 227 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2);
|
/src/usr.bin/tcopy/ |
tcopy.c | 80 enum {READ, VERIFY, COPY, COPYVERIFY} op = READ; 127 op = COPY; 130 op == COPY ? O_WRONLY : O_RDWR, DEFFILEMODE)) < 0) { 179 if (op == COPY || op == COPYVERIFY) { 197 fprintf(stderr, "copy aborted\n"); 221 if (op == COPY || op == COPYVERIFY) {
|
/src/sys/compat/common/ |
kern_info_43.c | 268 #define COPY(fld) \ 274 COPY(machine); 275 COPY(cpu_model); 283 COPY(ostype); 284 COPY(osrelease); 287 COPY(version); /* XXX */ 298 COPY(hostname);
|
/src/common/dist/zlib/ |
gzguts.h | 166 #define COPY 1 /* copy input directly */ 186 int how; /* 0: get header, 1: copy, 2: decompress */
|
inflate.h | 35 COPY_, /* i/o: same as COPY below, but only first time in */ 36 COPY, /* i/o: waiting for input or output to copy stored block */ 45 MATCH, /* o: waiting for output space to copy string */ 69 STORED -> COPY_ -> COPY -> TYPE 92 unsigned long check; /* protected copy of check value */ 93 unsigned long total; /* protected copy of output count */ 105 unsigned length; /* literal or length of data to copy */ 106 unsigned offset; /* distance back to copy string from */
|
/src/bin/pax/ |
pax.h | 65 #define COPY 4 /* copy files to destination dir */
|
/src/sys/kern/ |
subr_pool.c | 3445 #define COPY(field) data.field = pp->field 3446 COPY(pr_size); 3448 COPY(pr_itemsperpage); 3449 COPY(pr_nitems); 3450 COPY(pr_nout); 3451 COPY(pr_hardlimit); 3452 COPY(pr_npages); 3453 COPY(pr_minpages); 3454 COPY(pr_maxpages); 3456 COPY(pr_nget) [all...] |
/src/usr.bin/vmstat/ |
vmstat.c | 773 #define COPY(field) uvmexp.field = uvmexp_kernel.field 774 COPY(pdreact); 775 COPY(pageins); 776 COPY(pgswapout); 777 COPY(pdfreed); 778 COPY(pdscans); 779 #undef COPY 914 #define COPY(field) uvmexp.field = uvmexp_kernel.field 915 COPY(pagesize); 916 COPY(ncolors) [all...] |
/src/sys/net/ |
zlib.c | 1208 * Copy the source state to the destination state. 1695 * Copy without compression as much as possible from the input stream, return 1715 /* Copy as much as possible from input to output: */ 3280 * Copy a stored block, storing first the length and its 3898 uInt left; /* if STORED, bytes left to copy */ 3953 /* copy as much as possible from the sliding window to the output area */ 4080 /* copy input/output information to locals (UPDATE macro restores) */ 4366 /* while there is input ready, copy to output buffer, moving 4464 local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */ 4471 local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 * 5103 } copy; \/* if EXT or COPY, where and how much *\/ member in union:inflate_codes_state::__anon0201f1530e0a [all...] |
/src/share/mk/ |
bsd.own.mk | 432 # Don't append another copy of sysroot (coming from COMPATCPPFLAGS etc.) 1609 COPY?= -c 1632 INSTALL_FILE?= ${INSTALL} ${INSTPRIV} ${COPY} ${PRESERVE} ${RENAME}
|