Searched refs:out_real (Results 1 – 1 of 1) sorted by relevance
/lib/ |
D | test-string_helpers.c | 46 char out_real[256]; in test_string_unescape() local 47 int i, p = 0, q_test = 0, q_real = sizeof(out_real); in test_string_unescape() 69 memcpy(out_real, in, p); in test_string_unescape() 71 q_real = string_unescape_any_inplace(out_real); in test_string_unescape() 73 q_real = string_unescape_inplace(out_real, flags); in test_string_unescape() 75 q_real = string_unescape_any(in, out_real, q_real); in test_string_unescape() 77 q_real = string_unescape(in, out_real, q_real, flags); in test_string_unescape() 80 if (q_real != q_test || memcmp(out_test, out_real, q_test)) { in test_string_unescape() 87 DUMP_PREFIX_NONE, 16, 1, out_real, q_real, true); in test_string_unescape()
|