Lines Matching defs:copy
6 * You may obtain a copy of the License at
312 // copy the comparison baseline for the next read.
335 size_t copy = len - read < avail ? len - read : avail;
336 memcpy(data + read, ctx->buffer + ctx->consumed, copy);
337 ctx->consumed += copy;
338 read += copy;
483 size_t copy = len - wrote < avail ? len - wrote : avail;
484 memcpy(ctx->buffer + ctx->stored, data + wrote, copy);
485 ctx->stored += copy;
486 wrote += copy;