Lines Matching defs:ps
93 char **ps;
97 ps = t_buffer_get(sizeof(char *) * number);
98 i_assert(ps != NULL);
102 ps[i] = t_malloc_no0(size/2);
103 bool re = t_try_realloc(ps[i], size);
104 i_assert(ps[i] != NULL);
107 ps[i] = t_malloc_no0(size);
110 memset(ps[i], tag[0], size);
111 ps[i][size-2] = 0;
122 test_assert_idx(strspn(ps[i], tag) == size - 2, i);
123 test_assert_idx(ps[i][size-1] == tag[0], i);