Home | History | Annotate | Download | only in tests

Lines Matching refs:buf

49     char *buf = memalign16(5);
50 buf[0] = 'a';
51 buf[1] = 'b';
52 buf[2] = 'c';
53 buf[3] = 'd';
54 buf[4] = '\0';
58 if (aligned_strlen(buf) == 4)
63 buf[4] = 'x';
64 if (aligned_strlen(buf) == 0)
67 free(buf);