Lines Matching refs:n
18 #define NEWLINE_CHAR '\n'
24 #define LOWERCASE_N_CHAR 'n'
32 const size_t n = strlen(result);
35 TEST_CALLOC(output, n + 1);
36 TEST_EQUAL(n, mbedtls_snprintf(output, n + 1, format, x));
37 TEST_MEMORY_COMPARE(result, n + 1, output, n + 1);
53 const size_t n = sizeof(value) * 2;
56 TEST_CALLOC(expected, n + 1);
60 TEST_CALLOC(output, n + 1);
61 TEST_EQUAL(n, mbedtls_snprintf(output, n + 1, format, value));
62 TEST_MEMORY_COMPARE(expected, n + 1, output, n + 1);
77 const size_t n = strlen(result);
80 TEST_CALLOC(output, n + 1);
81 TEST_EQUAL(n, mbedtls_snprintf(output, n + 1, format, arg1, arg2));
82 TEST_MEMORY_COMPARE(result, n + 1, output, n + 1);