Lines Matching defs:copy
5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
66 ssize_t copy;
75 copy = len - (iterator->start - iterator->offset);
77 if (copy > iterator->remain)
78 copy = iterator->remain;
82 str + (iterator->start - iterator->offset), copy);
84 iterator->offset = iterator->start + copy;
85 iterator->remain -= copy;
117 /* Then check if we can directly copy into the target buffer */
131 * Finally, hit the slow path and make a temporary string to copy over