Lines Matching refs:what
51 #define SMART_STR_DO_REALLOC(d, what) \ argument
52 (d)->c = SMART_STR_REALLOC((d)->c, (d)->a + 1, (what))
54 #define smart_str_alloc4(d, n, what, newlen) do { \ argument
61 SMART_STR_DO_REALLOC(d, what); \
69 SMART_STR_DO_REALLOC(d, what); \
74 #define smart_str_alloc(d, n, what) \ argument
75 smart_str_alloc4((d), (n), (what), newlen)
79 #define smart_str_appends_ex(dest, src, what) \ argument
80 smart_str_appendl_ex((dest), (src), strlen(src), (what))
99 #define smart_str_appendc_ex(dest, ch, what) do { \ argument
101 smart_str_alloc4((dest), 1, (what), __nl); \
106 #define smart_str_free_ex(s, what) do { \ argument
109 pefree(__s->c, what); \
115 #define smart_str_appendl_ex(dest, src, nlen, what) do { \ argument
119 smart_str_alloc4(__dest, (nlen), (what), __nl); \
184 #define smart_str_append_ex(dest, src, what) \ argument
186 ((smart_str *)(src))->len, (what));