Searched refs:first_size (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/system/ulib/tftp/
H A Dtftp-file-test.cpp179 size_t first_size = sock->size - curr_offset; local
180 size_t second_size = size - first_size;
181 memcpy(out_buf + curr_offset, in_buf, first_size);
182 memcpy(out_buf, in_buf + first_size, second_size);
212 size_t first_size = sock->size - curr_offset; local
213 size_t second_size = size - first_size;
214 memcpy(out_buf, in_buf + curr_offset, first_size);
215 memcpy(out_buf + first_size, in_buf, second_size);

Completed in 25 milliseconds