Home | History | Annotate | Download | only in tests

Lines Matching refs:len

27 	const size_t len = strnlen(instr, size);
28 if (len < size) {
29 print_quoted_memory(instr, len);
39 const size_t len = strnlen(instr, size);
40 if (len < size) {
41 print_quoted_memory(instr, len);
72 print_quoted_memory_ex(const void *const instr, const size_t len,
81 for (i = 0; i < len; ++i) {
111 i < (len - 1) ? str[i + 1] : 0);
123 print_quoted_memory(const void *const instr, const size_t len)
125 print_quoted_memory_ex(instr, len, true, NULL);
129 print_quoted_hex(const void *const instr, const size_t len)
135 for (i = 0; i < len; i++)