Lines Matching refs:dest
76 #define smart_str_appends_ex(dest, src, what) \ argument
77 smart_str_appendl_ex((dest), (src), strlen(src), (what))
78 #define smart_str_appends(dest, src) \ argument
79 smart_str_appendl((dest), (src), strlen(src))
81 #define smart_str_appendc(dest, c) \ argument
82 smart_str_appendc_ex((dest), (c), 0)
85 #define smart_str_appendl(dest, src, len) \ argument
86 smart_str_appendl_ex((dest), (src), (len), 0)
87 #define smart_str_append(dest, src) \ argument
88 smart_str_append_ex((dest), (src), 0)
89 #define smart_str_append_long(dest, val) \ argument
90 smart_str_append_long_ex((dest), (val), 0)
91 #define smart_str_append_off_t(dest, val) \ argument
92 smart_str_append_off_t_ex((dest), (val), 0)
93 #define smart_str_append_unsigned(dest, val) \ argument
94 smart_str_append_unsigned_ex((dest), (val), 0)
96 #define smart_str_appendc_ex(dest, ch, what) do { \ argument
98 smart_str_alloc4((dest), 1, (what), __nl); \
99 (dest)->len = __nl; \
100 ((unsigned char *) (dest)->c)[(dest)->len - 1] = (ch); \
112 #define smart_str_appendl_ex(dest, src, nlen, what) do { \ argument
114 smart_str *__dest = (smart_str *) (dest); \
165 #define smart_str_append_generic_ex(dest, num, type, vartype, func) do { \ argument
169 smart_str_appendl_ex((dest), __t, __b + sizeof(__b) - 1 - __t, (type)); \
172 #define smart_str_append_unsigned_ex(dest, num, type) \ argument
173 smart_str_append_generic_ex((dest), (num), (type), unsigned long, _unsigned)
175 #define smart_str_append_long_ex(dest, num, type) \ argument
176 smart_str_append_generic_ex((dest), (num), (type), unsigned long, _long)
178 #define smart_str_append_off_t_ex(dest, num, type) \ argument
179 smart_str_append_generic_ex((dest), (num), (type), off_t, _long)
181 #define smart_str_append_ex(dest, src, what) \ argument
182 smart_str_appendl_ex((dest), ((smart_str *)(src))->c, \
186 #define smart_str_setl(dest, src, nlen) do { \ argument
187 (dest)->len = (nlen); \
188 (dest)->a = (nlen) + 1; \
189 (dest)->c = (char *) (src); \
192 #define smart_str_sets(dest, src) \ argument
193 smart_str_setl((dest), (src), strlen(src));