Lines Matching refs:what
52 #define SMART_STRING_DO_REALLOC(d, what) \ argument
53 (d)->c = (char *) SMART_STRING_REALLOC((d)->c, (d)->a + 1, (what))
55 #define smart_string_alloc4(d, n, what, newlen) do { \ argument
62 SMART_STRING_DO_REALLOC(d, what); \
70 SMART_STRING_DO_REALLOC(d, what); \
75 #define smart_string_alloc(d, n, what) \ argument
76 smart_string_alloc4((d), (n), (what), newlen)
80 #define smart_string_appends_ex(dest, src, what) \ argument
81 smart_string_appendl_ex((dest), (src), strlen(src), (what))
98 #define smart_string_appendc_ex(dest, ch, what) do { \ argument
100 smart_string_alloc4((dest), 1, (what), __nl); \
105 #define smart_string_free_ex(s, what) do { \ argument
108 pefree(__s->c, what); \
114 #define smart_string_appendl_ex(dest, src, nlen, what) do { \ argument
118 smart_string_alloc4(__dest, (nlen), (what), __nl); \
135 #define smart_string_append_ex(dest, src, what) \ argument
137 ((smart_string *)(src))->len, (what));