Lines Matching refs:dest

79 #define smart_str_appends_ex(dest, src, what) \  argument
80 smart_str_appendl_ex((dest), (src), strlen(src), (what))
81 #define smart_str_appends(dest, src) \ argument
82 smart_str_appendl((dest), (src), strlen(src))
84 #define smart_str_appendc(dest, c) \ argument
85 smart_str_appendc_ex((dest), (c), 0)
88 #define smart_str_appendl(dest, src, len) \ argument
89 smart_str_appendl_ex((dest), (src), (len), 0)
90 #define smart_str_append(dest, src) \ argument
91 smart_str_append_ex((dest), (src), 0)
92 #define smart_str_append_long(dest, val) \ argument
93 smart_str_append_long_ex((dest), (val), 0)
94 #define smart_str_append_off_t(dest, val) \ argument
95 smart_str_append_off_t_ex((dest), (val), 0)
96 #define smart_str_append_unsigned(dest, val) \ argument
97 smart_str_append_unsigned_ex((dest), (val), 0)
99 #define smart_str_appendc_ex(dest, ch, what) do { \ argument
101 smart_str_alloc4((dest), 1, (what), __nl); \
102 (dest)->len = __nl; \
103 ((unsigned char *) (dest)->c)[(dest)->len - 1] = (ch); \
115 #define smart_str_appendl_ex(dest, src, nlen, what) do { \ argument
117 smart_str *__dest = (smart_str *) (dest); \
168 #define smart_str_append_generic_ex(dest, num, type, vartype, func) do { \ argument
172 smart_str_appendl_ex((dest), __t, __b + sizeof(__b) - 1 - __t, (type)); \
175 #define smart_str_append_unsigned_ex(dest, num, type) \ argument
176 smart_str_append_generic_ex((dest), (num), (type), unsigned long, _unsigned)
178 #define smart_str_append_long_ex(dest, num, type) \ argument
179 smart_str_append_generic_ex((dest), (num), (type), unsigned long, _long)
181 #define smart_str_append_off_t_ex(dest, num, type) \ argument
182 smart_str_append_generic_ex((dest), (num), (type), off_t, _long)
184 #define smart_str_append_ex(dest, src, what) \ argument
185 smart_str_appendl_ex((dest), ((smart_str *)(src))->c, \
189 #define smart_str_setl(dest, src, nlen) do { \ argument
190 (dest)->len = (nlen); \
191 (dest)->a = (nlen) + 1; \
192 (dest)->c = (char *) (src); \
195 #define smart_str_sets(dest, src) \ argument
196 smart_str_setl((dest), (src), strlen(src));