Lines Matching refs:len
77 int len = strlen(strings[i].in); in test_string_unescape() local
80 memcpy(&in[p], s, len); in test_string_unescape()
81 p += len; in test_string_unescape()
86 len = strlen(strings[i].out); in test_string_unescape()
88 memcpy(&out_test[q_test], s, len); in test_string_unescape()
89 q_test += len; in test_string_unescape()
291 int len; in test_string_escape() local
306 len = strlen(s2->in); in test_string_escape()
307 memcpy(&in[p], s2->in, len); in test_string_escape()
308 p += len; in test_string_escape()
311 len = strlen(out); in test_string_escape()
312 memcpy(&out_test[q_test], out, len); in test_string_escape()
313 q_test += len; in test_string_escape()