Lines Matching defs:copy
7 * copy of this software and associated documentation files (the "Software"),
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
110 ssize_t copy;
119 copy = len - (iterator->start - iterator->offset);
121 if (copy > iterator->remain)
122 copy = iterator->remain;
124 /* Copy out the bit of the string that we need */
126 str + (iterator->start - iterator->offset), copy);
128 iterator->offset = iterator->start + copy;
129 iterator->remain -= copy;
161 /* Then check if we can directly copy into the target buffer */
175 * Finally, hit the slow path and make a temporary string to copy over